1 /******************************************************************************
3 * Module Name: acparser.h - AML Parser subcomponent prototypes and defines
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 #ifndef __ACPARSER_H__
46 #define __ACPARSER_H__
49 #define OP_HAS_RETURN_VALUE 1
51 /* variable # arguments */
53 #define ACPI_VAR_ARGS ACPI_UINT32_MAX
56 #define ACPI_PARSE_DELETE_TREE 0x0001
57 #define ACPI_PARSE_NO_TREE_DELETE 0x0000
58 #define ACPI_PARSE_TREE_MASK 0x0001
60 #define ACPI_PARSE_LOAD_PASS1 0x0010
61 #define ACPI_PARSE_LOAD_PASS2 0x0020
62 #define ACPI_PARSE_EXECUTE 0x0030
63 #define ACPI_PARSE_MODE_MASK 0x0030
65 #define ACPI_PARSE_DEFERRED_OP 0x0100
67 /* Parser external interfaces */
76 struct acpi_parameter_info *info);
79 /******************************************************************************
83 *****************************************************************************/
86 /* psargs - Parse AML opcode arguments */
89 acpi_ps_get_next_package_end (
90 struct acpi_parse_state *parser_state);
93 acpi_ps_get_next_package_length (
94 struct acpi_parse_state *parser_state);
97 acpi_ps_get_next_namestring (
98 struct acpi_parse_state *parser_state);
101 acpi_ps_get_next_simple_arg (
102 struct acpi_parse_state *parser_state,
104 union acpi_parse_object *arg);
107 acpi_ps_get_next_namepath (
108 struct acpi_walk_state *walk_state,
109 struct acpi_parse_state *parser_state,
110 union acpi_parse_object *arg,
113 union acpi_parse_object *
114 acpi_ps_get_next_field (
115 struct acpi_parse_state *parser_state);
118 acpi_ps_get_next_arg (
119 struct acpi_walk_state *walk_state,
120 struct acpi_parse_state *parser_state,
122 union acpi_parse_object **return_arg);
127 union acpi_parse_object *
129 union acpi_parse_object *scope,
133 union acpi_parse_object*
135 union acpi_parse_object *op);
138 /* psopcode - AML Opcode information */
140 const struct acpi_opcode_info *
141 acpi_ps_get_opcode_info (
145 acpi_ps_get_opcode_name (
149 /* psparse - top level parsing routines */
152 acpi_ps_get_opcode_size (
156 acpi_ps_complete_this_op (
157 struct acpi_walk_state *walk_state,
158 union acpi_parse_object *op);
161 acpi_ps_next_parse_state (
162 struct acpi_walk_state *walk_state,
163 union acpi_parse_object *op,
164 acpi_status callback_status);
167 acpi_ps_find_object (
168 struct acpi_walk_state *walk_state,
169 union acpi_parse_object **out_op);
172 acpi_ps_delete_parse_tree (
173 union acpi_parse_object *root);
177 struct acpi_walk_state *walk_state);
181 struct acpi_walk_state *walk_state);
184 acpi_ps_parse_table (
187 acpi_parse_downwards descending_callback,
188 acpi_parse_upwards ascending_callback,
189 union acpi_parse_object **root_object);
192 acpi_ps_peek_opcode (
193 struct acpi_parse_state *state);
196 /* psscope - Scope stack management routines */
201 struct acpi_parse_state *parser_state,
202 union acpi_parse_object *root);
204 union acpi_parse_object *
205 acpi_ps_get_parent_scope (
206 struct acpi_parse_state *state);
209 acpi_ps_has_completed_scope (
210 struct acpi_parse_state *parser_state);
214 struct acpi_parse_state *parser_state,
215 union acpi_parse_object **op,
221 struct acpi_parse_state *parser_state,
222 union acpi_parse_object *op,
227 acpi_ps_cleanup_scope (
228 struct acpi_parse_state *state);
231 /* pstree - parse tree manipulation routines */
235 union acpi_parse_object *op,
236 union acpi_parse_object *arg);
238 union acpi_parse_object*
240 union acpi_parse_object *scope,
245 union acpi_parse_object *
247 union acpi_parse_object *op,
250 #ifdef ACPI_FUTURE_USAGE
251 union acpi_parse_object *
253 union acpi_parse_object *op);
255 union acpi_parse_object *
256 acpi_ps_get_depth_next (
257 union acpi_parse_object *origin,
258 union acpi_parse_object *op);
259 #endif /* ACPI_FUTURE_USAGE */
262 /* pswalk - parse tree walk routines */
265 acpi_ps_walk_parsed_aml (
266 union acpi_parse_object *start_op,
267 union acpi_parse_object *end_op,
268 union acpi_operand_object *mth_desc,
269 struct acpi_namespace_node *start_node,
270 union acpi_operand_object **params,
271 union acpi_operand_object **caller_return_desc,
272 acpi_owner_id owner_id,
273 acpi_parse_downwards descending_callback,
274 acpi_parse_upwards ascending_callback);
277 acpi_ps_get_next_walk_op (
278 struct acpi_walk_state *walk_state,
279 union acpi_parse_object *op,
280 acpi_parse_upwards ascending_callback);
283 acpi_ps_delete_completed_op (
284 struct acpi_walk_state *walk_state);
287 /* psutils - parser utilities */
289 union acpi_parse_object *
290 acpi_ps_create_scope_op (
295 union acpi_parse_object *op,
298 union acpi_parse_object *
304 union acpi_parse_object *op);
306 #ifdef ACPI_ENABLE_OBJECT_CACHE
308 acpi_ps_delete_parse_cache (
313 acpi_ps_is_leading_char (
317 acpi_ps_is_prefix_char (
320 #ifdef ACPI_FUTURE_USAGE
323 union acpi_parse_object *op);
328 union acpi_parse_object *op,
332 /* psdump - display parser tree */
335 acpi_ps_sprint_path (
338 union acpi_parse_object *op);
344 union acpi_parse_object *op);
348 union acpi_parse_object *op);
351 #endif /* __ACPARSER_H__ */