ReactOS 0.4.15-dev-7958-gcd0bb1a
exoparg6.c File Reference
#include "acpi.h"
#include "accommon.h"
#include "acinterp.h"
#include "acparser.h"
#include "amlcode.h"
Include dependency graph for exoparg6.c:

Go to the source code of this file.

Macros

#define _COMPONENT   ACPI_EXECUTER
 

Functions

static BOOLEAN AcpiExDoMatch (UINT32 MatchOp, ACPI_OPERAND_OBJECT *PackageObj, ACPI_OPERAND_OBJECT *MatchObj)
 
ACPI_STATUS AcpiExOpcode_6A_0T_1R (ACPI_WALK_STATE *WalkState)
 

Macro Definition Documentation

◆ _COMPONENT

#define _COMPONENT   ACPI_EXECUTER

Definition at line 51 of file exoparg6.c.

Function Documentation

◆ AcpiExDoMatch()

static BOOLEAN AcpiExDoMatch ( UINT32  MatchOp,
ACPI_OPERAND_OBJECT PackageObj,
ACPI_OPERAND_OBJECT MatchObj 
)
static

Naming convention for AML interpreter execution routines.

The routines that begin execution of AML opcodes are named with a common convention based upon the number of arguments, the number of target operands, and whether or not a value is returned:

 AcpiExOpcode_xA_yT_zR

Where:

xA - ARGUMENTS: The number of arguments (input operands) that are required for this opcode type (1 through 6 args). yT - TARGETS: The number of targets (output operands) that are required for this opcode type (0, 1, or 2 targets). zR - RETURN VALUE: Indicates whether this opcode type returns a value as the function return (0 or 1).

The AcpiExOpcode* functions are called via the Dispatcher component with fully resolved operands. !

Definition at line 103 of file exoparg6.c.

107{
108 BOOLEAN LogicalResult = TRUE;
110
111
112 /*
113 * Note: Since the PackageObj/MatchObj ordering is opposite to that of
114 * the standard logical operators, we have to reverse them when we call
115 * DoLogicalOp in order to make the implicit conversion rules work
116 * correctly. However, this means we have to flip the entire equation
117 * also. A bit ugly perhaps, but overall, better than fussing the
118 * parameters around at runtime, over and over again.
119 *
120 * Below, P[i] refers to the package element, M refers to the Match object.
121 */
122 switch (MatchOp)
123 {
124 case MATCH_MTR:
125
126 /* Always true */
127
128 break;
129
130 case MATCH_MEQ:
131 /*
132 * True if equal: (P[i] == M)
133 * Change to: (M == P[i])
134 */
136 AML_LOGICAL_EQUAL_OP, MatchObj, PackageObj, &LogicalResult);
137 if (ACPI_FAILURE (Status))
138 {
139 return (FALSE);
140 }
141 break;
142
143 case MATCH_MLE:
144 /*
145 * True if less than or equal: (P[i] <= M) (P[i] NotGreater than M)
146 * Change to: (M >= P[i]) (M NotLess than P[i])
147 */
149 AML_LOGICAL_LESS_OP, MatchObj, PackageObj, &LogicalResult);
150 if (ACPI_FAILURE (Status))
151 {
152 return (FALSE);
153 }
154 LogicalResult = (BOOLEAN) !LogicalResult;
155 break;
156
157 case MATCH_MLT:
158 /*
159 * True if less than: (P[i] < M)
160 * Change to: (M > P[i])
161 */
163 AML_LOGICAL_GREATER_OP, MatchObj, PackageObj, &LogicalResult);
164 if (ACPI_FAILURE (Status))
165 {
166 return (FALSE);
167 }
168 break;
169
170 case MATCH_MGE:
171 /*
172 * True if greater than or equal: (P[i] >= M) (P[i] NotLess than M)
173 * Change to: (M <= P[i]) (M NotGreater than P[i])
174 */
176 AML_LOGICAL_GREATER_OP, MatchObj, PackageObj, &LogicalResult);
177 if (ACPI_FAILURE (Status))
178 {
179 return (FALSE);
180 }
181 LogicalResult = (BOOLEAN)!LogicalResult;
182 break;
183
184 case MATCH_MGT:
185 /*
186 * True if greater than: (P[i] > M)
187 * Change to: (M < P[i])
188 */
190 AML_LOGICAL_LESS_OP, MatchObj, PackageObj, &LogicalResult);
191 if (ACPI_FAILURE (Status))
192 {
193 return (FALSE);
194 }
195 break;
196
197 default:
198
199 /* Undefined */
200
201 return (FALSE);
202 }
203
204 return (LogicalResult);
205}
unsigned char BOOLEAN
#define ACPI_FAILURE(a)
Definition: acexcep.h:95
UINT32 ACPI_STATUS
Definition: actypes.h:460
#define AML_LOGICAL_GREATER_OP
Definition: amlcode.h:124
#define AML_LOGICAL_LESS_OP
Definition: amlcode.h:125
#define AML_LOGICAL_EQUAL_OP
Definition: amlcode.h:123
@ MATCH_MGT
Definition: amlcode.h:422
@ MATCH_MGE
Definition: amlcode.h:421
@ MATCH_MTR
Definition: amlcode.h:417
@ MATCH_MEQ
Definition: amlcode.h:418
@ MATCH_MLT
Definition: amlcode.h:420
@ MATCH_MLE
Definition: amlcode.h:419
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
ACPI_STATUS AcpiExDoLogicalOp(UINT16 Opcode, ACPI_OPERAND_OBJECT *Operand0, ACPI_OPERAND_OBJECT *Operand1, BOOLEAN *LogicalResult)
Definition: exmisc.c:335
Status
Definition: gdiplustypes.h:25
#define BOOLEAN
Definition: pedump.c:73

