Lines Matching refs:Op
178 * PARAMETERS: Op - Current Op
189 ACPI_PARSE_OBJECT *Op,
194 ACPI_FUNCTION_TRACE_PTR (DsIsResultUsed, Op);
197 /* Must have both an Op and a Result Object */
199 if (!Op)
201 ACPI_ERROR ((AE_INFO, "Null Op"));
224 if ((!Op->Common.Parent) ||
225 (Op->Common.Parent->Common.AmlOpcode == AML_SCOPE_OP))
231 AcpiPsGetOpcodeName (Op->Common.AmlOpcode)));
237 ParentInfo = AcpiPsGetOpcodeInfo (Op->Common.Parent->Common.AmlOpcode);
241 "Unknown parent opcode Op=%p", Op));
255 switch (Op->Common.Parent->Common.AmlOpcode)
271 (WalkState->ControlState->Control.PredicateOp == Op))
297 if ((Op->Common.Parent->Common.AmlOpcode == AML_REGION_OP) ||
298 (Op->Common.Parent->Common.AmlOpcode == AML_DATA_REGION_OP) ||
299 (Op->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
300 (Op->Common.Parent->Common.AmlOpcode == AML_VAR_PACKAGE_OP) ||
301 (Op->Common.Parent->Common.AmlOpcode == AML_BUFFER_OP) ||
302 (Op->Common.Parent->Common.AmlOpcode == AML_INT_EVAL_SUBTREE_OP) ||
303 (Op->Common.Parent->Common.AmlOpcode == AML_BANK_FIELD_OP))
325 "Result of [%s] used by Parent [%s] Op=%p\n",
326 AcpiPsGetOpcodeName (Op->Common.AmlOpcode),
327 AcpiPsGetOpcodeName (Op->Common.Parent->Common.AmlOpcode), Op));
334 "Result of [%s] not used by Parent [%s] Op=%p\n",
335 AcpiPsGetOpcodeName (Op->Common.AmlOpcode),
336 AcpiPsGetOpcodeName (Op->Common.Parent->Common.AmlOpcode), Op));
346 * PARAMETERS: Op - Current parse Op
361 ACPI_PARSE_OBJECT *Op,
372 if (!Op)
374 ACPI_ERROR ((AE_INFO, "Null Op"));
383 if (!AcpiDsIsResultUsed (Op, WalkState))
862 ACPI_PARSE_OBJECT *Op = WalkState->Op;
871 if (!Op->Common.Parent)
878 if ((Op->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
879 (Op->Common.Parent->Common.AmlOpcode == AML_VAR_PACKAGE_OP) ||
880 (Op->Common.Parent->Common.AmlOpcode == AML_REF_OF_OP))
887 Status = AcpiDsCreateOperand (WalkState, Op, 0);
893 if (Op->Common.Flags & ACPI_PARSEOP_TARGET)
947 Op->Common.Flags |= ACPI_PARSEOP_IN_STACK;