dsutils.c 21.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/*******************************************************************************
 *
 * Module Name: dsutils - Dispatcher utilities
 *
 ******************************************************************************/

/*
B
Bob Moore 已提交
8
 * Copyright (C) 2000 - 2006, R. Byron Moore
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions, and the following disclaimer,
 *    without modification.
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 *    substantially similar to the "NO WARRANTY" disclaimer below
 *    ("Disclaimer") and any redistribution must be conditioned upon
 *    including a substantially similar Disclaimer requirement for further
 *    binary redistribution.
 * 3. Neither the names of the above-listed copyright holders nor the names
 *    of any contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
 *
 * NO WARRANTY
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGES.
 */

#include <acpi/acpi.h>
#include <acpi/acparser.h>
#include <acpi/amlcode.h>
#include <acpi/acdispat.h>
#include <acpi/acinterp.h>
#include <acpi/acnamesp.h>
#include <acpi/acdebug.h>

#define _COMPONENT          ACPI_DISPATCHER
L
Len Brown 已提交
53
ACPI_MODULE_NAME("dsutils")
L
Linus Torvalds 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

/*******************************************************************************
 *
 * FUNCTION:    acpi_ds_clear_implicit_return
 *
 * PARAMETERS:  walk_state          - Current State
 *
 * RETURN:      None.
 *
 * DESCRIPTION: Clear and remove a reference on an implicit return value.  Used
 *              to delete "stale" return values (if enabled, the return value
 *              from every operator is saved at least momentarily, in case the
 *              parent method exits.)
 *
 ******************************************************************************/
L
Len Brown 已提交
69
void acpi_ds_clear_implicit_return(struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
70
{
L
Len Brown 已提交
71
	ACPI_FUNCTION_NAME("ds_clear_implicit_return");
L
Linus Torvalds 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85

	/*
	 * Slack must be enabled for this feature
	 */
	if (!acpi_gbl_enable_interpreter_slack) {
		return;
	}

	if (walk_state->implicit_return_obj) {
		/*
		 * Delete any "stale" implicit return. However, in
		 * complex statements, the implicit return value can be
		 * bubbled up several levels.
		 */
L
Len Brown 已提交
86 87 88
		ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
				  "Removing reference on stale implicit return obj %p\n",
				  walk_state->implicit_return_obj));
L
Linus Torvalds 已提交
89

L
Len Brown 已提交
90
		acpi_ut_remove_reference(walk_state->implicit_return_obj);
L
Linus Torvalds 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
		walk_state->implicit_return_obj = NULL;
	}
}

#ifndef ACPI_NO_METHOD_EXECUTION
/*******************************************************************************
 *
 * FUNCTION:    acpi_ds_do_implicit_return
 *
 * PARAMETERS:  return_desc         - The return value
 *              walk_state          - Current State
 *              add_reference       - True if a reference should be added to the
 *                                    return object
 *
 * RETURN:      TRUE if implicit return enabled, FALSE otherwise
 *
 * DESCRIPTION: Implements the optional "implicit return".  We save the result
 *              of every ASL operator and control method invocation in case the
 *              parent method exit.  Before storing a new return value, we
 *              delete the previous return value.
 *
 ******************************************************************************/

u8
L
Len Brown 已提交
115 116
acpi_ds_do_implicit_return(union acpi_operand_object *return_desc,
			   struct acpi_walk_state *walk_state, u8 add_reference)
L
Linus Torvalds 已提交
117
{
L
Len Brown 已提交
118
	ACPI_FUNCTION_NAME("ds_do_implicit_return");
L
Linus Torvalds 已提交
119 120 121 122 123

	/*
	 * Slack must be enabled for this feature, and we must
	 * have a valid return object
	 */
L
Len Brown 已提交
124
	if ((!acpi_gbl_enable_interpreter_slack) || (!return_desc)) {
L
Linus Torvalds 已提交
125 126 127
		return (FALSE);
	}

L
Len Brown 已提交
128 129 130
	ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
			  "Result %p will be implicitly returned; Prev=%p\n",
			  return_desc, walk_state->implicit_return_obj));
