asloffset.c revision 1.1 1 1.1 christos /******************************************************************************
2 1.1 christos *
3 1.1 christos * Module Name: asloffset - Generate a C "offset table" for BIOS use.
4 1.1 christos *
5 1.1 christos *****************************************************************************/
6 1.1 christos
7 1.1 christos /*
8 1.1 christos * Copyright (C) 2000 - 2013, Intel Corp.
9 1.1 christos * All rights reserved.
10 1.1 christos *
11 1.1 christos * Redistribution and use in source and binary forms, with or without
12 1.1 christos * modification, are permitted provided that the following conditions
13 1.1 christos * are met:
14 1.1 christos * 1. Redistributions of source code must retain the above copyright
15 1.1 christos * notice, this list of conditions, and the following disclaimer,
16 1.1 christos * without modification.
17 1.1 christos * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 1.1 christos * substantially similar to the "NO WARRANTY" disclaimer below
19 1.1 christos * ("Disclaimer") and any redistribution must be conditioned upon
20 1.1 christos * including a substantially similar Disclaimer requirement for further
21 1.1 christos * binary redistribution.
22 1.1 christos * 3. Neither the names of the above-listed copyright holders nor the names
23 1.1 christos * of any contributors may be used to endorse or promote products derived
24 1.1 christos * from this software without specific prior written permission.
25 1.1 christos *
26 1.1 christos * Alternatively, this software may be distributed under the terms of the
27 1.1 christos * GNU General Public License ("GPL") version 2 as published by the Free
28 1.1 christos * Software Foundation.
29 1.1 christos *
30 1.1 christos * NO WARRANTY
31 1.1 christos * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 1.1 christos * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 1.1 christos * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 1.1 christos * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 1.1 christos * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 1.1 christos * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 1.1 christos * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 1.1 christos * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 1.1 christos * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 1.1 christos * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 1.1 christos * POSSIBILITY OF SUCH DAMAGES.
42 1.1 christos */
43 1.1 christos
44 1.1 christos #include "aslcompiler.h"
45 1.1 christos #include "aslcompiler.y.h"
46 1.1 christos #include "amlcode.h"
47 1.1 christos #include "acnamesp.h"
48 1.1 christos
49 1.1 christos
50 1.1 christos #define _COMPONENT ACPI_COMPILER
51 1.1 christos ACPI_MODULE_NAME ("asloffset")
52 1.1 christos
53 1.1 christos
54 1.1 christos /* Local prototypes */
55 1.1 christos
56 1.1 christos static void
57 1.1 christos LsEmitOffsetTableEntry (
58 1.1 christos UINT32 FileId,
59 1.1 christos ACPI_NAMESPACE_NODE *Node,
60 1.1 christos UINT32 NamepathOffset,
61 1.1 christos UINT32 Offset,
62 1.1 christos char *OpName,
63 1.1 christos UINT64 Value,
64 1.1 christos UINT8 AmlOpcode,
65 1.1 christos UINT16 ParentOpcode);
66 1.1 christos
67 1.1 christos
68 1.1 christos /*******************************************************************************
69 1.1 christos *
70 1.1 christos * FUNCTION: LsAmlOffsetWalk
71 1.1 christos *
72 1.1 christos * PARAMETERS: ASL_WALK_CALLBACK
73 1.1 christos *
74 1.1 christos * RETURN: Status
75 1.1 christos *
76 1.1 christos * DESCRIPTION: Process one node during a offset table file generation.
77 1.1 christos *
78 1.1 christos * Three types of objects are currently emitted to the offset table:
79 1.1 christos * 1) Tagged (named) resource descriptors
80 1.1 christos * 2) Named integer objects with constant integer values
81 1.1 christos * 3) Named package objects
82 1.1 christos * 4) Operation Regions that have constant Offset (address) parameters
83 1.1 christos * 5) Control methods
84 1.1 christos *
85 1.1 christos * The offset table allows the BIOS to dynamically update the values of these
86 1.1 christos * objects at boot time.
87 1.1 christos *
88 1.1 christos ******************************************************************************/
89 1.1 christos
90 1.1 christos ACPI_STATUS
91 1.1 christos LsAmlOffsetWalk (
92 1.1 christos ACPI_PARSE_OBJECT *Op,
93 1.1 christos UINT32 Level,
94 1.1 christos void *Context)
95 1.1 christos {
96 1.1 christos UINT32 FileId = (UINT32) ACPI_TO_INTEGER (Context);
97 1.1 christos ACPI_NAMESPACE_NODE *Node;
98 1.1 christos UINT32 Length;
99 1.1 christos UINT32 NamepathOffset;
100 1.1 christos UINT32 DataOffset;
101 1.1 christos ACPI_PARSE_OBJECT *NextOp;
102 1.1 christos
103 1.1 christos
104 1.1 christos /* Ignore actual data blocks for resource descriptors */
105 1.1 christos
106 1.1 christos if (Op->Asl.CompileFlags & NODE_IS_RESOURCE_DATA)
107 1.1 christos {
108 1.1 christos return (AE_OK); /* Do NOT update the global AML offset */
109 1.1 christos }
110 1.1 christos
111 1.1 christos /* We are only interested in named objects (have a namespace node) */
112 1.1 christos
113 1.1 christos Node = Op->Asl.Node;
114 1.1 christos if (!Node)
115 1.1 christos {
116 1.1 christos Gbl_CurrentAmlOffset += Op->Asl.FinalAmlLength;
117 1.1 christos return (AE_OK);
118 1.1 christos }
119 1.1 christos
120 1.1 christos /* Named resource descriptor (has a descriptor tag) */
121 1.1 christos
122 1.1 christos if ((Node->Type == ACPI_TYPE_LOCAL_RESOURCE) &&
123 1.1 christos (Op->Asl.CompileFlags & NODE_IS_RESOURCE_DESC))
124 1.1 christos {
125 1.1 christos LsEmitOffsetTableEntry (FileId, Node, 0, Gbl_CurrentAmlOffset,
126 1.1 christos Op->Asl.ParseOpName, 0, Op->Asl.Extra, AML_BUFFER_OP);
127 1.1 christos
128 1.1 christos Gbl_CurrentAmlOffset += Op->Asl.FinalAmlLength;
129 1.1 christos return (AE_OK);
130 1.1 christos }
131 1.1 christos
132 1.1 christos switch (Op->Asl.AmlOpcode)
133 1.1 christos {
134 1.1 christos case AML_NAME_OP:
135 1.1 christos
136 1.1 christos /* Named object -- Name (NameString, DataRefObject) */
137 1.1 christos
138 1.1 christos if (!Op->Asl.Child)
139 1.1 christos {
140 1.1 christos FlPrintFile (FileId, "%s NO CHILD!\n", MsgBuffer);
141 1.1 christos return (AE_OK);
142 1.1 christos }
143 1.1 christos
144 1.1 christos Length = Op->Asl.FinalAmlLength;
145 1.1 christos NamepathOffset = Gbl_CurrentAmlOffset + Length;
146 1.1 christos
147 1.1 christos /* Get to the NameSeg/NamePath Op (and length of the name) */
148 1.1 christos
149 1.1 christos Op = Op->Asl.Child;
150 1.1 christos
151 1.1 christos /* Get offset of last nameseg and the actual data */
152 1.1 christos
153 1.1 christos NamepathOffset = Gbl_CurrentAmlOffset + Length +
154 1.1 christos (Op->Asl.FinalAmlLength - ACPI_NAME_SIZE);
155 1.1 christos
156 1.1 christos DataOffset = Gbl_CurrentAmlOffset + Length +
157 1.1 christos Op->Asl.FinalAmlLength;
158 1.1 christos
159 1.1 christos /* Get actual value associated with the name */
160 1.1 christos
161 1.1 christos Op = Op->Asl.Next;
162 1.1 christos switch (Op->Asl.AmlOpcode)
163 1.1 christos {
164 1.1 christos case AML_BYTE_OP:
165 1.1 christos case AML_WORD_OP:
166 1.1 christos case AML_DWORD_OP:
167 1.1 christos case AML_QWORD_OP:
168 1.1 christos
169 1.1 christos /* The +1 is to handle the integer size prefix (opcode) */
170 1.1 christos
171 1.1 christos LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, (DataOffset + 1),
172 1.1 christos Op->Asl.ParseOpName, Op->Asl.Value.Integer,
173 1.1 christos (UINT8) Op->Asl.AmlOpcode, AML_NAME_OP);
174 1.1 christos break;
175 1.1 christos
176 1.1 christos case AML_ONE_OP:
177 1.1 christos case AML_ONES_OP:
178 1.1 christos case AML_ZERO_OP:
179 1.1 christos
180 1.1 christos /* For these, offset will point to the opcode */
181 1.1 christos
182 1.1 christos LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, DataOffset,
183 1.1 christos Op->Asl.ParseOpName, Op->Asl.Value.Integer,
184 1.1 christos (UINT8) Op->Asl.AmlOpcode, AML_NAME_OP);
185 1.1 christos break;
186 1.1 christos
187 1.1 christos case AML_PACKAGE_OP:
188 1.1 christos case AML_VAR_PACKAGE_OP:
189 1.1 christos
190 1.1 christos /* Get the package element count */
191 1.1 christos
192 1.1 christos NextOp = Op->Asl.Child;
193 1.1 christos
194 1.1 christos LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, DataOffset,
195 1.1 christos Op->Asl.ParseOpName, NextOp->Asl.Value.Integer,
196 1.1 christos (UINT8) Op->Asl.AmlOpcode, AML_NAME_OP);
197 1.1 christos break;
198 1.1 christos
199 1.1 christos default:
200 1.1 christos break;
201 1.1 christos }
202 1.1 christos
203 1.1 christos Gbl_CurrentAmlOffset += Length;
204 1.1 christos return (AE_OK);
205 1.1 christos
206 1.1 christos case AML_REGION_OP:
207 1.1 christos
208 1.1 christos /* OperationRegion (NameString, RegionSpace, RegionOffset, RegionLength) */
209 1.1 christos
210 1.1 christos Length = Op->Asl.FinalAmlLength;
211 1.1 christos
212 1.1 christos /* Get the name/namepath node */
213 1.1 christos
214 1.1 christos NextOp = Op->Asl.Child;
215 1.1 christos
216 1.1 christos /* Get offset of last nameseg and the actual data */
217 1.1 christos
218 1.1 christos NamepathOffset = Gbl_CurrentAmlOffset + Length +
219 1.1 christos (NextOp->Asl.FinalAmlLength - ACPI_NAME_SIZE);
220 1.1 christos
221 1.1 christos DataOffset = Gbl_CurrentAmlOffset + Length +
222 1.1 christos (NextOp->Asl.FinalAmlLength + 1);
223 1.1 christos
224 1.1 christos /* Get the SpaceId node, then the Offset (address) node */
225 1.1 christos
226 1.1 christos NextOp = NextOp->Asl.Next;
227 1.1 christos NextOp = NextOp->Asl.Next;
228 1.1 christos
229 1.1 christos switch (NextOp->Asl.AmlOpcode)
230 1.1 christos {
231 1.1 christos /*
232 1.1 christos * We are only interested in integer constants that can be changed
233 1.1 christos * at boot time. Note, the One/Ones/Zero opcodes are considered
234 1.1 christos * non-changeable, so we ignore them here.
235 1.1 christos */
236 1.1 christos case AML_BYTE_OP:
237 1.1 christos case AML_WORD_OP:
238 1.1 christos case AML_DWORD_OP:
239 1.1 christos case AML_QWORD_OP:
240 1.1 christos
241 1.1 christos LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, (DataOffset + 1),
242 1.1 christos Op->Asl.ParseOpName, NextOp->Asl.Value.Integer,
243 1.1 christos (UINT8) NextOp->Asl.AmlOpcode, AML_REGION_OP);
244 1.1 christos
245 1.1 christos Gbl_CurrentAmlOffset += Length;
246 1.1 christos return (AE_OK);
247 1.1 christos
248 1.1 christos default:
249 1.1 christos break;
250 1.1 christos }
251 1.1 christos break;
252 1.1 christos
253 1.1 christos case AML_METHOD_OP:
254 1.1 christos
255 1.1 christos /* Method (Namepath, ...) */
256 1.1 christos
257 1.1 christos Length = Op->Asl.FinalAmlLength;
258 1.1 christos
259 1.1 christos /* Get the NameSeg/NamePath Op */
260 1.1 christos
261 1.1 christos NextOp = Op->Asl.Child;
262 1.1 christos
263 1.1 christos /* Get offset of last nameseg and the actual data (flags byte) */
264 1.1 christos
265 1.1 christos NamepathOffset = Gbl_CurrentAmlOffset + Length +
266 1.1 christos (NextOp->Asl.FinalAmlLength - ACPI_NAME_SIZE);
267 1.1 christos
268 1.1 christos DataOffset = Gbl_CurrentAmlOffset + Length +
269 1.1 christos NextOp->Asl.FinalAmlLength;
270 1.1 christos
271 1.1 christos /* Get the flags byte Op */
272 1.1 christos
273 1.1 christos NextOp = NextOp->Asl.Next;
274 1.1 christos
275 1.1 christos LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, DataOffset,
276 1.1 christos Op->Asl.ParseOpName, NextOp->Asl.Value.Integer,
277 1.1 christos (UINT8) Op->Asl.AmlOpcode, AML_METHOD_OP);
278 1.1 christos break;
279 1.1 christos
280 1.1 christos case AML_PROCESSOR_OP:
281 1.1 christos
282 1.1 christos /* Processor (Namepath, ProcessorId, Address, Length) */
283 1.1 christos
284 1.1 christos Length = Op->Asl.FinalAmlLength;
285 1.1 christos NextOp = Op->Asl.Child; /* Get Namepath */
286 1.1 christos
287 1.1 christos /* Get offset of last nameseg and the actual data (PBlock address) */
288 1.1 christos
289 1.1 christos NamepathOffset = Gbl_CurrentAmlOffset + Length +
290 1.1 christos (NextOp->Asl.FinalAmlLength - ACPI_NAME_SIZE);
291 1.1 christos
292 1.1 christos DataOffset = Gbl_CurrentAmlOffset + Length +
293 1.1 christos (NextOp->Asl.FinalAmlLength + 1);
294 1.1 christos
295 1.1 christos NextOp = NextOp->Asl.Next; /* Get ProcessorID (BYTE) */
296 1.1 christos NextOp = NextOp->Asl.Next; /* Get Address (DWORD) */
297 1.1 christos
298 1.1 christos LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, DataOffset,
299 1.1 christos Op->Asl.ParseOpName, NextOp->Asl.Value.Integer,
300 1.1 christos (UINT8) AML_DWORD_OP, AML_PROCESSOR_OP);
301 1.1 christos break;
302 1.1 christos
303 1.1 christos case AML_DEVICE_OP:
304 1.1 christos case AML_SCOPE_OP:
305 1.1 christos case AML_THERMAL_ZONE_OP:
306 1.1 christos
307 1.1 christos /* Device/Scope/ThermalZone (Namepath) */
308 1.1 christos
309 1.1 christos Length = Op->Asl.FinalAmlLength;
310 1.1 christos NextOp = Op->Asl.Child; /* Get Namepath */
311 1.1 christos
312 1.1 christos /* Get offset of last nameseg */
313 1.1 christos
314 1.1 christos NamepathOffset = Gbl_CurrentAmlOffset + Length +
315 1.1 christos (NextOp->Asl.FinalAmlLength - ACPI_NAME_SIZE);
316 1.1 christos
317 1.1 christos LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, 0,
318 1.1 christos Op->Asl.ParseOpName, 0, (UINT8) 0, Op->Asl.AmlOpcode);
319 1.1 christos break;
320 1.1 christos
321 1.1 christos default:
322 1.1 christos break;
323 1.1 christos }
324 1.1 christos
325 1.1 christos Gbl_CurrentAmlOffset += Op->Asl.FinalAmlLength;
326 1.1 christos return (AE_OK);
327 1.1 christos }
328 1.1 christos
329 1.1 christos
330 1.1 christos /*******************************************************************************
331 1.1 christos *
332 1.1 christos * FUNCTION: LsEmitOffsetTableEntry
333 1.1 christos *
334 1.1 christos * PARAMETERS: FileId - ID of current listing file
335 1.1 christos * Node - Namespace node associated with the name
336 1.1 christos * Offset - Offset of the value within the AML table
337 1.1 christos * OpName - Name of the AML opcode
338 1.1 christos * Value - Current value of the AML field
339 1.1 christos * AmlOpcode - Opcode associated with the field
340 1.1 christos * ObjectType - ACPI object type
341 1.1 christos *
342 1.1 christos * RETURN: None
343 1.1 christos *
344 1.1 christos * DESCRIPTION: Emit a line of the offset table (-so option)
345 1.1 christos *
346 1.1 christos ******************************************************************************/
347 1.1 christos
348 1.1 christos static void
349 1.1 christos LsEmitOffsetTableEntry (
350 1.1 christos UINT32 FileId,
351 1.1 christos ACPI_NAMESPACE_NODE *Node,
352 1.1 christos UINT32 NamepathOffset,
353 1.1 christos UINT32 Offset,
354 1.1 christos char *OpName,
355 1.1 christos UINT64 Value,
356 1.1 christos UINT8 AmlOpcode,
357 1.1 christos UINT16 ParentOpcode)
358 1.1 christos {
359 1.1 christos ACPI_BUFFER TargetPath;
360 1.1 christos ACPI_STATUS Status;
361 1.1 christos
362 1.1 christos
363 1.1 christos /* Get the full pathname to the namespace node */
364 1.1 christos
365 1.1 christos TargetPath.Length = ACPI_ALLOCATE_LOCAL_BUFFER;
366 1.1 christos Status = AcpiNsHandleToPathname (Node, &TargetPath);
367 1.1 christos if (ACPI_FAILURE (Status))
368 1.1 christos {
369 1.1 christos return;
370 1.1 christos }
371 1.1 christos
372 1.1 christos /* [1] - Skip the opening backslash for the path */
373 1.1 christos
374 1.1 christos strcpy (MsgBuffer, "\"");
375 1.1 christos strcat (MsgBuffer, &((char *) TargetPath.Pointer)[1]);
376 1.1 christos strcat (MsgBuffer, "\",");
377 1.1 christos ACPI_FREE (TargetPath.Pointer);
378 1.1 christos
379 1.1 christos /*
380 1.1 christos * Max offset is 4G, constrained by 32-bit ACPI table length.
381 1.1 christos * Max Length for Integers is 8 bytes.
382 1.1 christos */
383 1.1 christos FlPrintFile (FileId,
384 1.1 christos " {%-29s 0x%4.4X, 0x%8.8X, 0x%2.2X, 0x%8.8X, 0x%8.8X%8.8X}, /* %s */\n",
385 1.1 christos MsgBuffer, ParentOpcode, NamepathOffset, AmlOpcode,
386 1.1 christos Offset, ACPI_FORMAT_UINT64 (Value), OpName);
387 1.1 christos }
388 1.1 christos
389 1.1 christos
390 1.1 christos /*******************************************************************************
391 1.1 christos *
392 1.1 christos * FUNCTION: LsDoOffsetTableHeader, LsDoOffsetTableFooter
393 1.1 christos *
394 1.1 christos * PARAMETERS: FileId - ID of current listing file
395 1.1 christos *
396 1.1 christos * RETURN: None
397 1.1 christos *
398 1.1 christos * DESCRIPTION: Header and footer for the offset table file.
399 1.1 christos *
400 1.1 christos ******************************************************************************/
401 1.1 christos
402 1.1 christos void
403 1.1 christos LsDoOffsetTableHeader (
404 1.1 christos UINT32 FileId)
405 1.1 christos {
406 1.1 christos
407 1.1 christos FlPrintFile (FileId,
408 1.1 christos "#ifndef __AML_OFFSET_TABLE_H\n"
409 1.1 christos "#define __AML_OFFSET_TABLE_H\n\n");
410 1.1 christos
411 1.1 christos FlPrintFile (FileId, "typedef struct {\n"
412 1.1 christos " char *Pathname; /* Full pathname (from root) to the object */\n"
413 1.1 christos " unsigned short ParentOpcode; /* AML opcode for the parent object */\n"
414 1.1 christos " unsigned long NamesegOffset; /* Offset of last nameseg in the parent namepath */\n"
415 1.1 christos " unsigned char Opcode; /* AML opcode for the data */\n"
416 1.1 christos " unsigned long Offset; /* Offset for the data */\n"
417 1.1 christos " unsigned long long Value; /* Original value of the data (as applicable) */\n"
418 1.1 christos "} AML_OFFSET_TABLE_ENTRY;\n\n");
419 1.1 christos
420 1.1 christos FlPrintFile (FileId,
421 1.1 christos "#endif /* __AML_OFFSET_TABLE_H */\n\n");
422 1.1 christos
423 1.1 christos FlPrintFile (FileId,
424 1.1 christos "/*\n"
425 1.1 christos " * Information specific to the supported object types:\n"
426 1.1 christos " *\n"
427 1.1 christos " * Integers:\n"
428 1.1 christos " * Opcode is the integer prefix, indicates length of the data\n"
429 1.1 christos " * (One of: BYTE, WORD, DWORD, QWORD, ZERO, ONE, ONES)\n"
430 1.1 christos " * Offset points to the actual integer data\n"
431 1.1 christos " * Value is the existing value in the AML\n"
432 1.1 christos " *\n"
433 1.1 christos " * Packages:\n"
434 1.1 christos " * Opcode is the package or var_package opcode\n"
435 1.1 christos " * Offset points to the package opcode\n"
436 1.1 christos " * Value is the package element count\n"
437 1.1 christos " *\n"
438 1.1 christos " * Operation Regions:\n"
439 1.1 christos " * Opcode is the address integer prefix, indicates length of the data\n"
440 1.1 christos " * Offset points to the region address\n"
441 1.1 christos " * Value is the existing address value in the AML\n"
442 1.1 christos " *\n"
443 1.1 christos " * Control Methods:\n"
444 1.1 christos " * Offset points to the method flags byte\n"
445 1.1 christos " * Value is the existing flags value in the AML\n"
446 1.1 christos " *\n"
447 1.1 christos " * Processors:\n"
448 1.1 christos " * Offset points to the first byte of the PBlock Address\n"
449 1.1 christos " *\n"
450 1.1 christos " * Resource Descriptors:\n"
451 1.1 christos " * Opcode is the descriptor type\n"
452 1.1 christos " * Offset points to the start of the descriptor\n"
453 1.1 christos " *\n"
454 1.1 christos " * Scopes/Devices/ThermalZones:\n"
455 1.1 christos " * Nameseg offset only\n"
456 1.1 christos " */\n");
457 1.1 christos
458 1.1 christos FlPrintFile (FileId,
459 1.1 christos "AML_OFFSET_TABLE_ENTRY %s_%s_OffsetTable[] =\n{\n",
460 1.1 christos Gbl_TableSignature, Gbl_TableId);
461 1.1 christos }
462 1.1 christos
463 1.1 christos
464 1.1 christos void
465 1.1 christos LsDoOffsetTableFooter (
466 1.1 christos UINT32 FileId)
467 1.1 christos {
468 1.1 christos
469 1.1 christos FlPrintFile (FileId,
470 1.1 christos " {NULL,0,0,0,0,0} /* Table terminator */\n};\n\n");
471 1.1 christos Gbl_CurrentAmlOffset = 0;
472 1.1 christos }
473