-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathconstexp.l
144 lines (111 loc) · 3.56 KB
/
constexp.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
133
134
135
136
137
138
139
140
141
142
143
144
/*************************************************************************
*
* Copyright (c) 2014-2025 Barbara Geller & Ansel Sermersheim
* Copyright (c) 1997-2014 Dimitri van Heesch
*
*************************************************************************/
%{
#include <constexp.h>
#include <ce_parse.h>
#include <cppvalue.h>
#include <message.h>
#define YY_NO_INPUT 1
QString g_strToken;
CPPValue g_resultValue;
int g_constExpLineNr;
QString g_constExpFileName;
static QString s_inputString;
static int s_inputPosition;
#undef YY_INPUT
#define YY_INPUT(buf,result,max_size) result = yyread(buf,max_size);
static int yyread(char *buf, int max_size)
{
int len = max_size;
const char *src = s_inputString.constData() + s_inputPosition;
if (s_inputPosition + len >= s_inputString.size_storage()) {
len = s_inputString.size_storage() - s_inputPosition;
}
memcpy(buf, src, len);
s_inputPosition += len;
return len;
}
%}
%option never-interactive
%option nounistd
%option nounput
CONSTSUFFIX ([uU][lL]?[lL]?)|([lL][lL]?[uU]?)
%%
"?" { return TOK_QUESTIONMARK; }
":" { return TOK_COLON; }
"||" { return TOK_OR; }
"&&" { return TOK_AND; }
"|" { return TOK_BITWISEOR; }
"^" { return TOK_BITWISEXOR; }
"&" { return TOK_AMPERSAND; }
"!=" { return TOK_NOTEQUAL; }
"==" { return TOK_EQUAL; }
"<" { return TOK_LESSTHAN; }
">" { return TOK_GREATERTHAN; }
"<=" { return TOK_LESSTHANOREQUALTO; }
">=" { return TOK_GREATERTHANOREQUALTO; }
"<<" { return TOK_SHIFTLEFT; }
">>" { return TOK_SHIFTRIGHT; }
"+" { return TOK_PLUS; }
"-" { return TOK_MINUS; }
"*" { return TOK_STAR; }
"/" { return TOK_DIVIDE; }
"%" { return TOK_MOD; }
"~" { return TOK_TILDE; }
"!" { return TOK_NOT; }
"(" { return TOK_LPAREN; }
")" { return TOK_RPAREN; }
"'"(([^\'\n\r\\]+)|(\\(([ntvbrfa\\?'\"])|([0-9]+)|([xX][0-9a-fA-F]+))))"'" {
g_strToken = QString::fromUtf8(yytext);
return TOK_CHARACTER;
}
0[0-7]*{CONSTSUFFIX}? {
g_strToken = QString::fromUtf8(yytext);
return TOK_OCTALINT;
}
[1-9][0-9]*{CONSTSUFFIX}? {
g_strToken = QString::fromUtf8(yytext);
return TOK_DECIMALINT;
}
(0x|0X)[0-9a-fA-F]+{CONSTSUFFIX}? {
QString text = QString::fromUtf8(yytext);
g_strToken = text.mid(2);
return TOK_HEXADECIMALINT;
}
(([0-9]+\.[0-9]*)|([0-9]*\.[0-9]+))([eE]([\-\+])?[0-9]+)?([fFlL])? {
g_strToken = QString::fromUtf8(yytext);
return TOK_FLOAT;
}
([0-9]+[eE])([\-\+])?[0-9]+([fFlL])? {
g_strToken = QString::fromUtf8(yytext);
return TOK_FLOAT;
}
.
\n
%%
bool parseconstexp(const QString &fileName, int lineNr, const QString &input)
{
g_constExpFileName = fileName;
g_constExpLineNr = lineNr;
s_inputString = input;
s_inputPosition = 0;
QString s = input.simplified();
if (s == "0L"|| s == "! 1L") {
return false;
} else if (s == "1L" || s == "! 0L") {
return true;
}
constexpYYrestart(constexpYYin);
constexpYYparse();
return ((long)g_resultValue != 0);
}
extern "C" {
int constexpYYwrap()
{
return 1;
}
}