Referenced by AcpiExOpcode_6A_0T_1R().

◆ AcpiExOpcode_6A_0T_1R()

ACPI_STATUS AcpiExOpcode_6A_0T_1R ( ACPI_WALK_STATE WalkState)

Definition at line 221 of file exoparg6.c.

223{
224 ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
225 ACPI_OPERAND_OBJECT *ReturnDesc = NULL;
228 ACPI_OPERAND_OBJECT *ThisElement;
229
230
231 ACPI_FUNCTION_TRACE_STR (ExOpcode_6A_0T_1R,
232 AcpiPsGetOpcodeName (WalkState->Opcode));
233
234
235 switch (WalkState->Opcode)
236 {
237 case AML_MATCH_OP:
238 /*
239 * Match (SearchPkg[0], MatchOp1[1], MatchObj1[2],
240 * MatchOp2[3], MatchObj2[4], StartIndex[5])
241 */
242
243 /* Validate both Match Term Operators (MTR, MEQ, etc.) */
244
245 if ((Operand[1]->Integer.Value > MAX_MATCH_OPERATOR) ||
246 (Operand[3]->Integer.Value > MAX_MATCH_OPERATOR))
247 {
248 ACPI_ERROR ((AE_INFO, "Match operator out of range"));
250 goto Cleanup;
251 }
252
253 /* Get the package StartIndex, validate against the package length */
254
255 Index = Operand[5]->Integer.Value;
256 if (Index >= Operand[0]->Package.Count)
257 {
259 "Index (0x%8.8X%8.8X) beyond package end (0x%X)",
260 ACPI_FORMAT_UINT64 (Index), Operand[0]->Package.Count));
262 goto Cleanup;
263 }
264
265 /* Create an integer for the return value */
266 /* Default return value is ACPI_UINT64_MAX if no match found */
267
269 if (!ReturnDesc)
270 {
272 goto Cleanup;
273
274 }
275
276 /*
277 * Examine each element until a match is found. Both match conditions
278 * must be satisfied for a match to occur. Within the loop,
279 * "continue" signifies that the current element does not match
280 * and the next should be examined.
281 *
282 * Upon finding a match, the loop will terminate via "break" at
283 * the bottom. If it terminates "normally", MatchValue will be
284 * ACPI_UINT64_MAX (Ones) (its initial value) indicating that no
285 * match was found.
286 */
287 for ( ; Index < Operand[0]->Package.Count; Index++)
288 {
289 /* Get the current package element */
290
291 ThisElement = Operand[0]->Package.Elements[Index];
292
293 /* Treat any uninitialized (NULL) elements as non-matching */
294
295 if (!ThisElement)
296 {
297 continue;
298 }
299
300 /*
301 * Both match conditions must be satisfied. Execution of a continue
302 * (proceed to next iteration of enclosing for loop) signifies a
303 * non-match.
304 */
305 if (!AcpiExDoMatch ((UINT32) Operand[1]->Integer.Value,
306 ThisElement, Operand[2]))
307 {
308 continue;
309 }
310
311 if (!AcpiExDoMatch ((UINT32) Operand[3]->Integer.Value,
312 ThisElement, Operand[4]))
313 {
314 continue;
315 }
316
317 /* Match found: Index is the return value */
318
319 ReturnDesc->Integer.Value = Index;
320 break;
321 }
322 break;
323
325
326 Status = AcpiExLoadTableOp (WalkState, &ReturnDesc);
327 break;
328
329 default:
330
331 ACPI_ERROR ((AE_INFO, "Unknown AML opcode 0x%X",
332 WalkState->Opcode));
333
335 goto Cleanup;
336 }
337
338
339Cleanup:
340
341 /* Delete return object on error */
342
343 if (ACPI_FAILURE (Status))
344 {
345 AcpiUtRemoveReference (ReturnDesc);
346 }
347
348 /* Save return object on success */
349
350 else
351 {
352 WalkState->ResultObj = ReturnDesc;
353 }
354
356}
unsigned long long UINT64
unsigned int UINT32
#define AE_AML_BAD_OPCODE
Definition: acexcep.h:180
#define AE_AML_OPERAND_VALUE
Definition: acexcep.h:183
#define AE_AML_PACKAGE_LIMIT
Definition: acexcep.h:190
#define AE_NO_MEMORY
Definition: acexcep.h:112
#define AE_OK
Definition: acexcep.h:97
#define ACPI_FORMAT_UINT64(i)
Definition: acmacros.h:71
#define ACPI_FUNCTION_TRACE_STR(a, b)
Definition: acoutput.h:483
#define return_ACPI_STATUS(s)
Definition: acoutput.h:496
#define ACPI_ERROR(plist)
Definition: acoutput.h:240
#define AE_INFO
Definition: acoutput.h:230
const char * AcpiPsGetOpcodeName(UINT16 Opcode)
Definition: psopinfo.c:169
#define ACPI_UINT64_MAX
Definition: actypes.h:67
void AcpiUtRemoveReference(ACPI_OPERAND_OBJECT *Object)
Definition: utdelete.c:790
ACPI_OPERAND_OBJECT * AcpiUtCreateIntegerObject(UINT64 Value)
Definition: utobject.c:223
#define MAX_MATCH_OPERATOR
Definition: amlcode.h:426
#define AML_LOAD_TABLE_OP
Definition: amlcode.h:164
#define AML_MATCH_OP
Definition: amlcode.h:113
#define NULL
Definition: types.h:112
static const WCHAR Cleanup[]
Definition: register.c:80
ACPI_STATUS AcpiExLoadTableOp(ACPI_WALK_STATE *WalkState, ACPI_OPERAND_OBJECT **ReturnDesc)
Definition: exconfig.c:129
static BOOLEAN AcpiExDoMatch(UINT32 MatchOp, ACPI_OPERAND_OBJECT *PackageObj, ACPI_OPERAND_OBJECT *MatchObj)
Definition: exoparg6.c:103
union acpi_operand_object ** Elements
Definition: acobject.h:161
union acpi_operand_object * Operands[ACPI_OBJ_NUM_OPERANDS+1]
Definition: acstruct.h:105
union acpi_operand_object * ResultObj
Definition: acstruct.h:121
UINT16 Opcode
Definition: acstruct.h:78
ACPI_OBJECT_INTEGER Integer
Definition: acobject.h:520
ACPI_OBJECT_PACKAGE Package
Definition: acobject.h:523
_In_ WDFCOLLECTION _In_ ULONG Index