L
Linus Torvalds 已提交
131 132 133 134 135 136 137 138 139 140 141

	/*
	 * Delete any "stale" implicit return value first. However, in
	 * complex statements, the implicit return value can be
	 * bubbled up several levels, so we don't clear the value if it
	 * is the same as the return_desc.
	 */
	if (walk_state->implicit_return_obj) {
		if (walk_state->implicit_return_obj == return_desc) {
			return (TRUE);
		}
L
Len Brown 已提交
142
		acpi_ds_clear_implicit_return(walk_state);
L
Linus Torvalds 已提交
143 144 145 146 147 148
	}

	/* Save the implicit return value, add a reference if requested */

	walk_state->implicit_return_obj = return_desc;
	if (add_reference) {
L
Len Brown 已提交
149
		acpi_ut_add_reference(return_desc);
L
Linus Torvalds 已提交
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
	}

	return (TRUE);
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ds_is_result_used
 *
 * PARAMETERS:  Op                  - Current Op
 *              walk_state          - Current State
 *
 * RETURN:      TRUE if result is used, FALSE otherwise
 *
 * DESCRIPTION: Check if a result object will be used by the parent
 *
 ******************************************************************************/

u8
L
Len Brown 已提交
169 170
acpi_ds_is_result_used(union acpi_parse_object * op,
		       struct acpi_walk_state * walk_state)
L
Linus Torvalds 已提交
171
{
L
Len Brown 已提交
172
	const struct acpi_opcode_info *parent_info;
L
Linus Torvalds 已提交
173

L
Len Brown 已提交
174
	ACPI_FUNCTION_TRACE_PTR("ds_is_result_used", op);
L
Linus Torvalds 已提交
175 176 177 178

	/* Must have both an Op and a Result Object */

	if (!op) {
B
Bob Moore 已提交
179
		ACPI_ERROR((AE_INFO, "Null Op"));
B
Bob Moore 已提交
180
		return_UINT8(TRUE);
L
Linus Torvalds 已提交
181 182 183 184 185 186 187 188 189 190 191
	}

	/*
	 * We know that this operator is not a
	 * Return() operator (would not come here.) The following code is the
	 * optional support for a so-called "implicit return". Some AML code
	 * assumes that the last value of the method is "implicitly" returned
	 * to the caller. Just save the last result as the return value.
	 * NOTE: this is optional because the ASL language does not actually
	 * support this behavior.
	 */
L
Len Brown 已提交
192 193
	(void)acpi_ds_do_implicit_return(walk_state->result_obj, walk_state,
					 TRUE);
L
Linus Torvalds 已提交
194 195 196 197 198 199 200 201 202 203

	/*
	 * Now determine if the parent will use the result
	 *
	 * If there is no parent, or the parent is a scope_op, we are executing
	 * at the method level. An executing method typically has no parent,
	 * since each method is parsed separately.  A method invoked externally
	 * via execute_control_method has a scope_op as the parent.
	 */
	if ((!op->common.parent) ||
L
Len Brown 已提交
204
	    (op->common.parent->common.aml_opcode == AML_SCOPE_OP)) {
L
Linus Torvalds 已提交
205 206
		/* No parent, the return value cannot possibly be used */

L
Len Brown 已提交
207 208 209 210
		ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
				  "At Method level, result of [%s] not used\n",
				  acpi_ps_get_opcode_name(op->common.
							  aml_opcode)));
B
Bob Moore 已提交
211
		return_UINT8(FALSE);
L
Linus Torvalds 已提交
212 213 214 215
	}

	/* Get info on the parent. The root_op is AML_SCOPE */

L
Len Brown 已提交
216 217
	parent_info =
	    acpi_ps_get_opcode_info(op->common.parent->common.aml_opcode);
