Home | History | Annotate | Download | only in dispatcher

Lines Matching defs:Op

285  * PARAMETERS:  Op                  - Current Op
296 ACPI_PARSE_OBJECT *Op,
301 ACPI_FUNCTION_TRACE_PTR (DsIsResultUsed, Op);
304 /* Must have both an Op and a Result Object */
306 if (!Op)
308 ACPI_ERROR ((AE_INFO, "Null Op"));
331 if ((!Op->Common.Parent) ||
332 (Op->Common.Parent->Common.AmlOpcode == AML_SCOPE_OP))
338 AcpiPsGetOpcodeName (Op->Common.AmlOpcode)));
344 ParentInfo = AcpiPsGetOpcodeInfo (Op->Common.Parent->Common.AmlOpcode);
348 "Unknown parent opcode Op=%p", Op));
362 switch (Op->Common.Parent->Common.AmlOpcode)
373 * If we are executing the predicate AND this is the predicate op,
378 (WalkState->ControlState->Control.PredicateOp == Op))
404 if ((Op->Common.Parent->Common.AmlOpcode == AML_REGION_OP) ||
405 (Op->Common.Parent->Common.AmlOpcode == AML_DATA_REGION_OP) ||
406 (Op->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
407 (Op->Common.Parent->Common.AmlOpcode == AML_BUFFER_OP) ||
408 (Op->Common.Parent->Common.AmlOpcode == AML_VARIABLE_PACKAGE_OP) ||
409 (Op->Common.Parent->Common.AmlOpcode == AML_INT_EVAL_SUBTREE_OP) ||
410 (Op->Common.Parent->Common.AmlOpcode == AML_BANK_FIELD_OP))
432 "Result of [%s] used by Parent [%s] Op=%p\n",
433 AcpiPsGetOpcodeName (Op->Common.AmlOpcode),
434 AcpiPsGetOpcodeName (Op->Common.Parent->Common.AmlOpcode), Op));
441 "Result of [%s] not used by Parent [%s] Op=%p\n",
442 AcpiPsGetOpcodeName (Op->Common.AmlOpcode),
443 AcpiPsGetOpcodeName (Op->Common.Parent->Common.AmlOpcode), Op));
453 * PARAMETERS: Op - Current parse Op
468 ACPI_PARSE_OBJECT *Op,
479 if (!Op)
481 ACPI_ERROR ((AE_INFO, "Null Op"));
490 if (!AcpiDsIsResultUsed (Op, WalkState))
701 * For the Conditional Reference op, it's OK if
964 ACPI_PARSE_OBJECT *Op = WalkState->Op;
973 if (!Op->Common.Parent)
980 if ((Op->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
981 (Op->Common.Parent->Common.AmlOpcode == AML_VARIABLE_PACKAGE_OP) ||
982 (Op->Common.Parent->Common.AmlOpcode == AML_REF_OF_OP))
989 Status = AcpiDsCreateOperand (WalkState, Op, 0);
995 if (Op->Common.Flags & ACPI_PARSEOP_TARGET)
1049 Op->Common.Flags |= ACPI_PARSEOP_IN_STACK;