Searched defs:Opcode (Results 1 - 16 of 16) sorted by relevance

/illumos-gate/usr/src/uts/intel/io/acpica/executer/
H A Dexresop.c127 * PARAMETERS: Opcode - Opcode being interpreted
146 UINT16 Opcode,
160 ACPI_FUNCTION_TRACE_U32 (ExResolveOperands, Opcode);
163 OpInfo = AcpiPsGetOpcodeInfo (Opcode);
173 Opcode));
179 "Opcode %X [%s] RequiredOperandTypes=%8.8X\n",
180 Opcode, OpInfo->Name, ArgTypes));
352 if ((Opcode == AML_STORE_OP) &&
727 AcpiPsGetOpcodeName (Opcode), WalkStat
145 AcpiExResolveOperands( UINT16 Opcode, ACPI_OPERAND_OBJECT **StackPtr, ACPI_WALK_STATE *WalkState) argument
[all...]
H A Dexmisc.c154 * PARAMETERS: Opcode - AML opcode
168 UINT16 Opcode,
176 switch (Opcode)
245 * PARAMETERS: Opcode - AML opcode
263 UINT16 Opcode,
275 switch (Opcode)
310 * PARAMETERS: Opcode - AML opcode
334 UINT16 Opcode,
400 switch (Opcode)
449 switch (Opcode)
167 AcpiExDoMathOp( UINT16 Opcode, UINT64 Integer0, UINT64 Integer1) argument
262 AcpiExDoLogicalNumericOp( UINT16 Opcode, UINT64 Integer0, UINT64 Integer1, BOOLEAN *LogicalResult) argument
333 AcpiExDoLogicalOp( UINT16 Opcode, ACPI_OPERAND_OBJECT *Operand0, ACPI_OPERAND_OBJECT *Operand1, BOOLEAN *LogicalResult) argument
[all...]
/illumos-gate/usr/src/uts/intel/io/acpica/parser/
H A Dpsopinfo.c62 * PARAMETERS: Opcode - The AML opcode
73 UINT16 Opcode)
85 if (!(Opcode & 0xFF00))
89 return (&AcpiGbl_AmlOpInfo [AcpiGbl_ShortOpIndex [(UINT8) Opcode]]);
92 if (((Opcode & 0xFF00) == AML_EXTENDED_OPCODE) &&
93 (((UINT8) Opcode) <= MAX_EXTENDED_OPCODE))
97 return (&AcpiGbl_AmlOpInfo [AcpiGbl_LongOpIndex [(UINT8) Opcode]]);
103 switch (Opcode)
134 OpcodeName = "-Unassigned Opcode-";
149 "%s [%4.4X]\n", OpcodeName, Opcode));
72 AcpiPsGetOpcodeInfo( UINT16 Opcode) argument
169 AcpiPsGetOpcodeName( UINT16 Opcode) argument
[all...]
H A Dpsutils.c88 * Opcode - Opcode to store in the Op
99 UINT16 Opcode)
105 Op->Common.AmlOpcode = Opcode;
108 (AcpiPsGetOpcodeInfo (Opcode))->Name,
117 * PARAMETERS: Opcode - Opcode that will be stored in the new Op
130 UINT16 Opcode,
141 OpInfo = AcpiPsGetOpcodeInfo (Opcode);
153 else if (Opcode
97 AcpiPsInitOp( ACPI_PARSE_OBJECT *Op, UINT16 Opcode) argument
129 AcpiPsAllocOp( UINT16 Opcode, UINT8 *Aml) argument
[all...]
H A Dpsparse.c68 * PARAMETERS: Opcode - An AML opcode
78 UINT32 Opcode)
83 if (Opcode > 0x00FF)
111 UINT16 Opcode; local
115 Opcode = (UINT16) ACPI_GET8 (Aml);
117 if (Opcode == AML_EXTENDED_OP_PREFIX)
122 Opcode = (UINT16) ((Opcode << 8) | ACPI_GET8 (Aml));
125 return (Opcode);
77 AcpiPsGetOpcodeSize( UINT32 Opcode) argument
H A Dpsargs.c301 if (WalkState->Opcode == AML_UNLOAD_OP)
430 UINT16 Opcode; local
443 Opcode = AML_BYTE_OP;
452 Opcode = AML_WORD_OP;
461 Opcode = AML_DWORD_OP;
470 Opcode = AML_QWORD_OP;
479 Opcode = AML_STRING_OP;
505 AcpiPsInitOp (Arg, Opcode);
530 UINT16 Opcode; local
551 Opcode
[all...]
/illumos-gate/usr/src/uts/intel/io/acpica/dispatcher/
H A Ddsmthdat.c72 UINT16 Opcode,
341 * DESCRIPTION: Insert an object onto the method stack at entry Opcode:Index.
513 * DESCRIPTION: Delete the entry at Opcode:Index. Inserts
731 * PARAMETERS: Opcode - Either AML_LOCAL_OP or AML_ARG_OP
743 UINT16 Opcode,
757 Status = AcpiDsMethodDataGetNode (Opcode, Index, WalkState, &Node);
742 AcpiDsMethodDataGetType( UINT16 Opcode, UINT32 Index, ACPI_WALK_STATE *WalkState) argument
H A Ddsobject.c640 * Opcode - AML opcode associated with the object
655 UINT16 Opcode,
667 OpInfo = AcpiPsGetOpcodeInfo (Opcode);
714 switch (Opcode)
745 "Unknown constant opcode 0x%X", Opcode));
800 ObjDesc->Reference.Value = ((UINT32) Opcode) - AML_LOCAL_OP;
815 ObjDesc->Reference.Value = ((UINT32) Opcode) - AML_ARG_OP;
847 "Unimplemented reference type for AML opcode: 0x%4.4X", Opcode));
652 AcpiDsInitObjectFromOp( ACPI_WALK_STATE *WalkState, ACPI_PARSE_OBJECT *Op, UINT16 Opcode, ACPI_OPERAND_OBJECT **RetObjDesc) argument
H A Ddsutils.c509 UINT16 Opcode; local
549 ((WalkState->Opcode == AML_CREATE_FIELD_OP) ? 3 : 2)))
667 Opcode = AML_ZERO_OP; /* Has no arguments! */
674 Opcode = Arg->Common.AmlOpcode;
679 OpInfo = AcpiPsGetOpcodeInfo (Opcode);
725 WalkState, Arg, Opcode, &ObjDesc);
/illumos-gate/usr/src/uts/intel/io/acpica/namespace/
H A Dnsxfname.c606 UINT16 Opcode; local
629 Opcode = AcpiPsPeekOpcode (&ParserState);
630 if (Opcode != AML_METHOD_OP)
637 ParserState.Aml += AcpiPsGetOpcodeSize (Opcode);
/illumos-gate/usr/src/uts/intel/sys/acpi/
H A Dacinterp.h70 UINT8 Opcode; member in struct:acpi_exdump_info
76 /* Values for the Opcode field above */
269 UINT16 Opcode,
276 UINT16 Opcode,
283 UINT16 Opcode,
521 UINT16 Opcode,
H A Dacresrc.h69 UINT8 Opcode; member in struct:acpi_rsconvert_info
131 UINT8 Opcode; member in struct:acpi_rsdump_info
138 /* Values for the Opcode field above */
H A Dacdisasm.h65 UINT8 Opcode; member in struct:acpi_dmtable_info
82 * Values for Opcode above.
H A Dacstruct.h78 UINT16 Opcode; /* Current AML opcode */ member in struct:acpi_walk_state
H A Daclocal.h722 UINT16 Opcode; member in struct:acpi_control_state
866 char *Name; /* Opcode name (disassembler/debug only) */
872 UINT8 Class; /* Opcode class */
873 UINT8 Type; /* Opcode type */
/illumos-gate/usr/src/uts/common/io/ntxn/
H A Dnic_cmn.h239 Opcode:4; /* opcode */ member in struct:__msg

Completed in 69 milliseconds