forked from mukundsood1996/stfu
-
Notifications
You must be signed in to change notification settings - Fork 8
/
ICG.l
132 lines (102 loc) · 2.67 KB
/
ICG.l
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
%{
#include <stdio.h>
#include "y.tab.h"
//#define YY_USER_ACTION yylloc.first_line = yylloc.last_line = yylineno;
extern void yyerror(const char *); /* prints grammar violation message */
extern int sym_type(const char *); /* returns type from symbol table */
#define sym_type(identifier) IDENTIFIER /* with no symbol table, fake it */
static void comment(void);
static int check_type(void);
%}
%option yylineno
D [0-9]
L [a-zA-Z_]
A [a-zA-Z_0-9]
WS [ \t\v\n\f]
%%
"/*" { comment(); }
"//"[^\n]* { /* Consume Comment */ }
/* Data Types */
int { return(INT); }
float { return(FLOAT); }
char { return(CHAR); }
void { return(VOID); }
main { return(MAIN); }
/* User Defined Data Types */
struct { return(STRUCT); }
/* Headers */
"#" { return HASH; }
include { return INCLUDE; }
define { return DEFINE; }
/* C Libraries */
"math.h" { return MATH; }
"stdio.h" { return STDIO; }
"stdlib.h" { return STDLIB; }
"string.h" { return STRING; }
"time.h" { return TIME; }
/* Control Structures */
for { return(FOR); }
/* User Defined Data Types, Identifiers */
{L}{A}* { strcpy(yylval.string,yytext); return IDENTIFIER;}
{L}{A}*\.{L}{A}* { strcpy(yylval.string,yytext); return IDENTIFIER;}
{D}+ { strcpy(yylval.string,yytext); return INTEGER_LITERAL;}
{D}+\.{D}+ { strcpy(yylval.string,yytext); return FLOAT_LITERAL;}
\"{A}+(".h"|".c")\" {return HEADER_LITERAL;}
L?\"(\\.|[^\\"])*\" { return(STRING_LITERAL); }
/* Assignment Operators */
"+=" {return(ADD_ASSIGN); }
"-=" {return(SUB_ASSIGN); }
/* Relational Operators */
"++" {return(INC_OP); }
"--" {return(DEC_OP); }
"<=" {return(LE_OP); }
">=" {return(GE_OP); }
"==" {return(EQ_OP); }
"!=" {return(NE_OP); }
/* Basic Syntax */
";" {return(';'); }
"{" {return('{'); }
"}" {return('}'); }
"," {return(','); }
":" {return(':'); }
"=" {return('='); }
"(" {return('('); }
")" {return(')'); }
("["|"<:") {return('['); }
("]"|":>") {return(']'); }
"." {return('.'); }
"&" {return('&'); }
"!" {return('!'); }
"~" {return('~'); }
"-" {return('-'); }
"+" {return('+'); }
"*" {return('*'); }
"/" {return('/'); }
"%" {return('%'); }
"<" {return('<'); }
">" {return('>'); }
"^" {return('^'); }
"|" {return('|'); }
"?" {return('?'); }
{WS}+ { /* whitespace separates tokens */}
. { printf("No Match, Invalid Expression %s\n", yytext); }
%%
int yywrap(void)
{
return 1;
}
static void comment(void)
{
int c;
while ((c = input()) != 0)
if (c == '*')
{
while ((c = input()) == '*')
;
if (c == '/')
return;
if (c == 0)
break;
}
yyerror("unterminated comment");
}