1
2
3
4
5
6
7
8
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#include <acpi/acpi.h>
45#include "accommon.h"
46#include "acparser.h"
47#include "amlcode.h"
48#include "acdispat.h"
49#include "acinterp.h"
50#include "acnamesp.h"
51#include "acdebug.h"
52
53#define _COMPONENT ACPI_DISPATCHER
54ACPI_MODULE_NAME("dsutils")
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70void acpi_ds_clear_implicit_return(struct acpi_walk_state *walk_state)
71{
72 ACPI_FUNCTION_NAME(ds_clear_implicit_return);
73
74
75
76
77 if (!acpi_gbl_enable_interpreter_slack) {
78 return;
79 }
80
81 if (walk_state->implicit_return_obj) {
82
83
84
85
86
87 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
88 "Removing reference on stale implicit return obj %p\n",
89 walk_state->implicit_return_obj));
90
91 acpi_ut_remove_reference(walk_state->implicit_return_obj);
92 walk_state->implicit_return_obj = NULL;
93 }
94}
95
96#ifndef ACPI_NO_METHOD_EXECUTION
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115u8
116acpi_ds_do_implicit_return(union acpi_operand_object *return_desc,
117 struct acpi_walk_state *walk_state, u8 add_reference)
118{
119 ACPI_FUNCTION_NAME(ds_do_implicit_return);
120
121
122
123
124
125 if ((!acpi_gbl_enable_interpreter_slack) || (!return_desc)) {
126 return (FALSE);
127 }
128
129 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
130 "Result %p will be implicitly returned; Prev=%p\n",
131 return_desc, walk_state->implicit_return_obj));
132
133
134
135
136
137
138
139 if (walk_state->implicit_return_obj) {
140 if (walk_state->implicit_return_obj == return_desc) {
141 return (TRUE);
142 }
143 acpi_ds_clear_implicit_return(walk_state);
144 }
145
146
147
148 walk_state->implicit_return_obj = return_desc;
149 if (add_reference) {
150 acpi_ut_add_reference(return_desc);
151 }
152
153 return (TRUE);
154}
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169u8
170acpi_ds_is_result_used(union acpi_parse_object * op,
171 struct acpi_walk_state * walk_state)
172{
173 const struct acpi_opcode_info *parent_info;
174
175 ACPI_FUNCTION_TRACE_PTR(ds_is_result_used, op);
176
177
178
179 if (!op) {
180 ACPI_ERROR((AE_INFO, "Null Op"));
181 return_UINT8(TRUE);
182 }
183
184
185
186
187
188
189
190
191
192
193 (void)acpi_ds_do_implicit_return(walk_state->result_obj, walk_state,
194 TRUE);
195
196
197
198
199
200
201
202
203
204 if ((!op->common.parent) ||
205 (op->common.parent->common.aml_opcode == AML_SCOPE_OP)) {
206
207
208
209 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
210 "At Method level, result of [%s] not used\n",
211 acpi_ps_get_opcode_name(op->common.
212 aml_opcode)));
213 return_UINT8(FALSE);
214 }
215
216
217
218 parent_info =
219 acpi_ps_get_opcode_info(op->common.parent->common.aml_opcode);
220 if (parent_info->class == AML_CLASS_UNKNOWN) {
221 ACPI_ERROR((AE_INFO, "Unknown parent opcode Op=%p", op));
222 return_UINT8(FALSE);
223 }
224
225
226
227
228
229
230
231 switch (parent_info->class) {
232 case AML_CLASS_CONTROL:
233
234 switch (op->common.parent->common.aml_opcode) {
235 case AML_RETURN_OP:
236
237
238
239 goto result_used;
240
241 case AML_IF_OP:
242 case AML_WHILE_OP:
243
244
245
246
247 if ((walk_state->control_state->common.state ==
248 ACPI_CONTROL_PREDICATE_EXECUTING) &&
249 (walk_state->control_state->control.predicate_op ==
250 op)) {
251 goto result_used;
252 }
253 break;
254
255 default:
256
257
258
259 break;
260 }
261
262
263
264 goto result_not_used;
265
266 case AML_CLASS_CREATE:
267
268
269
270
271 goto result_used;
272
273 case AML_CLASS_NAMED_OBJECT:
274
275 if ((op->common.parent->common.aml_opcode == AML_REGION_OP) ||
276 (op->common.parent->common.aml_opcode == AML_DATA_REGION_OP)
277 || (op->common.parent->common.aml_opcode == AML_PACKAGE_OP)
278 || (op->common.parent->common.aml_opcode ==
279 AML_VAR_PACKAGE_OP)
280 || (op->common.parent->common.aml_opcode == AML_BUFFER_OP)
281 || (op->common.parent->common.aml_opcode ==
282 AML_INT_EVAL_SUBTREE_OP)
283 || (op->common.parent->common.aml_opcode ==
284 AML_BANK_FIELD_OP)) {
285
286
287
288
289 goto result_used;
290 }
291
292 goto result_not_used;
293
294 default:
295
296
297
298
299 goto result_used;
300 }
301
302result_used:
303 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
304 "Result of [%s] used by Parent [%s] Op=%p\n",
305 acpi_ps_get_opcode_name(op->common.aml_opcode),
306 acpi_ps_get_opcode_name(op->common.parent->common.
307 aml_opcode), op));
308
309 return_UINT8(TRUE);
310
311result_not_used:
312 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
313 "Result of [%s] not used by Parent [%s] Op=%p\n",
314 acpi_ps_get_opcode_name(op->common.aml_opcode),
315 acpi_ps_get_opcode_name(op->common.parent->common.
316 aml_opcode), op));
317
318 return_UINT8(FALSE);
319}
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338void
339acpi_ds_delete_result_if_not_used(union acpi_parse_object *op,
340 union acpi_operand_object *result_obj,
341 struct acpi_walk_state *walk_state)
342{
343 union acpi_operand_object *obj_desc;
344 acpi_status status;
345
346 ACPI_FUNCTION_TRACE_PTR(ds_delete_result_if_not_used, result_obj);
347
348 if (!op) {
349 ACPI_ERROR((AE_INFO, "Null Op"));
350 return_VOID;
351 }
352
353 if (!result_obj) {
354 return_VOID;
355 }
356
357 if (!acpi_ds_is_result_used(op, walk_state)) {
358
359
360
361 status = acpi_ds_result_pop(&obj_desc, walk_state);
362 if (ACPI_SUCCESS(status)) {
363 acpi_ut_remove_reference(result_obj);
364 }
365 }
366
367 return_VOID;
368}
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384acpi_status acpi_ds_resolve_operands(struct acpi_walk_state *walk_state)
385{
386 u32 i;
387 acpi_status status = AE_OK;
388
389 ACPI_FUNCTION_TRACE_PTR(ds_resolve_operands, walk_state);
390
391
392
393
394
395
396 for (i = 0; i < walk_state->num_operands; i++) {
397 status =
398 acpi_ex_resolve_to_value(&walk_state->operands[i],
399 walk_state);
400 if (ACPI_FAILURE(status)) {
401 break;
402 }
403 }
404
405 return_ACPI_STATUS(status);
406}
407
408
409
410
411
412
413
414
415
416
417
418
419
420void acpi_ds_clear_operands(struct acpi_walk_state *walk_state)
421{
422 u32 i;
423
424 ACPI_FUNCTION_TRACE_PTR(ds_clear_operands, walk_state);
425
426
427
428 for (i = 0; i < walk_state->num_operands; i++) {
429
430
431
432
433 acpi_ut_remove_reference(walk_state->operands[i]);
434 walk_state->operands[i] = NULL;
435 }
436
437 walk_state->num_operands = 0;
438 return_VOID;
439}
440#endif
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459acpi_status
460acpi_ds_create_operand(struct acpi_walk_state *walk_state,
461 union acpi_parse_object *arg, u32 arg_index)
462{
463 acpi_status status = AE_OK;
464 char *name_string;
465 u32 name_length;
466 union acpi_operand_object *obj_desc;
467 union acpi_parse_object *parent_op;
468 u16 opcode;
469 acpi_interpreter_mode interpreter_mode;
470 const struct acpi_opcode_info *op_info;
471
472 ACPI_FUNCTION_TRACE_PTR(ds_create_operand, arg);
473
474
475
476 if ((arg->common.aml_opcode == AML_INT_NAMEPATH_OP) &&
477 (arg->common.value.string) &&
478 !(arg->common.flags & ACPI_PARSEOP_IN_STACK)) {
479 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, "Getting a name: Arg=%p\n",
480 arg));
481
482
483
484 status = acpi_ex_get_name_string(ACPI_TYPE_ANY,
485 arg->common.value.buffer,
486 &name_string, &name_length);
487
488 if (ACPI_FAILURE(status)) {
489 return_ACPI_STATUS(status);
490 }
491
492
493
494
495
496
497
498
499
500
501
502
503 if ((walk_state->deferred_node) &&
504 (walk_state->deferred_node->type == ACPI_TYPE_BUFFER_FIELD)
505 && (arg_index == (u32)
506 ((walk_state->opcode == AML_CREATE_FIELD_OP) ? 3 : 2))) {
507 obj_desc =
508 ACPI_CAST_PTR(union acpi_operand_object,
509 walk_state->deferred_node);
510 status = AE_OK;
511 } else {
512
513
514
515
516
517
518
519 parent_op = arg->common.parent;
520 op_info =
521 acpi_ps_get_opcode_info(parent_op->common.
522 aml_opcode);
523
524 if ((op_info->flags & AML_NSNODE) &&
525 (parent_op->common.aml_opcode !=
526 AML_INT_METHODCALL_OP)
527 && (parent_op->common.aml_opcode != AML_REGION_OP)
528 && (parent_op->common.aml_opcode !=
529 AML_INT_NAMEPATH_OP)) {
530
531
532
533 interpreter_mode = ACPI_IMODE_LOAD_PASS2;
534 } else {
535
536
537 interpreter_mode = ACPI_IMODE_EXECUTE;
538 }
539
540 status =
541 acpi_ns_lookup(walk_state->scope_info, name_string,
542 ACPI_TYPE_ANY, interpreter_mode,
543 ACPI_NS_SEARCH_PARENT |
544 ACPI_NS_DONT_OPEN_SCOPE, walk_state,
545 ACPI_CAST_INDIRECT_PTR(struct
546 acpi_namespace_node,
547 &obj_desc));
548
549
550
551
552 if (status == AE_NOT_FOUND) {
553 if (parent_op->common.aml_opcode ==
554 AML_COND_REF_OF_OP) {
555
556
557
558
559
560
561 obj_desc =
562 ACPI_CAST_PTR(union
563 acpi_operand_object,
564 acpi_gbl_root_node);
565 status = AE_OK;
566 } else if (parent_op->common.aml_opcode ==
567 AML_EXTERNAL_OP) {
568
569
570
571 obj_desc =
572 acpi_ut_create_string_object((acpi_size)name_length);
573
574 strncpy(obj_desc->string.pointer,
575 name_string, name_length);
576 status = AE_OK;
577 } else {
578
579
580
581
582 status = AE_AML_NAME_NOT_FOUND;
583 }
584 }
585
586 if (ACPI_FAILURE(status)) {
587 ACPI_ERROR_NAMESPACE(name_string, status);
588 }
589 }
590
591
592
593 ACPI_FREE(name_string);
594
595
596
597 if (ACPI_FAILURE(status)) {
598 return_ACPI_STATUS(status);
599 }
600
601
602
603 status = acpi_ds_obj_stack_push(obj_desc, walk_state);
604 if (ACPI_FAILURE(status)) {
605 return_ACPI_STATUS(status);
606 }
607
608 acpi_db_display_argument_object(obj_desc, walk_state);
609 } else {
610
611
612 if ((arg->common.aml_opcode == AML_INT_NAMEPATH_OP) &&
613 !(arg->common.flags & ACPI_PARSEOP_IN_STACK)) {
614
615
616
617
618
619
620 opcode = AML_ZERO_OP;
621
622 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
623 "Null namepath: Arg=%p\n", arg));
624 } else {
625 opcode = arg->common.aml_opcode;
626 }
627
628
629
630 op_info = acpi_ps_get_opcode_info(opcode);
631 if (op_info->object_type == ACPI_TYPE_INVALID) {
632 return_ACPI_STATUS(AE_NOT_IMPLEMENTED);
633 }
634
635 if ((op_info->flags & AML_HAS_RETVAL) ||
636 (arg->common.flags & ACPI_PARSEOP_IN_STACK)) {
637 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
638 "Argument previously created, already stacked\n"));
639
640 acpi_db_display_argument_object(walk_state->
641 operands[walk_state->
642 num_operands -
643 1],
644 walk_state);
645
646
647
648
649
650 status = acpi_ds_result_pop(&obj_desc, walk_state);
651 if (ACPI_FAILURE(status)) {
652
653
654
655
656 ACPI_EXCEPTION((AE_INFO, status,
657 "Missing or null operand"));
658 return_ACPI_STATUS(status);
659 }
660 } else {
661
662
663 obj_desc =
664 acpi_ut_create_internal_object(op_info->
665 object_type);
666 if (!obj_desc) {
667 return_ACPI_STATUS(AE_NO_MEMORY);
668 }
669
670
671
672 status =
673 acpi_ds_init_object_from_op(walk_state, arg, opcode,
674 &obj_desc);
675 if (ACPI_FAILURE(status)) {
676 acpi_ut_delete_object_desc(obj_desc);
677 return_ACPI_STATUS(status);
678 }
679 }
680
681
682
683 status = acpi_ds_obj_stack_push(obj_desc, walk_state);
684 if (ACPI_FAILURE(status)) {
685 return_ACPI_STATUS(status);
686 }
687
688 acpi_db_display_argument_object(obj_desc, walk_state);
689 }
690
691 return_ACPI_STATUS(AE_OK);
692}
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709acpi_status
710acpi_ds_create_operands(struct acpi_walk_state *walk_state,
711 union acpi_parse_object *first_arg)
712{
713 acpi_status status = AE_OK;
714 union acpi_parse_object *arg;
715 union acpi_parse_object *arguments[ACPI_OBJ_NUM_OPERANDS];
716 u32 arg_count = 0;
717 u32 index = walk_state->num_operands;
718 u32 i;
719
720 ACPI_FUNCTION_TRACE_PTR(ds_create_operands, first_arg);
721
722
723
724 arg = first_arg;
725 while (arg) {
726 if (index >= ACPI_OBJ_NUM_OPERANDS) {
727 return_ACPI_STATUS(AE_BAD_DATA);
728 }
729
730 arguments[index] = arg;
731 walk_state->operands[index] = NULL;
732
733
734
735 arg = arg->common.next;
736 arg_count++;
737 index++;
738 }
739
740 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
741 "NumOperands %d, ArgCount %d, Index %d\n",
742 walk_state->num_operands, arg_count, index));
743
744
745
746 index--;
747 for (i = 0; i < arg_count; i++) {
748 arg = arguments[index];
749 walk_state->operand_index = (u8)index;
750
751 status = acpi_ds_create_operand(walk_state, arg, index);
752 if (ACPI_FAILURE(status)) {
753 goto cleanup;
754 }
755
756 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH,
757 "Created Arg #%u (%p) %u args total\n",
758 index, arg, arg_count));
759 index--;
760 }
761
762 return_ACPI_STATUS(status);
763
764cleanup:
765
766
767
768
769
770 acpi_ds_obj_stack_pop_and_delete(arg_count, walk_state);
771
772 ACPI_EXCEPTION((AE_INFO, status, "While creating Arg %u", index));
773 return_ACPI_STATUS(status);
774}
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792acpi_status acpi_ds_evaluate_name_path(struct acpi_walk_state *walk_state)
793{
794 acpi_status status = AE_OK;
795 union acpi_parse_object *op = walk_state->op;
796 union acpi_operand_object **operand = &walk_state->operands[0];
797 union acpi_operand_object *new_obj_desc;
798 u8 type;
799
800 ACPI_FUNCTION_TRACE_PTR(ds_evaluate_name_path, walk_state);
801
802 if (!op->common.parent) {
803
804
805
806 goto exit;
807 }
808
809 if ((op->common.parent->common.aml_opcode == AML_PACKAGE_OP) ||
810 (op->common.parent->common.aml_opcode == AML_VAR_PACKAGE_OP) ||
811 (op->common.parent->common.aml_opcode == AML_REF_OF_OP)) {
812
813
814
815 goto exit;
816 }
817
818 status = acpi_ds_create_operand(walk_state, op, 0);
819 if (ACPI_FAILURE(status)) {
820 goto exit;
821 }
822
823 if (op->common.flags & ACPI_PARSEOP_TARGET) {
824 new_obj_desc = *operand;
825 goto push_result;
826 }
827
828 type = (*operand)->common.type;
829
830 status = acpi_ex_resolve_to_value(operand, walk_state);
831 if (ACPI_FAILURE(status)) {
832 goto exit;
833 }
834
835 if (type == ACPI_TYPE_INTEGER) {
836
837
838
839 acpi_ut_remove_reference(*operand);
840
841 status =
842 acpi_ut_copy_iobject_to_iobject(*operand, &new_obj_desc,
843 walk_state);
844 if (ACPI_FAILURE(status)) {
845 goto exit;
846 }
847 } else {
848
849
850
851
852 new_obj_desc = *operand;
853 }
854
855
856
857 status = acpi_ds_obj_stack_pop(1, walk_state);
858 if (ACPI_FAILURE(status)) {
859 walk_state->result_obj = new_obj_desc;
860 goto exit;
861 }
862
863push_result:
864
865 walk_state->result_obj = new_obj_desc;
866
867 status = acpi_ds_result_push(walk_state->result_obj, walk_state);
868 if (ACPI_SUCCESS(status)) {
869
870
871
872 op->common.flags |= ACPI_PARSEOP_IN_STACK;
873 }
874
875exit:
876
877 return_ACPI_STATUS(status);
878}
879