Lines Matching refs:op
80 union acpi_parse_object *op; in acpi_ds_execute_arguments() local
90 op = acpi_ps_alloc_op (AML_INT_EVAL_SUBTREE_OP); in acpi_ds_execute_arguments()
91 if (!op) { in acpi_ds_execute_arguments()
97 op->common.node = scope_node; in acpi_ds_execute_arguments()
106 status = acpi_ds_init_aml_walk (walk_state, op, NULL, aml_start, in acpi_ds_execute_arguments()
122 acpi_ps_delete_parse_tree (op); in acpi_ds_execute_arguments()
128 op->common.node = node; in acpi_ds_execute_arguments()
129 acpi_ps_delete_parse_tree (op); in acpi_ds_execute_arguments()
133 op = acpi_ps_alloc_op (AML_INT_EVAL_SUBTREE_OP); in acpi_ds_execute_arguments()
134 if (!op) { in acpi_ds_execute_arguments()
138 op->common.node = scope_node; in acpi_ds_execute_arguments()
149 status = acpi_ds_init_aml_walk (walk_state, op, NULL, aml_start, in acpi_ds_execute_arguments()
160 acpi_ps_delete_parse_tree (op); in acpi_ds_execute_arguments()
589 union acpi_parse_object *op) in acpi_ds_eval_buffer_field_operands() argument
597 ACPI_FUNCTION_TRACE_PTR ("ds_eval_buffer_field_operands", op); in acpi_ds_eval_buffer_field_operands()
604 node = op->common.node; in acpi_ds_eval_buffer_field_operands()
608 next_op = op->common.value.arg; in acpi_ds_eval_buffer_field_operands()
624 status = acpi_ex_resolve_operands (op->common.aml_opcode, in acpi_ds_eval_buffer_field_operands()
628 acpi_ps_get_opcode_name (op->common.aml_opcode), in acpi_ds_eval_buffer_field_operands()
633 acpi_ps_get_opcode_name (op->common.aml_opcode), status)); in acpi_ds_eval_buffer_field_operands()
640 if (op->common.aml_opcode == AML_CREATE_FIELD_OP) { in acpi_ds_eval_buffer_field_operands()
643 status = acpi_ds_init_buffer_field (op->common.aml_opcode, obj_desc, in acpi_ds_eval_buffer_field_operands()
650 status = acpi_ds_init_buffer_field (op->common.aml_opcode, obj_desc, in acpi_ds_eval_buffer_field_operands()
676 union acpi_parse_object *op) in acpi_ds_eval_region_operands() argument
685 ACPI_FUNCTION_TRACE_PTR ("ds_eval_region_operands", op); in acpi_ds_eval_region_operands()
691 node = op->common.node; in acpi_ds_eval_region_operands()
695 next_op = op->common.value.arg; in acpi_ds_eval_region_operands()
710 status = acpi_ex_resolve_operands (op->common.aml_opcode, ACPI_WALK_OPERANDS, walk_state); in acpi_ds_eval_region_operands()
716 acpi_ps_get_opcode_name (op->common.aml_opcode), in acpi_ds_eval_region_operands()
774 union acpi_parse_object *op, in acpi_ds_eval_data_object_operands() argument
787 status = acpi_ds_create_operand (walk_state, op->common.value.arg, 1); in acpi_ds_eval_data_object_operands()
816 switch (op->common.aml_opcode) { in acpi_ds_eval_data_object_operands()
819 status = acpi_ds_build_internal_buffer_obj (walk_state, op, length, &obj_desc); in acpi_ds_eval_data_object_operands()
825 status = acpi_ds_build_internal_package_obj (walk_state, op, length, &obj_desc); in acpi_ds_eval_data_object_operands()
838 if ((!op->common.parent) || in acpi_ds_eval_data_object_operands()
839 ((op->common.parent->common.aml_opcode != AML_PACKAGE_OP) && in acpi_ds_eval_data_object_operands()
840 (op->common.parent->common.aml_opcode != AML_VAR_PACKAGE_OP) && in acpi_ds_eval_data_object_operands()
841 (op->common.parent->common.aml_opcode != AML_NAME_OP))) { in acpi_ds_eval_data_object_operands()
867 union acpi_parse_object *op) in acpi_ds_exec_begin_control_op() argument
876 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "Op=%p Opcode=%2.2X State=%p\n", op, in acpi_ds_exec_begin_control_op()
877 op->common.aml_opcode, walk_state)); in acpi_ds_exec_begin_control_op()
879 switch (op->common.aml_opcode) { in acpi_ds_exec_begin_control_op()
899 control_state->control.opcode = op->common.aml_opcode; in acpi_ds_exec_begin_control_op()
947 union acpi_parse_object *op) in acpi_ds_exec_end_control_op() argument
956 switch (op->common.aml_opcode) { in acpi_ds_exec_end_control_op()
959 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "[IF_OP] Op=%p\n", op)); in acpi_ds_exec_end_control_op()
984 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "[WHILE_OP] Op=%p\n", op)); in acpi_ds_exec_end_control_op()
992 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "[WHILE_OP] termination! Op=%p\n", op)); in acpi_ds_exec_end_control_op()
1006 "[RETURN_OP] Op=%p Arg=%p\n",op, op->common.value.arg)); in acpi_ds_exec_end_control_op()
1013 if (op->common.value.arg) { in acpi_ds_exec_end_control_op()
1016 status = acpi_ds_create_operands (walk_state, op->common.value.arg); in acpi_ds_exec_end_control_op()
1124 if (op->common.aml_opcode == AML_BREAK_OP) { in acpi_ds_exec_end_control_op()
1136 op->common.aml_opcode, op)); in acpi_ds_exec_end_control_op()