Reid Spencer | 68fb37a | 2004-08-14 09:37:15 +0000 | [diff] [blame] | 1 | /*===- ConfigLexer.l - Scanner for CompilerDriver Config Files -*- C++ -*--===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by Reid Spencer and is distributed under the |
| 6 | // University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the flex scanner for configuration files for the |
| 11 | // llvmc CompilerDriver. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===*/ |
| 14 | |
| 15 | |
| 16 | %option prefix="Config" |
Reid Spencer | 68fb37a | 2004-08-14 09:37:15 +0000 | [diff] [blame] | 17 | %option nostdinit |
| 18 | %option never-interactive |
| 19 | %option batch |
| 20 | %option noyywrap |
| 21 | %option nodefault |
| 22 | %option 8bit |
| 23 | %option outfile="ConfigLexer.cpp" |
| 24 | %option ecs |
Reid Spencer | 68fb37a | 2004-08-14 09:37:15 +0000 | [diff] [blame] | 25 | %option noyymore |
Reid Spencer | bae6825 | 2004-08-19 04:49:47 +0000 | [diff] [blame] | 26 | %option noreject |
| 27 | %pointer |
Reid Spencer | 68fb37a | 2004-08-14 09:37:15 +0000 | [diff] [blame] | 28 | |
| 29 | %{ |
| 30 | |
| 31 | #include "ConfigLexer.h" |
| 32 | |
| 33 | #define YY_INPUT(buf,result,max_size) \ |
| 34 | { \ |
| 35 | assert(ConfigLexerInput != 0 && "Oops"); \ |
| 36 | result = ConfigLexerInput->read(buf,max_size); \ |
| 37 | if (result == 0 ) result = YY_NULL; \ |
| 38 | } |
| 39 | |
Reid Spencer | bae6825 | 2004-08-19 04:49:47 +0000 | [diff] [blame] | 40 | #define YY_FATAL_ERROR(msg) \ |
| 41 | { \ |
| 42 | assert(ConfigLexerInput != 0 && "Oops"); \ |
| 43 | ConfigLexerInput->error(msg); \ |
| 44 | } |
| 45 | |
Reid Spencer | bf43772 | 2004-08-15 08:19:46 +0000 | [diff] [blame] | 46 | #define YY_DECL ConfigLexerTokens llvm::Configlex() |
| 47 | |
| 48 | #define yyterminate() { return EOFTOK; } |
| 49 | |
Reid Spencer | 68fb37a | 2004-08-14 09:37:15 +0000 | [diff] [blame] | 50 | using namespace llvm; |
| 51 | |
Reid Spencer | bae6825 | 2004-08-19 04:49:47 +0000 | [diff] [blame] | 52 | inline llvm::ConfigLexerTokens |
| 53 | handleContext(const char* tokenText, llvm::ConfigLexerTokens token) { |
| 54 | if (ConfigLexerState.in_value) { |
| 55 | ConfigLexerState.StringVal = tokenText; |
| 56 | return OPTION; |
Reid Spencer | 68fb37a | 2004-08-14 09:37:15 +0000 | [diff] [blame] | 57 | } |
Reid Spencer | bae6825 | 2004-08-19 04:49:47 +0000 | [diff] [blame] | 58 | return token; |
Reid Spencer | 68fb37a | 2004-08-14 09:37:15 +0000 | [diff] [blame] | 59 | } |
| 60 | |
Reid Spencer | bae6825 | 2004-08-19 04:49:47 +0000 | [diff] [blame] | 61 | inline llvm::ConfigLexerTokens |
| 62 | handleSubstitution(llvm::ConfigLexerTokens token) { |
| 63 | if (ConfigLexerState.in_value) |
| 64 | return token; |
| 65 | YY_FATAL_ERROR("Substitition tokens not allowed in names" ); |
| 66 | return ERRORTOK; |
| 67 | }; |
| 68 | |
| 69 | inline llvm::ConfigLexerTokens handleBoolean(llvm::ConfigLexerTokens token) { |
| 70 | if (ConfigLexerState.in_value) |
| 71 | return token; |
| 72 | YY_FATAL_ERROR("Boolean values not allowed in names"); |
| 73 | return ERRORTOK; |
| 74 | } |
Reid Spencer | 68fb37a | 2004-08-14 09:37:15 +0000 | [diff] [blame] | 75 | |
| 76 | %} |
| 77 | |
Reid Spencer | 68fb37a | 2004-08-14 09:37:15 +0000 | [diff] [blame] | 78 | ASSEMBLER assembler|Assembler|ASSEMBLER |
Reid Spencer | 53aa793 | 2004-08-20 22:53:11 +0000 | [diff] [blame] | 79 | BadSubst \%[^iots][a-zA-Z]\% |
Reid Spencer | bae6825 | 2004-08-19 04:49:47 +0000 | [diff] [blame] | 80 | COMMAND command|Command|COMMAND |
Reid Spencer | 1df7121 | 2004-08-22 18:02:13 +0000 | [diff] [blame] | 81 | Comment \#[^\r\n]*\r?\n |
| 82 | NewLine \r?\n |
Reid Spencer | bae6825 | 2004-08-19 04:49:47 +0000 | [diff] [blame] | 83 | Eq \= |
Reid Spencer | 1df7121 | 2004-08-22 18:02:13 +0000 | [diff] [blame] | 84 | EscNewLine \\\r?\n |
Reid Spencer | bae6825 | 2004-08-19 04:49:47 +0000 | [diff] [blame] | 85 | GROKS_DASH_O groks_dash_O|Groks_Dash_O|GROKS_DASH_O |
| 86 | LANG lang|Lang|LANG |
Reid Spencer | 68fb37a | 2004-08-14 09:37:15 +0000 | [diff] [blame] | 87 | LINKER linker|Linker|LINKER |
| 88 | NAME name|Name|NAME |
Reid Spencer | bf43772 | 2004-08-15 08:19:46 +0000 | [diff] [blame] | 89 | OPT1 opt1|Opt1|OPT1 |
| 90 | OPT2 opt2|Opt2|OPT2 |
| 91 | OPT3 opt3|Opt3|OPT3 |
| 92 | OPT4 opt4|Opt4|OPT4 |
| 93 | OPT5 opt5|Opt5|OPT5 |
Reid Spencer | bae6825 | 2004-08-19 04:49:47 +0000 | [diff] [blame] | 94 | OPTIMIZER optimizer|Optimizer|OPTIMIZER |
| 95 | OPTIMIZES optimizes|Optimizes|OPTIMIZES |
Reid Spencer | 53aa793 | 2004-08-20 22:53:11 +0000 | [diff] [blame] | 96 | Option [-A-Za-z0-9_:%+/\\|,][-A-Za-z0-9_:+/\\|,@]* |
Reid Spencer | bae6825 | 2004-08-19 04:49:47 +0000 | [diff] [blame] | 97 | OUTPUT_IS_ASM output_is_asm|Output_Is_Asm|OUTPUT_IS_ASM |
| 98 | PREPROCESSES preprocesses|PreProcesses|PREPROCESSES |
| 99 | PREPROCESSOR preprocessor|PreProcessor|PREPROCESSOR |
| 100 | REQUIRED required|Required|REQUIRED |
Reid Spencer | 68fb37a | 2004-08-14 09:37:15 +0000 | [diff] [blame] | 101 | Sep \. |
Reid Spencer | 68fb37a | 2004-08-14 09:37:15 +0000 | [diff] [blame] | 102 | String \"[^\"]*\" |
Reid Spencer | bae6825 | 2004-08-19 04:49:47 +0000 | [diff] [blame] | 103 | TRANSLATES translates|Translates|TRANSLATES |
| 104 | TRANSLATOR translator|Translator|TRANSLATOR |
Reid Spencer | 1df7121 | 2004-08-22 18:02:13 +0000 | [diff] [blame] | 105 | VERSION version|Version|VERSION |
Reid Spencer | bae6825 | 2004-08-19 04:49:47 +0000 | [diff] [blame] | 106 | White [ \t]* |
| 107 | |
Reid Spencer | 68fb37a | 2004-08-14 09:37:15 +0000 | [diff] [blame] | 108 | True true|True|TRUE |
| 109 | False false|False|FALSE |
| 110 | On on|On|ON |
| 111 | Off off|Off|OFF |
| 112 | Yes yes|Yes|YES |
| 113 | No no|No|NO |
| 114 | |
| 115 | %% |
| 116 | |
Reid Spencer | 68fb37a | 2004-08-14 09:37:15 +0000 | [diff] [blame] | 117 | {White} { /* Ignore whitespace */ } |
| 118 | |
Reid Spencer | bae6825 | 2004-08-19 04:49:47 +0000 | [diff] [blame] | 119 | {Comment} { /* Ignore comments */ |
| 120 | ConfigLexerState.in_value = false; |
| 121 | ConfigLexerState.lineNum++; |
| 122 | return EOLTOK; |
| 123 | } |
Reid Spencer | 68fb37a | 2004-08-14 09:37:15 +0000 | [diff] [blame] | 124 | |
Reid Spencer | bae6825 | 2004-08-19 04:49:47 +0000 | [diff] [blame] | 125 | {EscNewLine} { ConfigLexerState.lineNum++; |
| 126 | /* Don't return EOLTOK! */ |
| 127 | } |
| 128 | |
| 129 | {NewLine} { ConfigLexerState.in_value = false; |
| 130 | ConfigLexerState.lineNum++; |
| 131 | return EOLTOK; |
| 132 | } |
| 133 | |
| 134 | {Eq} { ConfigLexerState.in_value = true; |
| 135 | return EQUALS; |
| 136 | } |
| 137 | |
| 138 | {LANG} { return handleContext("lang",LANG); } |
| 139 | {PREPROCESSOR} { return handleContext("preprocessor",PREPROCESSOR); } |
| 140 | {TRANSLATOR} { return handleContext("translator",TRANSLATOR); } |
| 141 | {OPTIMIZER} { return handleContext("optimizer",OPTIMIZER); } |
| 142 | {ASSEMBLER} { return handleContext("assembler",ASSEMBLER); } |
| 143 | {LINKER} { return handleContext("linker",LINKER); } |
| 144 | {NAME} { return handleContext("name",NAME); } |
| 145 | {REQUIRED} { return handleContext("required",REQUIRED); } |
| 146 | {COMMAND} { return handleContext("command",COMMAND); } |
| 147 | {PREPROCESSES} { return handleContext("preprocesses",PREPROCESSES); } |
| 148 | {TRANSLATES} { return handleContext("translates",TRANSLATES); } |
| 149 | {OPTIMIZES} { return handleContext("optimizes",OPTIMIZES); } |
| 150 | {GROKS_DASH_O} { return handleContext("groks_dash_O",GROKS_DASH_O); } |
| 151 | {OUTPUT_IS_ASM} { return handleContext("output_ias_asm",OUTPUT_IS_ASM); } |
| 152 | {OPT1} { return handleContext("opt1",OPT1); } |
| 153 | {OPT2} { return handleContext("opt2",OPT2); } |
| 154 | {OPT3} { return handleContext("opt3",OPT3); } |
| 155 | {OPT4} { return handleContext("opt4",OPT4); } |
| 156 | {OPT5} { return handleContext("opt5",OPT5); } |
Reid Spencer | 1df7121 | 2004-08-22 18:02:13 +0000 | [diff] [blame] | 157 | {VERSION} { return handleContext("version",VERSION); } |
Reid Spencer | bae6825 | 2004-08-19 04:49:47 +0000 | [diff] [blame] | 158 | |
Reid Spencer | 53aa793 | 2004-08-20 22:53:11 +0000 | [diff] [blame] | 159 | %in% { return handleSubstitution(IN_SUBST); } |
| 160 | %out% { return handleSubstitution(OUT_SUBST); } |
| 161 | %time% { return handleSubstitution(TIME_SUBST); } |
| 162 | %stats% { return handleSubstitution(STATS_SUBST); } |
| 163 | %opt% { return handleSubstitution(OPT_SUBST); } |
| 164 | %target% { return handleSubstitution(TARGET_SUBST); } |
Reid Spencer | bae6825 | 2004-08-19 04:49:47 +0000 | [diff] [blame] | 165 | {BadSubst} { YY_FATAL_ERROR("Invalid substitution token"); } |
| 166 | {True} { return handleBoolean(TRUETOK); } |
| 167 | {On} { return handleBoolean(TRUETOK); } |
| 168 | {Yes} { return handleBoolean(TRUETOK); } |
| 169 | {False} { return handleBoolean(FALSETOK); } |
| 170 | {Off} { return handleBoolean(FALSETOK); } |
| 171 | {No} { return handleBoolean(FALSETOK); } |
| 172 | |
| 173 | {Option} { ConfigLexerState.StringVal = yytext; return OPTION; } |
| 174 | {String} { ConfigLexerState.StringVal = yytext+1; // Nuke start quote |
| 175 | ConfigLexerState.StringVal.erase( |
| 176 | --ConfigLexerState.StringVal.end()); |
Reid Spencer | 68fb37a | 2004-08-14 09:37:15 +0000 | [diff] [blame] | 177 | return STRING; |
| 178 | } |
Reid Spencer | bae6825 | 2004-08-19 04:49:47 +0000 | [diff] [blame] | 179 | {Sep} { if (ConfigLexerState.in_value) { ConfigLexerState.StringVal = yytext; |
Reid Spencer | bf43772 | 2004-08-15 08:19:46 +0000 | [diff] [blame] | 180 | return OPTION; } } |
| 181 | |
Reid Spencer | 68fb37a | 2004-08-14 09:37:15 +0000 | [diff] [blame] | 182 | |
| 183 | %% |