L
Linus Torvalds 已提交
218
	if (parent_info->class == AML_CLASS_UNKNOWN) {
B
Bob Moore 已提交
219
		ACPI_ERROR((AE_INFO, "Unknown parent opcode Op=%p", op));
B
Bob Moore 已提交
220
		return_UINT8(FALSE);
L
Linus Torvalds 已提交
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
	}

	/*
	 * Decide what to do with the result based on the parent.  If
	 * the parent opcode will not use the result, delete the object.
	 * Otherwise leave it as is, it will be deleted when it is used
	 * as an operand later.
	 */
	switch (parent_info->class) {
	case AML_CLASS_CONTROL:

		switch (op->common.parent->common.aml_opcode) {
		case AML_RETURN_OP:

			/* Never delete the return value associated with a return opcode */

			goto result_used;

		case AML_IF_OP:
		case AML_WHILE_OP:

			/*
			 * If we are executing the predicate AND this is the predicate op,
			 * we will use the return value
			 */
L
Len Brown 已提交
246 247 248 249
			if ((walk_state->control_state->common.state ==
			     ACPI_CONTROL_PREDICATE_EXECUTING)
			    && (walk_state->control_state->control.
				predicate_op == op)) {
L
Linus Torvalds 已提交
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
				goto result_used;
			}
			break;

		default:
			/* Ignore other control opcodes */
			break;
		}

		/* The general control opcode returns no result */

		goto result_not_used;

	case AML_CLASS_CREATE:

		/*
		 * These opcodes allow term_arg(s) as operands and therefore
		 * the operands can be method calls.  The result is used.
		 */
		goto result_used;

	case AML_CLASS_NAMED_OBJECT:

L
Len Brown 已提交
273 274 275 276 277 278 279 280
		if ((op->common.parent->common.aml_opcode == AML_REGION_OP) ||
		    (op->common.parent->common.aml_opcode == AML_DATA_REGION_OP)
		    || (op->common.parent->common.aml_opcode == AML_PACKAGE_OP)
		    || (op->common.parent->common.aml_opcode ==
			AML_VAR_PACKAGE_OP)
		    || (op->common.parent->common.aml_opcode == AML_BUFFER_OP)
		    || (op->common.parent->common.aml_opcode ==
			AML_INT_EVAL_SUBTREE_OP)) {
L
Linus Torvalds 已提交
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
			/*
			 * These opcodes allow term_arg(s) as operands and therefore
			 * the operands can be method calls.  The result is used.
			 */
			goto result_used;
		}

		goto result_not_used;

	default:

		/*
		 * In all other cases. the parent will actually use the return
		 * object, so keep it.
		 */
		goto result_used;
	}

L
Len Brown 已提交
299 300 301 302 303 304
      result_used:
	ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
			  "Result of [%s] used by Parent [%s] Op=%p\n",
			  acpi_ps_get_opcode_name(op->common.aml_opcode),
			  acpi_ps_get_opcode_name(op->common.parent->common.
						  aml_opcode), op));
L
Linus Torvalds 已提交
305

B
Bob Moore 已提交
306
	return_UINT8(TRUE);
L
Linus Torvalds 已提交
307

L
Len Brown 已提交
308 309 310 311 312 313
      result_not_used:
	ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
			  "Result of [%s] not used by Parent [%s] Op=%p\n",
			  acpi_ps_get_opcode_name(op->common.aml_opcode),
			  acpi_ps_get_opcode_name(op->common.parent->common.
						  aml_opcode), op));
L
Linus Torvalds 已提交
314

B
Bob Moore 已提交
315
	return_UINT8(FALSE);
L
Linus Torvalds 已提交
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ds_delete_result_if_not_used
 *
 * PARAMETERS:  Op              - Current parse Op
 *              result_obj      - Result of the operation
 *              walk_state      - Current state
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Used after interpretation of an opcode.  If there is an internal
 *              result descriptor, check if the parent opcode will actually use
 *              this result.  If not, delete the result now so that it will
 *              not become orphaned.
 *
 ******************************************************************************/

