Fixed compatibility of output.
[AROS.git] / arch / all-pc / acpica / source / compiler / prutils.c
blobe98626ff0daff24559eb84f655fcb9cfdb34fc81
1 /******************************************************************************
3 * Module Name: prutils - Preprocessor utilities
5 *****************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2013, Intel Corp.
9 * All rights reserved.
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.
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.
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 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.
44 #include "aslcompiler.h"
45 #include "dtcompiler.h"
48 #define _COMPONENT ASL_PREPROCESSOR
49 ACPI_MODULE_NAME ("prutils")
52 /******************************************************************************
54 * FUNCTION: PrGetNextToken
56 * PARAMETERS: Buffer - Current line buffer
57 * MatchString - String with valid token delimiters
58 * Next - Set to next possible token in buffer
60 * RETURN: Next token (null-terminated). Modifies the input line.
61 * Remainder of line is stored in *Next.
63 * DESCRIPTION: Local implementation of strtok() with local storage for the
64 * next pointer. Not only thread-safe, but allows multiple
65 * parsing of substrings such as expressions.
67 *****************************************************************************/
69 char *
70 PrGetNextToken (
71 char *Buffer,
72 char *MatchString,
73 char **Next)
75 char *TokenStart;
78 if (!Buffer)
80 /* Use Next if it is valid */
82 Buffer = *Next;
83 if (!(*Next))
85 return (NULL);
89 /* Skip any leading delimiters */
91 while (*Buffer)
93 if (strchr (MatchString, *Buffer))
95 Buffer++;
97 else
99 break;
103 /* Anything left on the line? */
105 if (!(*Buffer))
107 *Next = NULL;
108 return (NULL);
111 TokenStart = Buffer;
113 /* Find the end of this token */
115 while (*Buffer)
117 if (strchr (MatchString, *Buffer))
119 *Buffer = 0;
120 *Next = Buffer+1;
121 if (!**Next)
123 *Next = NULL;
125 return (TokenStart);
127 Buffer++;
130 *Next = NULL;
131 return (TokenStart);
135 /*******************************************************************************
137 * FUNCTION: PrError
139 * PARAMETERS: Level - Seriousness (Warning/error, etc.)
140 * MessageId - Index into global message buffer
141 * Column - Column in current line
143 * RETURN: None
145 * DESCRIPTION: Preprocessor error reporting. Front end to AslCommonError2
147 ******************************************************************************/
149 void
150 PrError (
151 UINT8 Level,
152 UINT8 MessageId,
153 UINT32 Column)
155 #if 0
156 AcpiOsPrintf ("%s (%u) : %s", Gbl_Files[ASL_FILE_INPUT].Filename,
157 Gbl_CurrentLineNumber, Gbl_CurrentLineBuffer);
158 #endif
161 if (Column > 120)
163 Column = 0;
166 /* TBD: Need Logical line number? */
168 AslCommonError2 (Level, MessageId,
169 Gbl_CurrentLineNumber, Column,
170 Gbl_CurrentLineBuffer,
171 Gbl_Files[ASL_FILE_INPUT].Filename, "Preprocessor");
173 Gbl_PreprocessorError = TRUE;
177 /*******************************************************************************
179 * FUNCTION: PrReplaceData
181 * PARAMETERS: Buffer - Original(target) buffer pointer
182 * LengthToRemove - Length to be removed from target buffer
183 * BufferToAdd - Data to be inserted into target buffer
184 * LengthToAdd - Length of BufferToAdd
186 * RETURN: None
188 * DESCRIPTION: Generic buffer data replacement.
190 ******************************************************************************/
192 void
193 PrReplaceData (
194 char *Buffer,
195 UINT32 LengthToRemove,
196 char *BufferToAdd,
197 UINT32 LengthToAdd)
199 UINT32 BufferLength;
202 /* Buffer is a string, so the length must include the terminating zero */
204 BufferLength = strlen (Buffer) + 1;
206 if (LengthToRemove != LengthToAdd)
209 * Move some of the existing data
210 * 1) If adding more bytes than removing, make room for the new data
211 * 2) if removing more bytes than adding, delete the extra space
213 if (LengthToRemove > 0)
215 memmove ((Buffer + LengthToAdd), (Buffer + LengthToRemove),
216 (BufferLength - LengthToRemove));
220 /* Now we can move in the new data */
222 if (LengthToAdd > 0)
224 memmove (Buffer, BufferToAdd, LengthToAdd);
229 /*******************************************************************************
231 * FUNCTION: PrOpenIncludeFile
233 * PARAMETERS: Filename - Filename or pathname for include file
235 * RETURN: None.
237 * DESCRIPTION: Open an include file and push it on the input file stack.
239 ******************************************************************************/
241 void
242 PrOpenIncludeFile (
243 char *Filename)
245 FILE *IncludeFile;
246 ASL_INCLUDE_DIR *NextDir;
249 /* Start the actual include file on the next line */
251 Gbl_CurrentLineOffset++;
253 /* Attempt to open the include file */
254 /* If the file specifies an absolute path, just open it */
256 if ((Filename[0] == '/') ||
257 (Filename[0] == '\\') ||
258 (Filename[1] == ':'))
260 IncludeFile = PrOpenIncludeWithPrefix ("", Filename);
261 if (!IncludeFile)
263 goto ErrorExit;
265 return;
269 * The include filename is not an absolute path.
271 * First, search for the file within the "local" directory -- meaning
272 * the same directory that contains the source file.
274 * Construct the file pathname from the global directory name.
276 IncludeFile = PrOpenIncludeWithPrefix (Gbl_DirectoryPath, Filename);
277 if (IncludeFile)
279 return;
283 * Second, search for the file within the (possibly multiple)
284 * directories specified by the -I option on the command line.
286 NextDir = Gbl_IncludeDirList;
287 while (NextDir)
289 IncludeFile = PrOpenIncludeWithPrefix (NextDir->Dir, Filename);
290 if (IncludeFile)
292 return;
295 NextDir = NextDir->Next;
298 /* We could not open the include file after trying very hard */
300 ErrorExit:
301 sprintf (Gbl_MainTokenBuffer, "%s, %s", Filename, strerror (errno));
302 PrError (ASL_ERROR, ASL_MSG_INCLUDE_FILE_OPEN, 0);
306 /*******************************************************************************
308 * FUNCTION: FlOpenIncludeWithPrefix
310 * PARAMETERS: PrefixDir - Prefix directory pathname. Can be a zero
311 * length string.
312 * Filename - The include filename from the source ASL.
314 * RETURN: Valid file descriptor if successful. Null otherwise.
316 * DESCRIPTION: Open an include file and push it on the input file stack.
318 ******************************************************************************/
320 FILE *
321 PrOpenIncludeWithPrefix (
322 char *PrefixDir,
323 char *Filename)
325 FILE *IncludeFile;
326 char *Pathname;
329 /* Build the full pathname to the file */
331 Pathname = FlMergePathnames (PrefixDir, Filename);
333 DbgPrint (ASL_PARSE_OUTPUT, PR_PREFIX_ID
334 "Include: Opening file - \"%s\"\n",
335 Gbl_CurrentLineNumber, Pathname);
337 /* Attempt to open the file, push if successful */
339 IncludeFile = fopen (Pathname, "r");
340 if (!IncludeFile)
342 fprintf (stderr, "Could not open include file %s\n", Pathname);
343 ACPI_FREE (Pathname);
344 return (NULL);
347 /* Push the include file on the open input file stack */
349 PrPushInputFileStack (IncludeFile, Pathname);
350 return (IncludeFile);
354 /*******************************************************************************
356 * FUNCTION: AslPushInputFileStack
358 * PARAMETERS: InputFile - Open file pointer
359 * Filename - Name of the file
361 * RETURN: None
363 * DESCRIPTION: Push the InputFile onto the file stack, and point the parser
364 * to this file. Called when an include file is successfully
365 * opened.
367 ******************************************************************************/
369 void
370 PrPushInputFileStack (
371 FILE *InputFile,
372 char *Filename)
374 PR_FILE_NODE *Fnode;
377 /* Save the current state in an Fnode */
379 Fnode = UtLocalCalloc (sizeof (PR_FILE_NODE));
381 Fnode->File = Gbl_Files[ASL_FILE_INPUT].Handle;
382 Fnode->Next = Gbl_InputFileList;
383 Fnode->Filename = Gbl_Files[ASL_FILE_INPUT].Filename;
384 Fnode->CurrentLineNumber = Gbl_CurrentLineNumber;
386 /* Push it on the stack */
388 Gbl_InputFileList = Fnode;
390 DbgPrint (ASL_PARSE_OUTPUT, PR_PREFIX_ID
391 "Push InputFile Stack: handle %p\n\n",
392 Gbl_CurrentLineNumber, InputFile);
394 /* Reset the global line count and filename */
396 Gbl_Files[ASL_FILE_INPUT].Filename = Filename;
397 Gbl_Files[ASL_FILE_INPUT].Handle = InputFile;
398 Gbl_PreviousLineNumber = 0;
399 Gbl_CurrentLineNumber = 0;
401 /* Emit a new #line directive for the include file */
403 FlPrintFile (ASL_FILE_PREPROCESSOR, "#line %u \"%s\"\n",
404 1, Filename);
408 /*******************************************************************************
410 * FUNCTION: AslPopInputFileStack
412 * PARAMETERS: None
414 * RETURN: 0 if a node was popped, -1 otherwise
416 * DESCRIPTION: Pop the top of the input file stack and point the parser to
417 * the saved parse buffer contained in the fnode. Also, set the
418 * global line counters to the saved values. This function is
419 * called when an include file reaches EOF.
421 ******************************************************************************/
423 BOOLEAN
424 PrPopInputFileStack (
425 void)
427 PR_FILE_NODE *Fnode;
430 Fnode = Gbl_InputFileList;
431 DbgPrint (ASL_PARSE_OUTPUT, "\n" PR_PREFIX_ID
432 "Pop InputFile Stack, Fnode %p\n\n",
433 Gbl_CurrentLineNumber, Fnode);
435 if (!Fnode)
437 return (FALSE);
440 /* Close the current include file */
442 fclose (Gbl_Files[ASL_FILE_INPUT].Handle);
444 /* Update the top-of-stack */
446 Gbl_InputFileList = Fnode->Next;
448 /* Reset global line counter and filename */
450 Gbl_Files[ASL_FILE_INPUT].Filename = Fnode->Filename;
451 Gbl_Files[ASL_FILE_INPUT].Handle = Fnode->File;
452 Gbl_CurrentLineNumber = Fnode->CurrentLineNumber;
453 Gbl_PreviousLineNumber = 0;
455 /* Emit a new #line directive after the include file */
457 FlPrintFile (ASL_FILE_PREPROCESSOR, "#line %u \"%s\"\n",
458 Gbl_CurrentLineNumber + 1, Fnode->Filename);
460 /* All done with this node */
462 ACPI_FREE (Fnode);
463 return (TRUE);