ReactOS 0.4.15-dev-7842-g558ab78
psutils.c
Go to the documentation of this file.
1/******************************************************************************
2 *
3 * Module Name: psutils - Parser miscellaneous utilities (Parser only)
4 *
5 *****************************************************************************/
6
7/*
8 * Copyright (C) 2000 - 2022, Intel Corp.
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
44#include "acpi.h"
45#include "accommon.h"
46#include "acparser.h"
47#include "amlcode.h"
48#include "acconvert.h"
49
50#define _COMPONENT ACPI_PARSER
51 ACPI_MODULE_NAME ("psutils")
52
53
54/*******************************************************************************
55 *
56 * FUNCTION: AcpiPsCreateScopeOp
57 *
58 * PARAMETERS: None
59 *
60 * RETURN: A new Scope object, null on failure
61 *
62 * DESCRIPTION: Create a Scope and associated namepath op with the root name
63 *
64 ******************************************************************************/
65
68 UINT8 *Aml)
69{
70 ACPI_PARSE_OBJECT *ScopeOp;
71
72
73 ScopeOp = AcpiPsAllocOp (AML_SCOPE_OP, Aml);
74 if (!ScopeOp)
75 {
76 return (NULL);
77 }
78
79 ScopeOp->Named.Name = ACPI_ROOT_NAME;
80 return (ScopeOp);
81}
82
83
84/*******************************************************************************
85 *
86 * FUNCTION: AcpiPsInitOp
87 *
88 * PARAMETERS: Op - A newly allocated Op object
89 * Opcode - Opcode to store in the Op
90 *
91 * RETURN: None
92 *
93 * DESCRIPTION: Initialize a parse (Op) object
94 *
95 ******************************************************************************/
96
97void
101{
103
104
105 Op->Common.DescriptorType = ACPI_DESC_TYPE_PARSER;
106 Op->Common.AmlOpcode = Opcode;
107
108 ACPI_DISASM_ONLY_MEMBERS (AcpiUtSafeStrncpy (Op->Common.AmlOpName,
110 sizeof (Op->Common.AmlOpName)));
111}
112
113
114/*******************************************************************************
115 *
116 * FUNCTION: AcpiPsAllocOp
117 *
118 * PARAMETERS: Opcode - Opcode that will be stored in the new Op
119 * Aml - Address of the opcode
120 *
121 * RETURN: Pointer to the new Op, null on failure
122 *
123 * DESCRIPTION: Allocate an acpi_op, choose op type (and thus size) based on
124 * opcode. A cache of opcodes is available for the pure
125 * GENERIC_OP, since this is by far the most commonly used.
126 *
127 ******************************************************************************/
128
132 UINT8 *Aml)
133{
135 const ACPI_OPCODE_INFO *OpInfo;
137
138
140
141
142 OpInfo = AcpiPsGetOpcodeInfo (Opcode);
143
144 /* Determine type of ParseOp required */
145
146 if (OpInfo->Flags & AML_DEFER)
147 {
149 }
150 else if (OpInfo->Flags & AML_NAMED)
151 {
153 }
154 else if (Opcode == AML_INT_BYTELIST_OP)
155 {
157 }
158
159 /* Allocate the minimum required size object */
160
162 {
163 /* The generic op (default) is by far the most common (16 to 1) */
164
165 Op = AcpiOsAcquireObject (AcpiGbl_PsNodeCache);
166 }
167 else
168 {
169 /* Extended parseop */
170
171 Op = AcpiOsAcquireObject (AcpiGbl_PsNodeExtCache);
172 }
173
174 /* Initialize the Op */
175
176 if (Op)
177 {
178 AcpiPsInitOp (Op, Opcode);
179 Op->Common.Aml = Aml;
180 Op->Common.Flags = Flags;
182
183 if (Opcode == AML_SCOPE_OP)
184 {
185 AcpiGbl_CurrentScope = Op;
186 }
187
188 if (AcpiGbl_CaptureComments)
189 {
191 }
192 }
193
194 return (Op);
195}
196
197
198/*******************************************************************************
199 *
200 * FUNCTION: AcpiPsFreeOp
201 *
202 * PARAMETERS: Op - Op to be freed
203 *
204 * RETURN: None.
205 *
206 * DESCRIPTION: Free an Op object. Either put it on the GENERIC_OP cache list
207 * or actually free it.
208 *
209 ******************************************************************************/
210
211void
214{
215 ACPI_FUNCTION_NAME (PsFreeOp);
216
217
219 if (Op->Common.AmlOpcode == AML_INT_RETURN_VALUE_OP)
220 {
222 "Free retval op: %p\n", Op));
223 }
224
225 if (Op->Common.Flags & ACPI_PARSEOP_GENERIC)
226 {
227 (void) AcpiOsReleaseObject (AcpiGbl_PsNodeCache, Op);
228 }
229 else
230 {
231 (void) AcpiOsReleaseObject (AcpiGbl_PsNodeExtCache, Op);
232 }
233}
234
235
236/*******************************************************************************
237 *
238 * FUNCTION: Utility functions
239 *
240 * DESCRIPTION: Low level character and object functions
241 *
242 ******************************************************************************/
243
244
245/*
246 * Is "c" a namestring lead character?
247 */
250 UINT32 c)
251{
252 return ((BOOLEAN) (c == '_' || (c >= 'A' && c <= 'Z')));
253}
254
255
256/*
257 * Get op's name (4-byte name segment) or 0 if unnamed
258 */
259UINT32
262{
263
264 /* The "generic" object has no name associated with it */
265
266 if (Op->Common.Flags & ACPI_PARSEOP_GENERIC)
267 {
268 return (0);
269 }
270
271 /* Only the "Extended" parse objects have a name */
272
273 return (Op->Named.Name);
274}
275
276
277/*
278 * Set op's name
279 */
280void
283 UINT32 name)
284{
285
286 /* The "generic" object has no name associated with it */
287
288 if (Op->Common.Flags & ACPI_PARSEOP_GENERIC)
289 {
290 return;
291 }
292
293 Op->Named.Name = name;
294}
unsigned short UINT16
unsigned char BOOLEAN
unsigned char UINT8
unsigned int UINT32
#define ACPI_PARSEOP_NAMED_OBJECT
Definition: aclocal.h:1118
#define ACPI_PARSEOP_GENERIC
Definition: aclocal.h:1117
#define ACPI_PARSEOP_BYTELIST
Definition: aclocal.h:1120
#define ACPI_DISASM_ONLY_MEMBERS(a)
Definition: aclocal.h:907
#define ACPI_PARSEOP_DEFERRED
Definition: aclocal.h:1119
#define ASL_CV_TRANSFER_COMMENTS(a)
Definition: acmacros.h:527
#define ASL_CV_CLEAR_OP_COMMENTS(a)
Definition: acmacros.h:531
#define ACPI_ROOT_NAME
Definition: acnames.h:92
#define ACPI_DESC_TYPE_PARSER
Definition: acobject.h:575
#define ACPI_DEBUG_PRINT(pl)
Definition: acoutput.h:475
#define ACPI_MODULE_NAME(Name)
Definition: acoutput.h:216
#define ACPI_DB_ALLOCATIONS
Definition: acoutput.h:175
#define ACPI_FUNCTION_ENTRY()
Definition: acoutput.h:484
#define ACPI_FUNCTION_NAME(a)
Definition: acoutput.h:479
const ACPI_OPCODE_INFO * AcpiPsGetOpcodeInfo(UINT16 Opcode)
Definition: psopinfo.c:72
ACPI_STATUS AcpiOsReleaseObject(ACPI_CACHE_T *Cache, void *Object)
void * AcpiOsAcquireObject(ACPI_CACHE_T *Cache)
ACPI_BUFFER *RetBuffer ACPI_BUFFER *RetBuffer char ACPI_WALK_RESOURCE_CALLBACK void *Context ACPI_BUFFER *RetBuffer UINT16 ACPI_RESOURCE **ResourcePtr ACPI_GENERIC_ADDRESS *Reg UINT32 *ReturnValue UINT8 UINT8 *Slp_TypB ACPI_PHYSICAL_ADDRESS PhysicalAddress64 UINT32 UINT32 *TimeElapsed UINT32 ACPI_STATUS const char UINT32 ACPI_STATUS const char UINT32 const char const char UINT32 const char BOOLEAN UINT8 * Aml
Definition: acpixf.h:1302
#define AML_INT_BYTELIST_OP
Definition: amlcode.h:209
#define AML_SCOPE_OP
Definition: amlcode.h:60
#define AML_DEFER
Definition: amlcode.h:322
#define AML_INT_RETURN_VALUE_OP
Definition: amlcode.h:211
#define AML_NAMED
Definition: amlcode.h:323
#define NULL
Definition: types.h:112
const GLubyte * c
Definition: glext.h:8905
_In_ PVOID _In_ ULONG Opcode
Definition: hubbusif.h:331
void AcpiPsSetName(ACPI_PARSE_OBJECT *Op, UINT32 name)
Definition: psutils.c:281
BOOLEAN AcpiPsIsLeadingChar(UINT32 c)
Definition: psutils.c:249
UINT32 AcpiPsGetName(ACPI_PARSE_OBJECT *Op)
Definition: psutils.c:260
void AcpiPsFreeOp(ACPI_PARSE_OBJECT *Op)
Definition: psutils.c:212
ACPI_PARSE_OBJECT * AcpiPsCreateScopeOp(UINT8 *Aml)
Definition: psutils.c:67
ACPI_PARSE_OBJECT * AcpiPsAllocOp(UINT16 Opcode, UINT8 *Aml)
Definition: psutils.c:130
void AcpiPsInitOp(ACPI_PARSE_OBJECT *Op, UINT16 Opcode)
Definition: psutils.c:98
UINT16 Flags
Definition: aclocal.h:873
Definition: name.c:39
ACPI_PARSE_OBJ_NAMED Named
Definition: aclocal.h:1079
ACPI_PARSE_OBJ_COMMON Common
Definition: aclocal.h:1078
_Must_inspect_result_ _In_ ULONG Flags
Definition: wsk.h:170