void
L
Len Brown 已提交
336 337 338
acpi_ds_delete_result_if_not_used(union acpi_parse_object *op,
				  union acpi_operand_object *result_obj,
				  struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
339
{
L
Len Brown 已提交
340 341
	union acpi_operand_object *obj_desc;
	acpi_status status;
L
Linus Torvalds 已提交
342

L
Len Brown 已提交
343
	ACPI_FUNCTION_TRACE_PTR("ds_delete_result_if_not_used", result_obj);
L
Linus Torvalds 已提交
344 345

	if (!op) {
B
Bob Moore 已提交
346
		ACPI_ERROR((AE_INFO, "Null Op"));
L
Linus Torvalds 已提交
347 348 349 350 351 352 353
		return_VOID;
	}

	if (!result_obj) {
		return_VOID;
	}

L
Len Brown 已提交
354
	if (!acpi_ds_is_result_used(op, walk_state)) {
L
Linus Torvalds 已提交
355 356
		/* Must pop the result stack (obj_desc should be equal to result_obj) */

L
Len Brown 已提交
357 358 359
		status = acpi_ds_result_pop(&obj_desc, walk_state);
		if (ACPI_SUCCESS(status)) {
			acpi_ut_remove_reference(result_obj);
L
Linus Torvalds 已提交
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
		}
	}

	return_VOID;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ds_resolve_operands
 *
 * PARAMETERS:  walk_state          - Current walk state with operands on stack
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Resolve all operands to their values.  Used to prepare
 *              arguments to a control method invocation (a call from one
 *              method to another.)
 *
 ******************************************************************************/

L
Len Brown 已提交
380
acpi_status acpi_ds_resolve_operands(struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
381
{
L
Len Brown 已提交
382 383
	u32 i;
	acpi_status status = AE_OK;
L
Linus Torvalds 已提交
384

L
Len Brown 已提交
385
	ACPI_FUNCTION_TRACE_PTR("ds_resolve_operands", walk_state);
L
Linus Torvalds 已提交
386 387 388 389 390 391 392

	/*
	 * Attempt to resolve each of the valid operands
	 * Method arguments are passed by reference, not by value.  This means
	 * that the actual objects are passed, not copies of the objects.
	 */
	for (i = 0; i < walk_state->num_operands; i++) {
L
Len Brown 已提交
393 394 395 396
		status =
		    acpi_ex_resolve_to_value(&walk_state->operands[i],
					     walk_state);
		if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
397 398 399 400
			break;
		}
	}

L
Len Brown 已提交
401
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
402 403 404 405 406 407 408 409 410 411 412 413 414 415
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ds_clear_operands
 *
 * PARAMETERS:  walk_state          - Current walk state with operands on stack
 *
 * RETURN:      None
 *
 * DESCRIPTION: Clear all operands on the current walk state operand stack.
 *
 ******************************************************************************/

L
Len Brown 已提交
416
void acpi_ds_clear_operands(struct acpi_walk_state *walk_state)
L
Linus Torvalds 已提交
417
{
L
Len Brown 已提交
418
	u32 i;
L
Linus Torvalds 已提交
419

L
Len Brown 已提交
420
	ACPI_FUNCTION_TRACE_PTR("ds_clear_operands", walk_state);
L
Linus Torvalds 已提交
421 422 423 424 425 426 427 428

	/* 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".
		 */
L
Len Brown 已提交
429
		acpi_ut_remove_reference(walk_state->operands[i]);
L
Linus Torvalds 已提交
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455
		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_status
L
Len Brown 已提交
456 457
acpi_ds_create_operand(struct acpi_walk_state *walk_state,
		       union acpi_parse_object *arg, u32 arg_index)
L
Linus Torvalds 已提交
458
{
L
Len Brown 已提交
459 460 461 462 463 464 465 466
	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;
L
Linus Torvalds 已提交
467

L
Len Brown 已提交
468
	ACPI_FUNCTION_TRACE_PTR("ds_create_operand", arg);
L
Linus Torvalds 已提交
469 470 471 472

	/* A valid name must be looked up in the namespace */

	if ((arg->common.aml_opcode == AML_INT_NAMEPATH_OP) &&
L
Len Brown 已提交
473 474 475
	    (arg->common.value.string)) {
		ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Getting a name: Arg=%p\n",
				  arg));
L
Linus Torvalds 已提交
476 477 478

		/* Get the entire name string from the AML stream */

L
Len Brown 已提交
479 480 481 482
		status =
		    acpi_ex_get_name_string(ACPI_TYPE_ANY,
					    arg->common.value.buffer,
					    &name_string, &name_length);
L
Linus Torvalds 已提交
483

L
Len Brown 已提交
484 485
		if (ACPI_FAILURE(status)) {
			return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
486 487 488 489 490 491 492 493 494 495 496 497 498 499
		}

		/* 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) &&
L
Len Brown 已提交
500 501 502 503 504
		    (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);
L
Linus Torvalds 已提交
505
			status = AE_OK;
L
Len Brown 已提交
506 507
		} else {	/* All other opcodes */

L
Linus Torvalds 已提交
508 509 510 511 512 513 514
			/*
			 * 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;
L
Len Brown 已提交
515 516 517 518 519 520 521 522 523
			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)) {
L
Linus Torvalds 已提交
524 525 526
				/* Enter name into namespace if not found */

				interpreter_mode = ACPI_IMODE_LOAD_PASS2;
L
Len Brown 已提交
527
			} else {
L
Linus Torvalds 已提交
528 529 530 531 532
				/* Return a failure if name not found */

				interpreter_mode = ACPI_IMODE_EXECUTE;
			}

L
Len Brown 已提交
533 534 535 536 537 538 539 540
			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));
L
Linus Torvalds 已提交
541 542 543 544 545
			/*
			 * The only case where we pass through (ignore) a NOT_FOUND
			 * error is for the cond_ref_of opcode.
			 */
			if (status == AE_NOT_FOUND) {
L
Len Brown 已提交
546 547
				if (parent_op->common.aml_opcode ==
				    AML_COND_REF_OF_OP) {
L
Linus Torvalds 已提交
548 549 550 551 552 553
					/*
					 * 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
					 */
L
Len Brown 已提交
554 555 556 557
					obj_desc =
					    ACPI_CAST_PTR(union
							  acpi_operand_object,
							  acpi_gbl_root_node);
L
Linus Torvalds 已提交
558
					status = AE_OK;
L
Len Brown 已提交
559
				} else {
L
Linus Torvalds 已提交
560 561 562 563 564 565 566 567
					/*
					 * We just plain didn't find it -- which is a
					 * very serious error at this point
					 */
					status = AE_AML_NAME_NOT_FOUND;
				}
			}

L
Len Brown 已提交
568
			if (ACPI_FAILURE(status)) {
B
Bob Moore 已提交
569
				ACPI_ERROR_NAMESPACE(name_string, status);
L
Linus Torvalds 已提交
570 571 572 573 574
			}
		}

		/* Free the namestring created above */

