asloffset.c revision 1.1.1.10 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.1.9 christos * Copyright (C) 2000 - 2018, 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.1.8 christos if (Op->Asl.CompileFlags & OP_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.1.10 christos AslGbl_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.1.8 christos (Op->Asl.CompileFlags & OP_IS_RESOURCE_DESC))
124 1.1 christos {
125 1.1.1.10 christos LsEmitOffsetTableEntry (FileId, Node, 0, AslGbl_CurrentAmlOffset,
126 1.1 christos Op->Asl.ParseOpName, 0, Op->Asl.Extra, AML_BUFFER_OP);
127 1.1 christos
128 1.1.1.10 christos AslGbl_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.1.10 christos FlPrintFile (FileId, "%s NO CHILD!\n", AslGbl_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
146 1.1 christos /* Get to the NameSeg/NamePath Op (and length of the name) */
147 1.1 christos
148 1.1 christos Op = Op->Asl.Child;
149 1.1 christos
150 1.1 christos /* Get offset of last nameseg and the actual data */
151 1.1 christos
152 1.1.1.10 christos NamepathOffset = AslGbl_CurrentAmlOffset + Length +
153 1.1 christos (Op->Asl.FinalAmlLength - ACPI_NAME_SIZE);
154 1.1 christos
155 1.1.1.10 christos DataOffset = AslGbl_CurrentAmlOffset + Length +
156 1.1 christos Op->Asl.FinalAmlLength;
157 1.1 christos
158 1.1 christos /* Get actual value associated with the name */
159 1.1 christos
160 1.1 christos Op = Op->Asl.Next;
161 1.1 christos switch (Op->Asl.AmlOpcode)
162 1.1 christos {
163 1.1 christos case AML_BYTE_OP:
164 1.1 christos case AML_WORD_OP:
165 1.1 christos case AML_DWORD_OP:
166 1.1 christos case AML_QWORD_OP:
167 1.1 christos
168 1.1 christos /* The +1 is to handle the integer size prefix (opcode) */
169 1.1 christos
170 1.1 christos LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, (DataOffset + 1),
171 1.1 christos Op->Asl.ParseOpName, Op->Asl.Value.Integer,
172 1.1 christos (UINT8) Op->Asl.AmlOpcode, AML_NAME_OP);
173 1.1 christos break;
174 1.1 christos
175 1.1 christos case AML_ONE_OP:
176 1.1 christos case AML_ONES_OP:
177 1.1 christos case AML_ZERO_OP:
178 1.1 christos
179 1.1 christos /* For these, offset will point to the opcode */
180 1.1 christos
181 1.1 christos LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, DataOffset,
182 1.1 christos Op->Asl.ParseOpName, Op->Asl.Value.Integer,
183 1.1 christos (UINT8) Op->Asl.AmlOpcode, AML_NAME_OP);
184 1.1 christos break;
185 1.1 christos
186 1.1 christos case AML_PACKAGE_OP:
187 1.1.1.7 christos case AML_VARIABLE_PACKAGE_OP:
188 1.1 christos
189 1.1 christos /* Get the package element count */
190 1.1 christos
191 1.1 christos NextOp = Op->Asl.Child;
192 1.1 christos
193 1.1 christos LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, DataOffset,
194 1.1 christos Op->Asl.ParseOpName, NextOp->Asl.Value.Integer,
195 1.1 christos (UINT8) Op->Asl.AmlOpcode, AML_NAME_OP);
196 1.1 christos break;
197 1.1 christos
198 1.1 christos default:
199 1.1 christos break;
200 1.1 christos }
201 1.1 christos
202 1.1.1.10 christos AslGbl_CurrentAmlOffset += Length;
203 1.1 christos return (AE_OK);
204 1.1 christos
205 1.1 christos case AML_REGION_OP:
206 1.1 christos
207 1.1 christos /* OperationRegion (NameString, RegionSpace, RegionOffset, RegionLength) */
208 1.1 christos
209 1.1 christos Length = Op->Asl.FinalAmlLength;
210 1.1 christos
211 1.1 christos /* Get the name/namepath node */
212 1.1 christos
213 1.1 christos NextOp = Op->Asl.Child;
214 1.1 christos
215 1.1 christos /* Get offset of last nameseg and the actual data */
216 1.1 christos
217 1.1.1.10 christos NamepathOffset = AslGbl_CurrentAmlOffset + Length +
218 1.1 christos (NextOp->Asl.FinalAmlLength - ACPI_NAME_SIZE);
219 1.1 christos
220 1.1.1.10 christos DataOffset = AslGbl_CurrentAmlOffset + Length +
221 1.1 christos (NextOp->Asl.FinalAmlLength + 1);
222 1.1 christos
223 1.1 christos /* Get the SpaceId node, then the Offset (address) node */
224 1.1 christos
225 1.1 christos NextOp = NextOp->Asl.Next;
226 1.1 christos NextOp = NextOp->Asl.Next;
227 1.1 christos
228 1.1 christos switch (NextOp->Asl.AmlOpcode)
229 1.1 christos {
230 1.1 christos /*
231 1.1 christos * We are only interested in integer constants that can be changed
232 1.1 christos * at boot time. Note, the One/Ones/Zero opcodes are considered
233 1.1 christos * non-changeable, so we ignore them here.
234 1.1 christos */
235 1.1 christos case AML_BYTE_OP:
236 1.1 christos case AML_WORD_OP:
237 1.1 christos case AML_DWORD_OP:
238 1.1 christos case AML_QWORD_OP:
239 1.1 christos
240 1.1 christos LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, (DataOffset + 1),
241 1.1 christos Op->Asl.ParseOpName, NextOp->Asl.Value.Integer,
242 1.1 christos (UINT8) NextOp->Asl.AmlOpcode, AML_REGION_OP);
243 1.1 christos
244 1.1.1.10 christos AslGbl_CurrentAmlOffset += Length;
245 1.1 christos return (AE_OK);
246 1.1 christos
247 1.1 christos default:
248 1.1 christos break;
249 1.1 christos }
250 1.1 christos break;
251 1.1 christos
252 1.1 christos case AML_METHOD_OP:
253 1.1 christos
254 1.1 christos /* Method (Namepath, ...) */
255 1.1 christos
256 1.1 christos Length = Op->Asl.FinalAmlLength;
257 1.1 christos
258 1.1 christos /* Get the NameSeg/NamePath Op */
259 1.1 christos
260 1.1 christos NextOp = Op->Asl.Child;
261 1.1 christos
262 1.1 christos /* Get offset of last nameseg and the actual data (flags byte) */
263 1.1 christos
264 1.1.1.10 christos NamepathOffset = AslGbl_CurrentAmlOffset + Length +
265 1.1 christos (NextOp->Asl.FinalAmlLength - ACPI_NAME_SIZE);
266 1.1 christos
267 1.1.1.10 christos DataOffset = AslGbl_CurrentAmlOffset + Length +
268 1.1 christos NextOp->Asl.FinalAmlLength;
269 1.1 christos
270 1.1 christos /* Get the flags byte Op */
271 1.1 christos
272 1.1 christos NextOp = NextOp->Asl.Next;
273 1.1 christos
274 1.1 christos LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, DataOffset,
275 1.1 christos Op->Asl.ParseOpName, NextOp->Asl.Value.Integer,
276 1.1 christos (UINT8) Op->Asl.AmlOpcode, AML_METHOD_OP);
277 1.1 christos break;
278 1.1 christos
279 1.1 christos case AML_PROCESSOR_OP:
280 1.1 christos
281 1.1 christos /* Processor (Namepath, ProcessorId, Address, Length) */
282 1.1 christos
283 1.1 christos Length = Op->Asl.FinalAmlLength;
284 1.1 christos NextOp = Op->Asl.Child; /* Get Namepath */
285 1.1 christos
286 1.1 christos /* Get offset of last nameseg and the actual data (PBlock address) */
287 1.1 christos
288 1.1.1.10 christos NamepathOffset = AslGbl_CurrentAmlOffset + Length +
289 1.1 christos (NextOp->Asl.FinalAmlLength - ACPI_NAME_SIZE);
290 1.1 christos
291 1.1.1.10 christos DataOffset = AslGbl_CurrentAmlOffset + Length +
292 1.1 christos (NextOp->Asl.FinalAmlLength + 1);
293 1.1 christos
294 1.1 christos NextOp = NextOp->Asl.Next; /* Get ProcessorID (BYTE) */
295 1.1 christos NextOp = NextOp->Asl.Next; /* Get Address (DWORD) */
296 1.1 christos
297 1.1 christos LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, DataOffset,
298 1.1 christos Op->Asl.ParseOpName, NextOp->Asl.Value.Integer,
299 1.1 christos (UINT8) AML_DWORD_OP, AML_PROCESSOR_OP);
300 1.1 christos break;
301 1.1 christos
302 1.1 christos case AML_DEVICE_OP:
303 1.1 christos case AML_SCOPE_OP:
304 1.1 christos case AML_THERMAL_ZONE_OP:
305 1.1 christos
306 1.1 christos /* Device/Scope/ThermalZone (Namepath) */
307 1.1 christos
308 1.1 christos Length = Op->Asl.FinalAmlLength;
309 1.1 christos NextOp = Op->Asl.Child; /* Get Namepath */
310 1.1 christos
311 1.1 christos /* Get offset of last nameseg */
312 1.1 christos
313 1.1.1.10 christos NamepathOffset = AslGbl_CurrentAmlOffset + Length +
314 1.1 christos (NextOp->Asl.FinalAmlLength - ACPI_NAME_SIZE);
315 1.1 christos
316 1.1 christos LsEmitOffsetTableEntry (FileId, Node, NamepathOffset, 0,
317 1.1 christos Op->Asl.ParseOpName, 0, (UINT8) 0, Op->Asl.AmlOpcode);
318 1.1 christos break;
319 1.1 christos
320 1.1 christos default:
321 1.1 christos break;
322 1.1 christos }
323 1.1 christos
324 1.1.1.10 christos AslGbl_CurrentAmlOffset += Op->Asl.FinalAmlLength;
325 1.1 christos return (AE_OK);
326 1.1 christos }
327 1.1 christos
328 1.1 christos
329 1.1 christos /*******************************************************************************
330 1.1 christos *
331 1.1 christos * FUNCTION: LsEmitOffsetTableEntry
332 1.1 christos *
333 1.1 christos * PARAMETERS: FileId - ID of current listing file
334 1.1 christos * Node - Namespace node associated with the name
335 1.1 christos * Offset - Offset of the value within the AML table
336 1.1 christos * OpName - Name of the AML opcode
337 1.1 christos * Value - Current value of the AML field
338 1.1 christos * AmlOpcode - Opcode associated with the field
339 1.1 christos * ObjectType - ACPI object type
340 1.1 christos *
341 1.1 christos * RETURN: None
342 1.1 christos *
343 1.1 christos * DESCRIPTION: Emit a line of the offset table (-so option)
344 1.1 christos *
345 1.1 christos ******************************************************************************/
346 1.1 christos
347 1.1 christos static void
348 1.1 christos LsEmitOffsetTableEntry (
349 1.1 christos UINT32 FileId,
350 1.1 christos ACPI_NAMESPACE_NODE *Node,
351 1.1 christos UINT32 NamepathOffset,
352 1.1 christos UINT32 Offset,
353 1.1 christos char *OpName,
354 1.1 christos UINT64 Value,
355 1.1 christos UINT8 AmlOpcode,
356 1.1 christos UINT16 ParentOpcode)
357 1.1 christos {
358 1.1 christos ACPI_BUFFER TargetPath;
359 1.1 christos ACPI_STATUS Status;
360 1.1 christos
361 1.1 christos
362 1.1 christos /* Get the full pathname to the namespace node */
363 1.1 christos
364 1.1 christos TargetPath.Length = ACPI_ALLOCATE_LOCAL_BUFFER;
365 1.1.1.4 christos Status = AcpiNsHandleToPathname (Node, &TargetPath, FALSE);
366 1.1 christos if (ACPI_FAILURE (Status))
367 1.1 christos {
368 1.1 christos return;
369 1.1 christos }
370 1.1 christos
371 1.1 christos /* [1] - Skip the opening backslash for the path */
372 1.1 christos
373 1.1.1.10 christos strcpy (AslGbl_MsgBuffer, "\"");
374 1.1.1.10 christos strcat (AslGbl_MsgBuffer, &((char *) TargetPath.Pointer)[1]);
375 1.1.1.10 christos strcat (AslGbl_MsgBuffer, "\",");
376 1.1 christos ACPI_FREE (TargetPath.Pointer);
377 1.1 christos
378 1.1 christos /*
379 1.1 christos * Max offset is 4G, constrained by 32-bit ACPI table length.
380 1.1 christos * Max Length for Integers is 8 bytes.
381 1.1 christos */
382 1.1 christos FlPrintFile (FileId,
383 1.1 christos " {%-29s 0x%4.4X, 0x%8.8X, 0x%2.2X, 0x%8.8X, 0x%8.8X%8.8X}, /* %s */\n",
384 1.1.1.10 christos AslGbl_MsgBuffer, ParentOpcode, NamepathOffset, AmlOpcode,
385 1.1 christos Offset, ACPI_FORMAT_UINT64 (Value), OpName);
386 1.1 christos }
387 1.1 christos
388 1.1 christos
389 1.1 christos /*******************************************************************************
390 1.1 christos *
391 1.1 christos * FUNCTION: LsDoOffsetTableHeader, LsDoOffsetTableFooter
392 1.1 christos *
393 1.1 christos * PARAMETERS: FileId - ID of current listing file
394 1.1 christos *
395 1.1 christos * RETURN: None
396 1.1 christos *
397 1.1 christos * DESCRIPTION: Header and footer for the offset table file.
398 1.1 christos *
399 1.1 christos ******************************************************************************/
400 1.1 christos
401 1.1 christos void
402 1.1 christos LsDoOffsetTableHeader (
403 1.1 christos UINT32 FileId)
404 1.1 christos {
405 1.1 christos
406 1.1 christos FlPrintFile (FileId,
407 1.1 christos "#ifndef __AML_OFFSET_TABLE_H\n"
408 1.1 christos "#define __AML_OFFSET_TABLE_H\n\n");
409 1.1 christos
410 1.1 christos FlPrintFile (FileId, "typedef struct {\n"
411 1.1 christos " char *Pathname; /* Full pathname (from root) to the object */\n"
412 1.1 christos " unsigned short ParentOpcode; /* AML opcode for the parent object */\n"
413 1.1 christos " unsigned long NamesegOffset; /* Offset of last nameseg in the parent namepath */\n"
414 1.1 christos " unsigned char Opcode; /* AML opcode for the data */\n"
415 1.1 christos " unsigned long Offset; /* Offset for the data */\n"
416 1.1 christos " unsigned long long Value; /* Original value of the data (as applicable) */\n"
417 1.1 christos "} AML_OFFSET_TABLE_ENTRY;\n\n");
418 1.1 christos
419 1.1 christos FlPrintFile (FileId,
420 1.1 christos "#endif /* __AML_OFFSET_TABLE_H */\n\n");
421 1.1 christos
422 1.1 christos FlPrintFile (FileId,
423 1.1 christos "/*\n"
424 1.1 christos " * Information specific to the supported object types:\n"
425 1.1 christos " *\n"
426 1.1 christos " * Integers:\n"
427 1.1 christos " * Opcode is the integer prefix, indicates length of the data\n"
428 1.1 christos " * (One of: BYTE, WORD, DWORD, QWORD, ZERO, ONE, ONES)\n"
429 1.1 christos " * Offset points to the actual integer data\n"
430 1.1 christos " * Value is the existing value in the AML\n"
431 1.1 christos " *\n"
432 1.1 christos " * Packages:\n"
433 1.1 christos " * Opcode is the package or var_package opcode\n"
434 1.1 christos " * Offset points to the package opcode\n"
435 1.1 christos " * Value is the package element count\n"
436 1.1 christos " *\n"
437 1.1 christos " * Operation Regions:\n"
438 1.1 christos " * Opcode is the address integer prefix, indicates length of the data\n"
439 1.1 christos " * Offset points to the region address\n"
440 1.1 christos " * Value is the existing address value in the AML\n"
441 1.1 christos " *\n"
442 1.1 christos " * Control Methods:\n"
443 1.1 christos " * Offset points to the method flags byte\n"
444 1.1 christos " * Value is the existing flags value in the AML\n"
445 1.1 christos " *\n"
446 1.1 christos " * Processors:\n"
447 1.1 christos " * Offset points to the first byte of the PBlock Address\n"
448 1.1 christos " *\n"
449 1.1 christos " * Resource Descriptors:\n"
450 1.1 christos " * Opcode is the descriptor type\n"
451 1.1 christos " * Offset points to the start of the descriptor\n"
452 1.1 christos " *\n"
453 1.1 christos " * Scopes/Devices/ThermalZones:\n"
454 1.1 christos " * Nameseg offset only\n"
455 1.1 christos " */\n");
456 1.1 christos
457 1.1 christos FlPrintFile (FileId,
458 1.1 christos "AML_OFFSET_TABLE_ENTRY %s_%s_OffsetTable[] =\n{\n",
459 1.1.1.10 christos AslGbl_TableSignature, AslGbl_TableId);
460 1.1 christos }
461 1.1 christos
462 1.1 christos
463 1.1 christos void
464 1.1 christos LsDoOffsetTableFooter (
465 1.1 christos UINT32 FileId)
466 1.1 christos {
467 1.1 christos
468 1.1 christos FlPrintFile (FileId,
469 1.1 christos " {NULL,0,0,0,0,0} /* Table terminator */\n};\n\n");
470 1.1.1.10 christos AslGbl_CurrentAmlOffset = 0;
471 1.1 christos }
472