1 /******************************************************************************
3 * Module Name: asloptions - compiler command line processing
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2013, Intel Corp.
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.
44 #include "aslcompiler.h"
48 #define _COMPONENT ACPI_COMPILER
49 ACPI_MODULE_NAME ("asloption")
52 /* Local prototypes */
58 BOOLEAN IsResponseFile
);
61 AslMergeOptionTokens (
70 #define ASL_TOKEN_SEPARATORS " \t\n"
71 #define ASL_SUPPORTED_OPTIONS "@:b|c|d^D:e:f^gh^i|I:l^m:no|p:P^r:s|t|T+G^v^w|x:z"
74 /*******************************************************************************
76 * FUNCTION: AslCommandLine
78 * PARAMETERS: argc/argv
80 * RETURN: Last argv index
82 * DESCRIPTION: Command line processing
84 ******************************************************************************/
91 int BadCommandLine
= 0;
95 /* Minimum command line contains at least the command and an input file */
99 printf (ACPI_COMMON_SIGNON (ASL_COMPILER_NAME
));
104 /* Process all command line options */
106 BadCommandLine
= AslDoOptions (argc
, argv
, FALSE
);
110 Status
= DtCreateTemplates (Gbl_TemplateSignature
);
111 if (ACPI_FAILURE (Status
))
118 /* Next parameter must be the input filename */
120 if (!argv
[AcpiGbl_Optind
] &&
124 printf ("Missing input filename\n");
125 BadCommandLine
= TRUE
;
130 printf (ACPI_COMMON_SIGNON (ASL_COMPILER_NAME
));
131 if (Gbl_IgnoreErrors
)
133 printf ("Ignoring all errors, forcing AML file generation\n\n");
139 printf ("Use -h option for help information\n");
143 return (AcpiGbl_Optind
);
147 /*******************************************************************************
149 * FUNCTION: AslDoOptions
151 * PARAMETERS: argc/argv - Standard argc/argv
152 * IsResponseFile - TRUE if executing a response file.
156 * DESCRIPTION: Command line option processing
158 ******************************************************************************/
164 BOOLEAN IsResponseFile
)
170 /* Get the command line options */
172 while ((j
= AcpiGetopt (argc
, argv
, ASL_SUPPORTED_OPTIONS
)) != EOF
) switch (j
)
174 case '@': /* Begin a response file */
178 printf ("Nested command files are not supported\n");
182 if (AslDoResponseFile (AcpiGbl_Optarg
))
188 case 'b': /* Debug output options */
190 switch (AcpiGbl_Optarg
[0])
194 AslCompilerdebug
= 1; /* same as yydebug */
205 printf ("Unknown option: -b%s\n", AcpiGbl_Optarg
);
209 /* Produce debug output file */
211 Gbl_DebugFlag
= TRUE
;
216 switch (AcpiGbl_Optarg
[0])
220 Gbl_NoResourceChecking
= TRUE
;
225 printf ("Unknown option: -c%s\n", AcpiGbl_Optarg
);
230 case 'd': /* Disassembler */
232 switch (AcpiGbl_Optarg
[0])
236 Gbl_DoCompile
= FALSE
;
241 Gbl_DoCompile
= FALSE
;
242 Gbl_DisassembleAll
= TRUE
;
245 case 'b': /* Do not convert buffers to resource descriptors */
247 AcpiGbl_NoResourceDisassembly
= TRUE
;
256 printf ("Unknown option: -d%s\n", AcpiGbl_Optarg
);
260 Gbl_DisasmFlag
= TRUE
;
263 case 'D': /* Define a symbol */
265 PrAddDefine (AcpiGbl_Optarg
, NULL
, TRUE
);
268 case 'e': /* External files for disassembler */
270 /* Get entire list of external files */
274 while (argv
[AcpiGbl_Optind
] &&
275 (argv
[AcpiGbl_Optind
][0] != '-'))
277 Status
= AcpiDmAddToExternalFileList (argv
[AcpiGbl_Optind
]);
278 if (ACPI_FAILURE (Status
))
280 printf ("Could not add %s to external list\n", argv
[AcpiGbl_Optind
]);
290 switch (AcpiGbl_Optarg
[0])
292 case '^': /* Ignore errors and force creation of aml file */
294 Gbl_IgnoreErrors
= TRUE
;
297 case 'e': /* Disassembler: Get external declaration file */
299 if (AcpiGetoptArgument (argc
, argv
))
304 Gbl_ExternalRefFilename
= AcpiGbl_Optarg
;
309 printf ("Unknown option: -f%s\n", AcpiGbl_Optarg
);
316 Gbl_CompileGeneric
= TRUE
;
319 case 'g': /* Get all ACPI tables */
321 Gbl_GetAllTables
= TRUE
;
322 Gbl_DoCompile
= FALSE
;
327 switch (AcpiGbl_Optarg
[0])
336 UtDisplayConstantOpcodes ();
348 ApDisplayReservedNames ();
353 UtDisplaySupportedTables ();
358 printf ("Unknown option: -h%s\n", AcpiGbl_Optarg
);
362 case 'I': /* Add an include file search directory */
364 FlAddIncludeDirectory (AcpiGbl_Optarg
);
367 case 'i': /* Output AML as an include file */
369 switch (AcpiGbl_Optarg
[0])
373 /* Produce assembly code include file */
375 Gbl_AsmIncludeOutputFlag
= TRUE
;
380 /* Produce C include file */
382 Gbl_C_IncludeOutputFlag
= TRUE
;
387 /* Compiler/Disassembler: Ignore the NOOP operator */
389 AcpiGbl_IgnoreNoopOperator
= TRUE
;
394 printf ("Unknown option: -i%s\n", AcpiGbl_Optarg
);
399 case 'l': /* Listing files */
401 switch (AcpiGbl_Optarg
[0])
405 /* Produce listing file (Mixed source/aml) */
407 Gbl_ListingFlag
= TRUE
;
412 /* Produce preprocessor output file */
414 Gbl_PreprocessorOutputFlag
= TRUE
;
419 /* Produce namespace file */
421 Gbl_NsOutputFlag
= TRUE
;
426 /* Produce combined source file */
428 Gbl_SourceOutputFlag
= TRUE
;
433 printf ("Unknown option: -l%s\n", AcpiGbl_Optarg
);
438 case 'm': /* Set line buffer size */
440 Gbl_LineBufferSize
= (UINT32
) strtoul (AcpiGbl_Optarg
, NULL
, 0) * 1024;
441 if (Gbl_LineBufferSize
< ASL_DEFAULT_LINE_BUFFER_SIZE
)
443 Gbl_LineBufferSize
= ASL_DEFAULT_LINE_BUFFER_SIZE
;
445 printf ("Line Buffer Size: %u\n", Gbl_LineBufferSize
);
448 case 'n': /* Parse only */
450 Gbl_ParseOnlyFlag
= TRUE
;
453 case 'o': /* Control compiler AML optimizations */
455 switch (AcpiGbl_Optarg
[0])
459 /* Disable all optimizations */
461 Gbl_FoldConstants
= FALSE
;
462 Gbl_IntegerOptimizationFlag
= FALSE
;
463 Gbl_ReferenceOptimizationFlag
= FALSE
;
468 /* Disable folding on "normal" expressions */
470 Gbl_FoldConstants
= FALSE
;
475 /* Disable integer optimization to constants */
477 Gbl_IntegerOptimizationFlag
= FALSE
;
482 /* Disable named reference optimization */
484 Gbl_ReferenceOptimizationFlag
= FALSE
;
489 /* Display compile time(s) */
491 Gbl_CompileTimesFlag
= TRUE
;
496 printf ("Unknown option: -c%s\n", AcpiGbl_Optarg
);
501 case 'P': /* Preprocessor options */
503 switch (AcpiGbl_Optarg
[0])
505 case '^': /* Proprocess only, emit (.i) file */
507 Gbl_PreprocessOnly
= TRUE
;
508 Gbl_PreprocessorOutputFlag
= TRUE
;
511 case 'n': /* Disable preprocessor */
513 Gbl_PreprocessFlag
= FALSE
;
518 printf ("Unknown option: -P%s\n", AcpiGbl_Optarg
);
523 case 'p': /* Override default AML output filename */
525 Gbl_OutputFilenamePrefix
= AcpiGbl_Optarg
;
526 Gbl_UseDefaultAmlFilename
= FALSE
;
529 case 'r': /* Override revision found in table header */
531 Gbl_RevisionOverride
= (UINT8
) strtoul (AcpiGbl_Optarg
, NULL
, 0);
534 case 's': /* Create AML in a source code file */
536 switch (AcpiGbl_Optarg
[0])
540 /* Produce assembly code output file */
542 Gbl_AsmOutputFlag
= TRUE
;
547 /* Produce C hex output file */
549 Gbl_C_OutputFlag
= TRUE
;
554 /* Produce AML offset table in C */
556 Gbl_C_OffsetTableFlag
= TRUE
;
561 printf ("Unknown option: -s%s\n", AcpiGbl_Optarg
);
566 case 't': /* Produce hex table output file */
568 switch (AcpiGbl_Optarg
[0])
572 Gbl_HexOutputFlag
= HEX_OUTPUT_ASM
;
577 Gbl_HexOutputFlag
= HEX_OUTPUT_C
;
582 Gbl_HexOutputFlag
= HEX_OUTPUT_ASL
;
587 printf ("Unknown option: -t%s\n", AcpiGbl_Optarg
);
592 case 'T': /* Create a ACPI table template file */
594 Gbl_DoTemplates
= TRUE
;
595 Gbl_TemplateSignature
= AcpiGbl_Optarg
;
598 case 'v': /* Version and verbosity settings */
600 switch (AcpiGbl_Optarg
[0])
604 printf (ACPI_COMMON_SIGNON (ASL_COMPILER_NAME
));
609 /* Disable All error/warning messages */
616 * Support for integrated development environment(s).
618 * 1) No compiler signon
619 * 2) Send stderr messages to stdout
620 * 3) Less verbose error messages (single line only for each)
621 * 4) Error/warning messages are formatted appropriately to
622 * be recognized by MS Visual Studio
624 Gbl_VerboseErrors
= FALSE
;
625 Gbl_DoSignon
= FALSE
;
626 Gbl_Files
[ASL_FILE_STDERR
].Handle
= stdout
;
631 Gbl_DisplayOptimizations
= TRUE
;
636 Gbl_DisplayRemarks
= FALSE
;
641 Gbl_DoSignon
= FALSE
;
646 Gbl_VerboseTemplates
= TRUE
;
651 /* Get the required argument */
653 if (AcpiGetoptArgument (argc
, argv
))
658 Status
= AslDisableException (AcpiGbl_Optarg
);
659 if (ACPI_FAILURE (Status
))
667 printf ("Unknown option: -v%s\n", AcpiGbl_Optarg
);
672 case 'w': /* Set warning levels */
674 switch (AcpiGbl_Optarg
[0])
678 Gbl_WarningLevel
= ASL_WARNING
;
683 Gbl_WarningLevel
= ASL_WARNING2
;
688 Gbl_WarningLevel
= ASL_WARNING3
;
693 Gbl_WarningsAsErrors
= TRUE
;
698 printf ("Unknown option: -w%s\n", AcpiGbl_Optarg
);
703 case 'x': /* Set debug print output level */
705 AcpiDbgLevel
= strtoul (AcpiGbl_Optarg
, NULL
, 16);
710 Gbl_UseOriginalCompilerId
= TRUE
;
722 /*******************************************************************************
724 * FUNCTION: AslMergeOptionTokens
726 * PARAMETERS: InBuffer - Input containing an option string
727 * OutBuffer - Merged output buffer
731 * DESCRIPTION: Remove all whitespace from an option string.
733 ******************************************************************************/
736 AslMergeOptionTokens (
745 Token
= strtok (InBuffer
, ASL_TOKEN_SEPARATORS
);
748 strcat (OutBuffer
, Token
);
749 Token
= strtok (NULL
, ASL_TOKEN_SEPARATORS
);
754 /*******************************************************************************
756 * FUNCTION: AslDoResponseFile
758 * PARAMETERS: Filename - Name of the response file
762 * DESCRIPTION: Open a response file and process all options within.
764 ******************************************************************************/
770 char *argv
= StringBuffer2
;
777 ResponseFile
= fopen (Filename
, "r");
780 printf ("Could not open command file %s, %s\n",
781 Filename
, strerror (errno
));
785 /* Must save the current GetOpt globals */
787 Opterr
= AcpiGbl_Opterr
;
788 Optind
= AcpiGbl_Optind
;
791 * Process all lines in the response file. There must be one complete
794 while (fgets (StringBuffer
, ASL_MSG_BUFFER_SIZE
, ResponseFile
))
796 /* Compress all tokens, allowing us to use a single argv entry */
798 AslMergeOptionTokens (StringBuffer
, StringBuffer2
);
800 /* Process the option */
805 OptStatus
= AslDoOptions (1, &argv
, TRUE
);
808 printf ("Invalid option in command file %s: %s\n",
809 Filename
, StringBuffer
);
814 /* Restore the GetOpt globals */
816 AcpiGbl_Opterr
= Opterr
;
817 AcpiGbl_Optind
= Optind
;
819 fclose (ResponseFile
);