L
Len Brown 已提交
575
		ACPI_MEM_FREE(name_string);
L
Linus Torvalds 已提交
576 577 578

		/* Check status from the lookup */

L
Len Brown 已提交
579 580
		if (ACPI_FAILURE(status)) {
			return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
581 582 583 584
		}

		/* Put the resulting object onto the current object stack */

L
Len Brown 已提交
585 586 587
		status = acpi_ds_obj_stack_push(obj_desc, walk_state);
		if (ACPI_FAILURE(status)) {
			return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
588
		}
L
Len Brown 已提交
589 590 591
		ACPI_DEBUGGER_EXEC(acpi_db_display_argument_object
				   (obj_desc, walk_state));
	} else {
L
Linus Torvalds 已提交
592 593 594 595 596 597 598 599 600
		/* 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.)
			 */
L
Len Brown 已提交
601
			opcode = AML_ZERO_OP;	/* Has no arguments! */
L
Linus Torvalds 已提交
602

L
Len Brown 已提交
603 604 605
			ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
					  "Null namepath: Arg=%p\n", arg));
		} else {
L
Linus Torvalds 已提交
606 607 608 609 610
			opcode = arg->common.aml_opcode;
		}

		/* Get the object type of the argument */

L
Len Brown 已提交
611
		op_info = acpi_ps_get_opcode_info(opcode);
L
Linus Torvalds 已提交
612
		if (op_info->object_type == ACPI_TYPE_INVALID) {
L
Len Brown 已提交
613
			return_ACPI_STATUS(AE_NOT_IMPLEMENTED);
L
Linus Torvalds 已提交
614 615 616
		}

		if (op_info->flags & AML_HAS_RETVAL) {
L
Len Brown 已提交
617
			ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
B
Bob Moore 已提交
618
					  "Argument previously created, already stacked\n"));
