1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /******************************************************************************
4 * Module Name: exmisc - ACPI AML (p-code) execution - specific opcodes
6 * Copyright (C) 2000 - 2019, Intel Corp.
8 *****************************************************************************/
10 #include <acpi/acpi.h>
15 #define _COMPONENT ACPI_EXECUTER
16 ACPI_MODULE_NAME("exmisc")
18 /*******************************************************************************
20 * FUNCTION: acpi_ex_get_object_reference
22 * PARAMETERS: obj_desc - Create a reference to this object
23 * return_desc - Where to store the reference
24 * walk_state - Current state
28 * DESCRIPTION: Obtain and return a "reference" to the target object
29 * Common code for the ref_of_op and the cond_ref_of_op.
31 ******************************************************************************/
33 acpi_ex_get_object_reference(union acpi_operand_object
*obj_desc
,
34 union acpi_operand_object
**return_desc
,
35 struct acpi_walk_state
*walk_state
)
37 union acpi_operand_object
*reference_obj
;
38 union acpi_operand_object
*referenced_obj
;
40 ACPI_FUNCTION_TRACE_PTR(ex_get_object_reference
, obj_desc
);
44 switch (ACPI_GET_DESCRIPTOR_TYPE(obj_desc
)) {
45 case ACPI_DESC_TYPE_OPERAND
:
47 if (obj_desc
->common
.type
!= ACPI_TYPE_LOCAL_REFERENCE
) {
48 return_ACPI_STATUS(AE_AML_OPERAND_TYPE
);
52 * Must be a reference to a Local or Arg
54 switch (obj_desc
->reference
.class) {
55 case ACPI_REFCLASS_LOCAL
:
56 case ACPI_REFCLASS_ARG
:
57 case ACPI_REFCLASS_DEBUG
:
59 /* The referenced object is the pseudo-node for the local/arg */
61 referenced_obj
= obj_desc
->reference
.object
;
66 ACPI_ERROR((AE_INFO
, "Invalid Reference Class 0x%2.2X",
67 obj_desc
->reference
.class));
68 return_ACPI_STATUS(AE_AML_OPERAND_TYPE
);
72 case ACPI_DESC_TYPE_NAMED
:
74 * A named reference that has already been resolved to a Node
76 referenced_obj
= obj_desc
;
81 ACPI_ERROR((AE_INFO
, "Invalid descriptor type 0x%X",
82 ACPI_GET_DESCRIPTOR_TYPE(obj_desc
)));
83 return_ACPI_STATUS(AE_TYPE
);
86 /* Create a new reference object */
89 acpi_ut_create_internal_object(ACPI_TYPE_LOCAL_REFERENCE
);
91 return_ACPI_STATUS(AE_NO_MEMORY
);
94 reference_obj
->reference
.class = ACPI_REFCLASS_REFOF
;
95 reference_obj
->reference
.object
= referenced_obj
;
96 *return_desc
= reference_obj
;
98 ACPI_DEBUG_PRINT((ACPI_DB_EXEC
,
99 "Object %p Type [%s], returning Reference %p\n",
100 obj_desc
, acpi_ut_get_object_type_name(obj_desc
),
103 return_ACPI_STATUS(AE_OK
);
106 /*******************************************************************************
108 * FUNCTION: acpi_ex_do_math_op
110 * PARAMETERS: opcode - AML opcode
111 * integer0 - Integer operand #0
112 * integer1 - Integer operand #1
114 * RETURN: Integer result of the operation
116 * DESCRIPTION: Execute a math AML opcode. The purpose of having all of the
117 * math functions here is to prevent a lot of pointer dereferencing
118 * to obtain the operands.
120 ******************************************************************************/
122 u64
acpi_ex_do_math_op(u16 opcode
, u64 integer0
, u64 integer1
)
125 ACPI_FUNCTION_ENTRY();
128 case AML_ADD_OP
: /* Add (Integer0, Integer1, Result) */
130 return (integer0
+ integer1
);
132 case AML_BIT_AND_OP
: /* And (Integer0, Integer1, Result) */
134 return (integer0
& integer1
);
136 case AML_BIT_NAND_OP
: /* NAnd (Integer0, Integer1, Result) */
138 return (~(integer0
& integer1
));
140 case AML_BIT_OR_OP
: /* Or (Integer0, Integer1, Result) */
142 return (integer0
| integer1
);
144 case AML_BIT_NOR_OP
: /* NOr (Integer0, Integer1, Result) */
146 return (~(integer0
| integer1
));
148 case AML_BIT_XOR_OP
: /* XOr (Integer0, Integer1, Result) */
150 return (integer0
^ integer1
);
152 case AML_MULTIPLY_OP
: /* Multiply (Integer0, Integer1, Result) */
154 return (integer0
* integer1
);
156 case AML_SHIFT_LEFT_OP
: /* shift_left (Operand, shift_count, Result) */
159 * We need to check if the shiftcount is larger than the integer bit
160 * width since the behavior of this is not well-defined in the C language.
162 if (integer1
>= acpi_gbl_integer_bit_width
) {
165 return (integer0
<< integer1
);
167 case AML_SHIFT_RIGHT_OP
: /* shift_right (Operand, shift_count, Result) */
170 * We need to check if the shiftcount is larger than the integer bit
171 * width since the behavior of this is not well-defined in the C language.
173 if (integer1
>= acpi_gbl_integer_bit_width
) {
176 return (integer0
>> integer1
);
178 case AML_SUBTRACT_OP
: /* Subtract (Integer0, Integer1, Result) */
180 return (integer0
- integer1
);
188 /*******************************************************************************
190 * FUNCTION: acpi_ex_do_logical_numeric_op
192 * PARAMETERS: opcode - AML opcode
193 * integer0 - Integer operand #0
194 * integer1 - Integer operand #1
195 * logical_result - TRUE/FALSE result of the operation
199 * DESCRIPTION: Execute a logical "Numeric" AML opcode. For these Numeric
200 * operators (LAnd and LOr), both operands must be integers.
202 * Note: cleanest machine code seems to be produced by the code
203 * below, rather than using statements of the form:
204 * Result = (Integer0 && Integer1);
206 ******************************************************************************/
209 acpi_ex_do_logical_numeric_op(u16 opcode
,
210 u64 integer0
, u64 integer1
, u8
*logical_result
)
212 acpi_status status
= AE_OK
;
213 u8 local_result
= FALSE
;
215 ACPI_FUNCTION_TRACE(ex_do_logical_numeric_op
);
218 case AML_LOGICAL_AND_OP
: /* LAnd (Integer0, Integer1) */
220 if (integer0
&& integer1
) {
225 case AML_LOGICAL_OR_OP
: /* LOr (Integer0, Integer1) */
227 if (integer0
|| integer1
) {
235 "Invalid numeric logical opcode: %X", opcode
));
236 status
= AE_AML_INTERNAL
;
240 /* Return the logical result and status */
242 *logical_result
= local_result
;
243 return_ACPI_STATUS(status
);
246 /*******************************************************************************
248 * FUNCTION: acpi_ex_do_logical_op
250 * PARAMETERS: opcode - AML opcode
251 * operand0 - operand #0
252 * operand1 - operand #1
253 * logical_result - TRUE/FALSE result of the operation
257 * DESCRIPTION: Execute a logical AML opcode. The purpose of having all of the
258 * functions here is to prevent a lot of pointer dereferencing
259 * to obtain the operands and to simplify the generation of the
260 * logical value. For the Numeric operators (LAnd and LOr), both
261 * operands must be integers. For the other logical operators,
262 * operands can be any combination of Integer/String/Buffer. The
263 * first operand determines the type to which the second operand
266 * Note: cleanest machine code seems to be produced by the code
267 * below, rather than using statements of the form:
268 * Result = (Operand0 == Operand1);
270 ******************************************************************************/
273 acpi_ex_do_logical_op(u16 opcode
,
274 union acpi_operand_object
*operand0
,
275 union acpi_operand_object
*operand1
, u8
* logical_result
)
277 union acpi_operand_object
*local_operand1
= operand1
;
282 acpi_status status
= AE_OK
;
283 u8 local_result
= FALSE
;
286 ACPI_FUNCTION_TRACE(ex_do_logical_op
);
289 * Convert the second operand if necessary. The first operand
290 * determines the type of the second operand, (See the Data Types
291 * section of the ACPI 3.0+ specification.) Both object types are
292 * guaranteed to be either Integer/String/Buffer by the operand
293 * resolution mechanism.
295 switch (operand0
->common
.type
) {
296 case ACPI_TYPE_INTEGER
:
298 status
= acpi_ex_convert_to_integer(operand1
, &local_operand1
,
299 ACPI_IMPLICIT_CONVERSION
);
302 case ACPI_TYPE_STRING
:
305 acpi_ex_convert_to_string(operand1
, &local_operand1
,
306 ACPI_IMPLICIT_CONVERT_HEX
);
309 case ACPI_TYPE_BUFFER
:
311 status
= acpi_ex_convert_to_buffer(operand1
, &local_operand1
);
317 "Invalid object type for logical operator: %X",
318 operand0
->common
.type
));
319 status
= AE_AML_INTERNAL
;
323 if (ACPI_FAILURE(status
)) {
328 * Two cases: 1) Both Integers, 2) Both Strings or Buffers
330 if (operand0
->common
.type
== ACPI_TYPE_INTEGER
) {
332 * 1) Both operands are of type integer
333 * Note: local_operand1 may have changed above
335 integer0
= operand0
->integer
.value
;
336 integer1
= local_operand1
->integer
.value
;
339 case AML_LOGICAL_EQUAL_OP
: /* LEqual (Operand0, Operand1) */
341 if (integer0
== integer1
) {
346 case AML_LOGICAL_GREATER_OP
: /* LGreater (Operand0, Operand1) */
348 if (integer0
> integer1
) {
353 case AML_LOGICAL_LESS_OP
: /* LLess (Operand0, Operand1) */
355 if (integer0
< integer1
) {
363 "Invalid comparison opcode: %X", opcode
));
364 status
= AE_AML_INTERNAL
;
369 * 2) Both operands are Strings or both are Buffers
370 * Note: Code below takes advantage of common Buffer/String
371 * object fields. local_operand1 may have changed above. Use
372 * memcmp to handle nulls in buffers.
374 length0
= operand0
->buffer
.length
;
375 length1
= local_operand1
->buffer
.length
;
377 /* Lexicographic compare: compare the data bytes */
379 compare
= memcmp(operand0
->buffer
.pointer
,
380 local_operand1
->buffer
.pointer
,
381 (length0
> length1
) ? length1
: length0
);
384 case AML_LOGICAL_EQUAL_OP
: /* LEqual (Operand0, Operand1) */
386 /* Length and all bytes must be equal */
388 if ((length0
== length1
) && (compare
== 0)) {
390 /* Length and all bytes match ==> TRUE */
396 case AML_LOGICAL_GREATER_OP
: /* LGreater (Operand0, Operand1) */
400 goto cleanup
; /* TRUE */
403 goto cleanup
; /* FALSE */
406 /* Bytes match (to shortest length), compare lengths */
408 if (length0
> length1
) {
413 case AML_LOGICAL_LESS_OP
: /* LLess (Operand0, Operand1) */
416 goto cleanup
; /* FALSE */
420 goto cleanup
; /* TRUE */
423 /* Bytes match (to shortest length), compare lengths */
425 if (length0
< length1
) {
433 "Invalid comparison opcode: %X", opcode
));
434 status
= AE_AML_INTERNAL
;
441 /* New object was created if implicit conversion performed - delete */
443 if (local_operand1
!= operand1
) {
444 acpi_ut_remove_reference(local_operand1
);
447 /* Return the logical result and status */
449 *logical_result
= local_result
;
450 return_ACPI_STATUS(status
);