1 /******************************************************************************
3 * Module Name: psutils - Parser miscellaneous utilities (Parser only)
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2005, R. Byron Moore
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
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 MERCHANTIBILITY 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.
45 #include <acpi/acpi.h>
46 #include <acpi/acparser.h>
47 #include <acpi/amlcode.h>
48 #include <acpi/acnamesp.h>
50 #define _COMPONENT ACPI_PARSER
51 ACPI_MODULE_NAME ("psutils")
54 /*******************************************************************************
56 * FUNCTION: acpi_ps_create_scope_op
62 * DESCRIPTION: Create a Scope and associated namepath op with the root name
64 ******************************************************************************/
66 union acpi_parse_object
*
67 acpi_ps_create_scope_op (
70 union acpi_parse_object
*scope_op
;
73 scope_op
= acpi_ps_alloc_op (AML_SCOPE_OP
);
79 scope_op
->named
.name
= ACPI_ROOT_NAME
;
84 /*******************************************************************************
86 * FUNCTION: acpi_ps_init_op
88 * PARAMETERS: Op - A newly allocated Op object
89 * Opcode - Opcode to store in the Op
93 * DESCRIPTION: Allocate an acpi_op, choose op type (and thus size) based on
96 ******************************************************************************/
100 union acpi_parse_object
*op
,
103 ACPI_FUNCTION_ENTRY ();
106 op
->common
.data_type
= ACPI_DESC_TYPE_PARSER
;
107 op
->common
.aml_opcode
= opcode
;
109 ACPI_DISASM_ONLY_MEMBERS (ACPI_STRNCPY (op
->common
.aml_op_name
,
110 (acpi_ps_get_opcode_info (opcode
))->name
, sizeof (op
->common
.aml_op_name
)));
114 /*******************************************************************************
116 * FUNCTION: acpi_ps_alloc_op
118 * PARAMETERS: Opcode - Opcode that will be stored in the new Op
120 * RETURN: Pointer to the new Op.
122 * DESCRIPTION: Allocate an acpi_op, choose op type (and thus size) based on
123 * opcode. A cache of opcodes is available for the pure
124 * GENERIC_OP, since this is by far the most commonly used.
126 ******************************************************************************/
128 union acpi_parse_object
*
132 union acpi_parse_object
*op
;
133 const struct acpi_opcode_info
*op_info
;
134 u8 flags
= ACPI_PARSEOP_GENERIC
;
137 ACPI_FUNCTION_ENTRY ();
140 op_info
= acpi_ps_get_opcode_info (opcode
);
142 /* Determine type of parse_op required */
144 if (op_info
->flags
& AML_DEFER
) {
145 flags
= ACPI_PARSEOP_DEFERRED
;
147 else if (op_info
->flags
& AML_NAMED
) {
148 flags
= ACPI_PARSEOP_NAMED
;
150 else if (opcode
== AML_INT_BYTELIST_OP
) {
151 flags
= ACPI_PARSEOP_BYTELIST
;
154 /* Allocate the minimum required size object */
156 if (flags
== ACPI_PARSEOP_GENERIC
) {
157 /* The generic op (default) is by far the most common (16 to 1) */
159 op
= acpi_ut_acquire_from_cache (ACPI_MEM_LIST_PSNODE
);
162 /* Extended parseop */
164 op
= acpi_ut_acquire_from_cache (ACPI_MEM_LIST_PSNODE_EXT
);
167 /* Initialize the Op */
170 acpi_ps_init_op (op
, opcode
);
171 op
->common
.flags
= flags
;
178 /*******************************************************************************
180 * FUNCTION: acpi_ps_free_op
182 * PARAMETERS: Op - Op to be freed
186 * DESCRIPTION: Free an Op object. Either put it on the GENERIC_OP cache list
187 * or actually free it.
189 ******************************************************************************/
193 union acpi_parse_object
*op
)
195 ACPI_FUNCTION_NAME ("ps_free_op");
198 if (op
->common
.aml_opcode
== AML_INT_RETURN_VALUE_OP
) {
199 ACPI_DEBUG_PRINT ((ACPI_DB_ALLOCATIONS
, "Free retval op: %p\n", op
));
202 if (op
->common
.flags
& ACPI_PARSEOP_GENERIC
) {
203 acpi_ut_release_to_cache (ACPI_MEM_LIST_PSNODE
, op
);
206 acpi_ut_release_to_cache (ACPI_MEM_LIST_PSNODE_EXT
, op
);
211 #ifdef ACPI_ENABLE_OBJECT_CACHE
212 /*******************************************************************************
214 * FUNCTION: acpi_ps_delete_parse_cache
220 * DESCRIPTION: Free all objects that are on the parse cache list.
222 ******************************************************************************/
225 acpi_ps_delete_parse_cache (
228 ACPI_FUNCTION_TRACE ("ps_delete_parse_cache");
231 acpi_ut_delete_generic_cache (ACPI_MEM_LIST_PSNODE
);
232 acpi_ut_delete_generic_cache (ACPI_MEM_LIST_PSNODE_EXT
);
238 /*******************************************************************************
240 * FUNCTION: Utility functions
242 * DESCRIPTION: Low level character and object functions
244 ******************************************************************************/
248 * Is "c" a namestring lead character?
251 acpi_ps_is_leading_char (
254 return ((u8
) (c
== '_' || (c
>= 'A' && c
<= 'Z')));
259 * Is "c" a namestring prefix character?
262 acpi_ps_is_prefix_char (
265 return ((u8
) (c
== '\\' || c
== '^'));
270 * Get op's name (4-byte name segment) or 0 if unnamed
272 #ifdef ACPI_FUTURE_USAGE
275 union acpi_parse_object
*op
)
279 /* The "generic" object has no name associated with it */
281 if (op
->common
.flags
& ACPI_PARSEOP_GENERIC
) {
285 /* Only the "Extended" parse objects have a name */
287 return (op
->named
.name
);
289 #endif /* ACPI_FUTURE_USAGE */
297 union acpi_parse_object
*op
,
301 /* The "generic" object has no name associated with it */
303 if (op
->common
.flags
& ACPI_PARSEOP_GENERIC
) {
307 op
->named
.name
= name
;