L
Linus Torvalds 已提交
619

L
Len Brown 已提交
620 621 622 623
			ACPI_DEBUGGER_EXEC(acpi_db_display_argument_object
					   (walk_state->
					    operands[walk_state->num_operands -
						     1], walk_state));
L
Linus Torvalds 已提交
624 625 626 627 628

			/*
			 * Use value that was already previously returned
			 * by the evaluation of this argument
			 */
L
Len Brown 已提交
629 630 631 632
			status =
			    acpi_ds_result_pop_from_bottom(&obj_desc,
							   walk_state);
			if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
633 634 635 636
				/*
				 * Only error is underflow, and this indicates
				 * a missing or null operand!
				 */
B
Bob Moore 已提交
637 638
				ACPI_EXCEPTION((AE_INFO, status,
						"Missing or null operand"));
L
Len Brown 已提交
639
				return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
640
			}
L
Len Brown 已提交
641
		} else {
L
Linus Torvalds 已提交
642 643
			/* Create an ACPI_INTERNAL_OBJECT for the argument */

L
Len Brown 已提交
644 645 646
			obj_desc =
			    acpi_ut_create_internal_object(op_info->
							   object_type);
L
Linus Torvalds 已提交
647
			if (!obj_desc) {
L
Len Brown 已提交
648
				return_ACPI_STATUS(AE_NO_MEMORY);
L
Linus Torvalds 已提交
649 650 651 652
			}

			/* Initialize the new object */

L
Len Brown 已提交
653 654 655 656 657 658
			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);
L
Linus Torvalds 已提交
659 660 661 662 663
			}
		}

		/* Put the operand object on the object stack */

L
Len Brown 已提交
664 665 666
		status = acpi_ds_obj_stack_push(obj_desc, walk_state);
		if (ACPI_FAILURE(status)) {
			return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
667 668
		}

L
Len Brown 已提交
669 670
		ACPI_DEBUGGER_EXEC(acpi_db_display_argument_object
				   (obj_desc, walk_state));
L
Linus Torvalds 已提交
671 672
	}

L
Len Brown 已提交
673
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_ds_create_operands
 *
 * PARAMETERS:  walk_state          - Current state
 *              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_status
L
Len Brown 已提交
692 693
acpi_ds_create_operands(struct acpi_walk_state *walk_state,
			union acpi_parse_object *first_arg)
L
Linus Torvalds 已提交
694
{
L
Len Brown 已提交
695 696 697
	acpi_status status = AE_OK;
	union acpi_parse_object *arg;
	u32 arg_count = 0;
L
Linus Torvalds 已提交
698

L
Len Brown 已提交
699
	ACPI_FUNCTION_TRACE_PTR("ds_create_operands", first_arg);
L
Linus Torvalds 已提交
700 701 702 703 704

	/* For all arguments in the list... */

	arg = first_arg;
	while (arg) {
L
Len Brown 已提交
705 706
		status = acpi_ds_create_operand(walk_state, arg, arg_count);
		if (ACPI_FAILURE(status)) {
L
Linus Torvalds 已提交
707 708 709
			goto cleanup;
		}

L
Len Brown 已提交
710 711 712
		ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
				  "Arg #%d (%p) done, Arg1=%p\n", arg_count,
				  arg, first_arg));
L
Linus Torvalds 已提交
713 714 715 716 717 718 719

		/* Move on to next argument, if any */

		arg = arg->common.next;
		arg_count++;
	}

L
Len Brown 已提交
720
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
721

L
Len Brown 已提交
722
      cleanup:
L
Linus Torvalds 已提交
723 724 725 726 727
	/*
	 * We must undo everything done above; meaning that we must
	 * pop everything off of the operand stack and delete those
	 * objects
	 */
L
Len Brown 已提交
728
	(void)acpi_ds_obj_stack_pop_and_delete(arg_count, walk_state);
L
Linus Torvalds 已提交
729

B
Bob Moore 已提交
730 731
	ACPI_EXCEPTION((AE_INFO, status, "While creating Arg %d",
			(arg_count + 1)));
L
Len Brown 已提交
732
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
733
}