1 %{ 2 /*- 3 * Copyright (c) 1980, 1993 4 * The Regents of the University of California. All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 3. All advertising materials mentioning features or use of this software 15 * must display the following acknowledgement: 16 * This product includes software developed by the University of 17 * California, Berkeley and its contributors. 18 * 4. Neither the name of the University nor the names of its contributors 19 * may be used to endorse or promote products derived from this software 20 * without specific prior written permission. 21 * 22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32 * SUCH DAMAGE. 33 * 34 * @(#)lang.l 8.1 (Berkeley) 6/6/93 35 * $FreeBSD$ 36 */ 37 38 #include <ctype.h> 39 #include <string.h> 40 #include "y.tab.h" 41 #include "config.h" 42 43 #define YY_NO_UNPUT 44 45 /* 46 * Key word table 47 */ 48 49 struct kt { 50 char *kt_name; 51 int kt_val; 52 } key_words[] = { 53 { "at", AT }, 54 { "bus", BUS }, 55 { "conflicts", CONFLICTS }, 56 { "config", CONFIG }, 57 { "controller", CONTROLLER }, 58 { "cpu", CPU }, 59 { "device", DEVICE }, 60 { "disable", DISABLE }, 61 { "disk", DISK }, 62 { "drive", DRIVE }, 63 { "drq", DRQ }, 64 { "flags", FLAGS }, 65 { "ident", IDENT }, 66 { "iomem", IOMEM }, 67 { "iosiz", IOSIZ }, 68 { "irq", IRQ }, 69 { "machine", MACHINE }, 70 { "makeoptions", MAKEOPTIONS }, 71 { "maxusers", MAXUSERS }, 72 { "nexus", NEXUS }, 73 { "option", OPTIONS }, 74 { "options", OPTIONS }, 75 { "port", PORT }, 76 { "pseudo-device",PSEUDO_DEVICE }, 77 { "target", TARGET }, 78 { "unit", UNIT }, 79 { 0, 0 }, 80 }; 81 82 83 int kw_lookup __P((char *)); 84 int octal __P((char *)); 85 int hex __P((char *)); 86 87 %} 88 WORD [A-Za-z_][-A-Za-z_]* 89 ID [A-Za-z_][-A-Za-z_0-9]* 90 %START NONUM TOEOL 91 %% 92 <NONUM>{WORD} { 93 int i; 94 95 BEGIN 0; 96 if ((i = kw_lookup(yytext)) == -1) 97 { 98 yylval.str = strdup(yytext); 99 return ID; 100 } 101 return i; 102 } 103 <INITIAL>{WORD}/[0-9]* { 104 int i; 105 106 if ((i = kw_lookup(yytext)) == -1) 107 REJECT; 108 if (i == CONTROLLER || i == DEVICE || i == DISK || 109 i == PSEUDO_DEVICE || i == AT) 110 BEGIN NONUM; 111 return i; 112 } 113 <INITIAL>{ID} { 114 BEGIN 0; 115 yylval.str = strdup(yytext); 116 return ID; 117 } 118 \\\"[^"]+\\\" { 119 BEGIN 0; 120 yytext[yyleng-2] = '"'; 121 yytext[yyleng-1] = '\0'; 122 yylval.str = strdup(yytext + 1); 123 return ID; 124 } 125 \"[^"]+\" { 126 BEGIN 0; 127 yytext[yyleng-1] = '\0'; 128 yylval.str = strdup(yytext + 1); 129 return ID; 130 } 131 <TOEOL>[^# \t\n]* { 132 BEGIN 0; 133 yylval.str = strdup(yytext); 134 return ID; 135 } 136 0[0-7]* { 137 yylval.val = octal(yytext); 138 return NUMBER; 139 } 140 0x[0-9a-fA-F]+ { 141 yylval.val = hex(yytext); 142 return NUMBER; 143 } 144 -?[1-9][0-9]* { 145 yylval.val = atoi(yytext); 146 return NUMBER; 147 } 148 [0-9]"."[0-9]* { 149 yylval.val = (int) (60 * atof(yytext) + 0.5); 150 return FPNUMBER; 151 } 152 "?" { 153 yylval.val = -1; 154 return NUMBER; 155 } 156 \n/[ \t] { 157 yyline++; 158 } 159 \n { 160 yyline++; 161 return SEMICOLON; 162 } 163 #.* { /* Ignored (comment) */; } 164 [ \t\f]* { /* Ignored (white space) */; } 165 ";" { return SEMICOLON; } 166 "," { return COMMA; } 167 "=" { BEGIN TOEOL; return EQUALS; } 168 "@" { return AT; } 169 . { return yytext[0]; } 170 171 %% 172 /* 173 * kw_lookup 174 * Look up a string in the keyword table. Returns a -1 if the 175 * string is not a keyword otherwise it returns the keyword number 176 */ 177 178 int 179 kw_lookup(word) 180 register char *word; 181 { 182 register struct kt *kp; 183 184 for (kp = key_words; kp->kt_name != 0; kp++) 185 if (eq(word, kp->kt_name)) 186 return kp->kt_val; 187 return -1; 188 } 189 190 /* 191 * Number conversion routines 192 */ 193 194 int 195 octal(str) 196 char *str; 197 { 198 int num; 199 200 (void) sscanf(str, "%o", &num); 201 return num; 202 } 203 204 int 205 hex(str) 206 char *str; 207 { 208 int num; 209 210 (void) sscanf(str+2, "%x", &num); 211 return num; 212 } 213