⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dsutils.c

📁 h内核
💻 C
📖 第 1 页 / 共 2 页
字号:
 * RETURN:      None * * DESCRIPTION: Clear all operands on the current walk state operand stack. * ******************************************************************************/voidacpi_ds_clear_operands (	struct acpi_walk_state          *walk_state){	u32                             i;	ACPI_FUNCTION_TRACE_PTR ("ds_clear_operands", walk_state);	/*	 * Remove a reference on each operand on the stack	 */	for (i = 0; i < walk_state->num_operands; i++) {		/*		 * Remove a reference to all operands, including both		 * "Arguments" and "Targets".		 */		acpi_ut_remove_reference (walk_state->operands[i]);		walk_state->operands[i] = NULL;	}	walk_state->num_operands = 0;	return_VOID;}#endif/******************************************************************************* * * FUNCTION:    acpi_ds_create_operand * * PARAMETERS:  walk_state      - Current walk state *              Arg             - Parse object for the argument *              arg_index       - Which argument (zero based) * * RETURN:      Status * * DESCRIPTION: Translate a parse tree object that is an argument to an AML *              opcode to the equivalent interpreter object.  This may include *              looking up a name or entering a new name into the internal *              namespace. * ******************************************************************************/acpi_statusacpi_ds_create_operand (	struct acpi_walk_state          *walk_state,	union acpi_parse_object         *arg,	u32                             arg_index){	acpi_status                     status = AE_OK;	char                            *name_string;	u32                             name_length;	union acpi_operand_object       *obj_desc;	union acpi_parse_object         *parent_op;	u16                             opcode;	acpi_interpreter_mode           interpreter_mode;	const struct acpi_opcode_info   *op_info;	ACPI_FUNCTION_TRACE_PTR ("ds_create_operand", arg);	/* A valid name must be looked up in the namespace */	if ((arg->common.aml_opcode == AML_INT_NAMEPATH_OP) &&		(arg->common.value.string)) {		ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "Getting a name: Arg=%p\n", arg));		/* Get the entire name string from the AML stream */		status = acpi_ex_get_name_string (ACPI_TYPE_ANY, arg->common.value.buffer,				  &name_string, &name_length);		if (ACPI_FAILURE (status)) {			return_ACPI_STATUS (status);		}		/*		 * All prefixes have been handled, and the name is		 * in name_string		 */		/*		 * Special handling for buffer_field declarations. This is a deferred		 * opcode that unfortunately defines the field name as the last		 * parameter instead of the first.  We get here when we are performing		 * the deferred execution, so the actual name of the field is already		 * in the namespace.  We don't want to attempt to look it up again		 * because we may be executing in a different scope than where the		 * actual opcode exists.		 */		if ((walk_state->deferred_node) &&			(walk_state->deferred_node->type == ACPI_TYPE_BUFFER_FIELD) &&			(arg_index != 0)) {			obj_desc = ACPI_CAST_PTR (union acpi_operand_object, walk_state->deferred_node);			status = AE_OK;		}		else    /* All other opcodes */ {			/*			 * Differentiate between a namespace "create" operation			 * versus a "lookup" operation (IMODE_LOAD_PASS2 vs.			 * IMODE_EXECUTE) in order to support the creation of			 * namespace objects during the execution of control methods.			 */			parent_op = arg->common.parent;			op_info = acpi_ps_get_opcode_info (parent_op->common.aml_opcode);			if ((op_info->flags & AML_NSNODE) &&				(parent_op->common.aml_opcode != AML_INT_METHODCALL_OP) &&				(parent_op->common.aml_opcode != AML_REGION_OP) &&				(parent_op->common.aml_opcode != AML_INT_NAMEPATH_OP)) {				/* Enter name into namespace if not found */				interpreter_mode = ACPI_IMODE_LOAD_PASS2;			}			else {				/* Return a failure if name not found */				interpreter_mode = ACPI_IMODE_EXECUTE;			}			status = acpi_ns_lookup (walk_state->scope_info, name_string,					 ACPI_TYPE_ANY, interpreter_mode,					 ACPI_NS_SEARCH_PARENT | ACPI_NS_DONT_OPEN_SCOPE,					 walk_state,					 ACPI_CAST_INDIRECT_PTR (struct acpi_namespace_node, &obj_desc));			/*			 * The only case where we pass through (ignore) a NOT_FOUND			 * error is for the cond_ref_of opcode.			 */			if (status == AE_NOT_FOUND) {				if (parent_op->common.aml_opcode == AML_COND_REF_OF_OP) {					/*					 * For the Conditional Reference op, it's OK if					 * the name is not found;  We just need a way to					 * indicate this to the interpreter, set the					 * object to the root					 */					obj_desc = ACPI_CAST_PTR (union acpi_operand_object, acpi_gbl_root_node);					status = AE_OK;				}				else {					/*					 * We just plain didn't find it -- which is a					 * very serious error at this point					 */					status = AE_AML_NAME_NOT_FOUND;				}			}			if (ACPI_FAILURE (status)) {				ACPI_REPORT_NSERROR (name_string, status);			}		}		/* Free the namestring created above */		ACPI_MEM_FREE (name_string);		/* Check status from the lookup */		if (ACPI_FAILURE (status)) {			return_ACPI_STATUS (status);		}		/* Put the resulting object onto the current object stack */		status = acpi_ds_obj_stack_push (obj_desc, walk_state);		if (ACPI_FAILURE (status)) {			return_ACPI_STATUS (status);		}		ACPI_DEBUGGER_EXEC (acpi_db_display_argument_object (obj_desc, walk_state));	}	else {		/* Check for null name case */		if (arg->common.aml_opcode == AML_INT_NAMEPATH_OP) {			/*			 * If the name is null, this means that this is an			 * optional result parameter that was not specified			 * in the original ASL.  Create a Zero Constant for a			 * placeholder.  (Store to a constant is a Noop.)			 */			opcode = AML_ZERO_OP;       /* Has no arguments! */			ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "Null namepath: Arg=%p\n", arg));		}		else {			opcode = arg->common.aml_opcode;		}		/* Get the object type of the argument */		op_info = acpi_ps_get_opcode_info (opcode);		if (op_info->object_type == ACPI_TYPE_INVALID) {			return_ACPI_STATUS (AE_NOT_IMPLEMENTED);		}		if (op_info->flags & AML_HAS_RETVAL) {			ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,				"Argument previously created, already stacked \n"));			ACPI_DEBUGGER_EXEC (acpi_db_display_argument_object (				walk_state->operands [walk_state->num_operands - 1], walk_state));			/*			 * Use value that was already previously returned			 * by the evaluation of this argument			 */			status = acpi_ds_result_pop_from_bottom (&obj_desc, walk_state);			if (ACPI_FAILURE (status)) {				/*				 * Only error is underflow, and this indicates				 * a missing or null operand!				 */				ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Missing or null operand, %s\n",					acpi_format_exception (status)));				return_ACPI_STATUS (status);			}		}		else {			/* Create an ACPI_INTERNAL_OBJECT for the argument */			obj_desc = acpi_ut_create_internal_object (op_info->object_type);			if (!obj_desc) {				return_ACPI_STATUS (AE_NO_MEMORY);			}			/* Initialize the new object */			status = acpi_ds_init_object_from_op (walk_state, arg,					 opcode, &obj_desc);			if (ACPI_FAILURE (status)) {				acpi_ut_delete_object_desc (obj_desc);				return_ACPI_STATUS (status);			}		}		/* Put the operand object on the object stack */		status = acpi_ds_obj_stack_push (obj_desc, walk_state);		if (ACPI_FAILURE (status)) {			return_ACPI_STATUS (status);		}		ACPI_DEBUGGER_EXEC (acpi_db_display_argument_object (obj_desc, walk_state));	}	return_ACPI_STATUS (AE_OK);}/******************************************************************************* * * FUNCTION:    acpi_ds_create_operands * * PARAMETERS:  first_arg           - First argument of a parser argument tree * * RETURN:      Status * * DESCRIPTION: Convert an operator's arguments from a parse tree format to *              namespace objects and place those argument object on the object *              stack in preparation for evaluation by the interpreter. * ******************************************************************************/acpi_statusacpi_ds_create_operands (	struct acpi_walk_state          *walk_state,	union acpi_parse_object         *first_arg){	acpi_status                     status = AE_OK;	union acpi_parse_object         *arg;	u32                             arg_count = 0;	ACPI_FUNCTION_TRACE_PTR ("ds_create_operands", first_arg);	/* For all arguments in the list... */	arg = first_arg;	while (arg) {		status = acpi_ds_create_operand (walk_state, arg, arg_count);		if (ACPI_FAILURE (status)) {			goto cleanup;		}		ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "Arg #%d (%p) done, Arg1=%p\n",			arg_count, arg, first_arg));		/* Move on to next argument, if any */		arg = arg->common.next;		arg_count++;	}	return_ACPI_STATUS (status);cleanup:	/*	 * We must undo everything done above; meaning that we must	 * pop everything off of the operand stack and delete those	 * objects	 */	(void) acpi_ds_obj_stack_pop_and_delete (arg_count, walk_state);	ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "While creating Arg %d - %s\n",		(arg_count + 1), acpi_format_exception (status)));	return_ACPI_STATUS (status);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -