Lines Matching defs:Aml
3 * Module Name: psparse - Parser top level AML parse routines
153 * Parse the AML and build an operation tree as most interpreters,
157 * fairly compact by parsing based on a list of AML opcode
177 * PARAMETERS: Opcode - An AML opcode
209 * RETURN: Next AML opcode
211 * DESCRIPTION: Get next AML opcode (without incrementing AML pointer)
219 UINT8 *Aml;
223 Aml = ParserState->Aml;
224 Opcode = (UINT16) ACPI_GET8 (Aml);
230 Aml++;
231 Opcode = (UINT16) ((Opcode << 8) | ACPI_GET8 (Aml));
266 /* Check for null Op, can happen if AML code is corrupt */
313 AML_INT_RETURN_VALUE_OP, Op->Common.Aml);
333 AML_INT_RETURN_VALUE_OP, Op->Common.Aml);
347 Op->Common.Aml);
364 AML_INT_RETURN_VALUE_OP, Op->Common.Aml);
464 ParserState->Aml = ParserState->AmlEnd;
470 ParserState->Aml = WalkState->AmlLastWhile;
477 ParserState->Aml = WalkState->AmlLastWhile;
483 ParserState->Aml = WalkState->AmlLastWhile;
489 ParserState->Aml = ParserState->Scope->ParseScope.PkgEnd;
499 ParserState->Aml = AcpiPsGetNextPackageEnd (ParserState);
511 ParserState->Aml = ParserState->Scope->ParseScope.PkgEnd;
556 * DESCRIPTION: Parse raw AML and return a tree of ops
573 "Entered with WalkState=%p Aml=%p size=%X\n",
574 WalkState, WalkState->ParserState.Aml,
577 if (!WalkState->ParserState.Aml)
613 * This global allows the AML debugger to get a handle to the currently
630 * The ParseLoop executes AML until the method terminates