-
Notifications
You must be signed in to change notification settings - Fork 1
/
c99.lua
572 lines (420 loc) · 19.7 KB
/
c99.lua
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
-- C99 grammar written in lpeg.re.
-- Adapted and translated from plain LPeg grammar for C99
-- written by Wesley Smith https://github.com/Flymir/ceg
--
-- Copyright (c) 2009 Wesley Smith
--
-- Permission is hereby granted, free of charge, to any person obtaining a copy
-- of this software and associated documentation files (the "Software"), to deal
-- in the Software without restriction, including without limitation the rights
-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-- copies of the Software, and to permit persons to whom the Software is
-- furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in
-- all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-- THE SOFTWARE.
-- Reference used in the original and in this implementation:
-- http://www.open-std.org/JTC1/SC22/wg14/www/docs/n1124.pdf
local c99 = {}
local re = require("relabel")
local defs = {}
local util = require("titan-compiler.util")
c99.tracing = false
defs["trace"] = function(s, i)
if c99.tracing then
local line, col = util.get_line_number(s, i)
print("TRACE", line, col, "[[" ..s:sub(i, i+ 256):gsub("\n.*", "") .. "]]")
end
return true
end
local typedefs = {}
local function elem(xs, e)
for _, x in ipairs(xs) do
if e == x then
return true
end
end
return false
end
defs["store_typedef"] = function(s, i, decl)
print((require("inspect"))(decl))
if elem(decl.spec, "typedef") then
local names = decl.ids[1].name
if names[1] then
for _, name in ipairs(names) do
if name ~= "*" then
typedefs[name] = true
end
end
elseif names.declarator then
for _, name in ipairs(names.declarator) do
if name ~= "*" then
typedefs[name] = true
end
end
end
end
return true, decl
end
defs["is_typedef"] = function(s, i, id)
print("is " .. id .. " a typedef? " .. tostring(not not typedefs[id]))
return typedefs[id], typedefs[id] and id
end
defs["empty_table"] = function()
return true, {}
end
--==============================================================================
-- Lexical Rules (used in both preprocessing and language processing)
--==============================================================================
local lexical_rules = [[--lpeg.re
TRACE <- ({} => trace)
EMPTY_TABLE <- ("" => empty_table)
--------------------------------------------------------------------------------
-- Identifiers
IDENTIFIER <- { identifierNondigit (identifierNondigit / [0-9])* } _
identifierNondigit <- [a-zA-Z_]
/ universalCharacterName
identifierList <- IDENTIFIER ("," _ IDENTIFIER)*
--------------------------------------------------------------------------------
-- Universal Character Names
universalCharacterName <- "\u" hexQuad
/ "\U" hexQuad hexQuad
hexQuad <- hexDigit^4
--------------------------------------------------------------------------------
-- String Literals
STRING_LITERAL <- { ('"' / 'L"') sChar* '"' } _
sChar <- (!["\%nl] .) / escapeSequence
--------------------------------------------------------------------------------
-- Escape Sequences
escapeSequence <- simpleEscapeSequence
/ octalEscapeSequence
/ hexEscapeSequence
/ universalCharacterName
simpleEscapeSequence <- "\" ['"?\abfnrtv]
octalEscapeSequence <- "\" [0-7] [0-7]^-2
hexEscapeSequence <- "\x" hexDigit+
--------------------------------------------------------------------------------
-- Constants
INTEGER_CONSTANT <- { ( hexConstant integerSuffix?
/ octalConstant integerSuffix?
/ decimalConstant integerSuffix?
) } _
decimalConstant <- [1-9] digit*
octalConstant <- "0" [0-7]*
hexConstant <- ("0x" / "0X") hexDigit+
digit <- [0-9]
hexDigit <- [0-9a-fA-F]
integerSuffix <- unsignedSuffix longSuffix?
/ unsignedSuffix longLongSuffix
/ longLongSuffix unsignedSuffix?
/ longSuffix unsignedSuffix?
unsignedSuffix <- [uU]
longSuffix <- [lL]
longLongSuffix <- "ll" / "LL"
FLOATING_CONSTANT <- { ( decimalFloatingConstant
/ hexFloatingConstant
) } _
decimalFloatingConstant <- fractionalConstant exponentPart? floatingSuffix?
/ digit+ exponentPart floatingSuffix?
hexFloatingConstant <- ("0x" / "0X" ) ( hexFractionalConstant binaryExponentPart floatingSuffix?
/ hexDigit+ binaryExponentPart floatingSuffix? )
fractionalConstant <- digit* "." digit+
/ digit "."
exponentPart <- [eE] [-+]? digit+
hexFractionalConstant <- hexDigit+? "." hexDigit+
/ hexDigit+ "."
binaryExponentPart <- [pP] digit+
floatingSuffix <- [flFL]
CHARACTER_CONSTANT <- { ("'" / "L'") cChar+ "'" } _
cChar <- (!['\%nl] .) / escapeSequence
enumerationConstant <- IDENTIFIER
]]
local common_expression_rules = [[--lpeg.re
--------------------------------------------------------------------------------
-- Common Expression Rules
multiplicativeExpression <- {| castExpression ({:op: [*/%] :} _ castExpression )* |}
additiveExpression <- {| multiplicativeExpression ({:op: [-+] :} _ multiplicativeExpression )* |}
shiftExpression <- {| additiveExpression ({:op: ("<<" / ">>") :} _ additiveExpression )* |}
relationalExpression <- {| shiftExpression ({:op: (">=" / "<=" / "<" / ">") :} _ shiftExpression )* |}
equalityExpression <- {| relationalExpression ({:op: ("==" / "!=") :} _ relationalExpression )* |}
bandExpression <- {| equalityExpression ({:op: "&" :} _ equalityExpression )* |}
bxorExpression <- {| bandExpression ({:op: "^" :} _ bandExpression )* |}
borExpression <- {| bxorExpression ({:op: "|" :} _ bxorExpression )* |}
andExpression <- {| borExpression ({:op: "&&" :} _ borExpression )* |}
orExpression <- {| andExpression ({:op: "||" :} _ andExpression )* |}
conditionalExpression <- {| orExpression ({:op: "?" :} _ expression ":" _ conditionalExpression)? |}
constantExpression <- conditionalExpression
]]
--==============================================================================
-- Language Rules (Phrase Structure Grammar)
--==============================================================================
local language_rules = [[--lpeg.re
--------------------------------------------------------------------------------
-- External Definitions
translationUnit <- %s* {| externalDeclaration+ |} "<EOF>"
externalDeclaration <- functionDefinition
/ declaration
functionDefinition <- {| {:spec: {| declarationSpecifier+ |} :} {:function: declarator :} {:decls: declaration* :} {:code: compoundStatement :} |}
--------------------------------------------------------------------------------
-- Declarations
declaration <- {| TRACE {:spec: {| declarationSpecifier+ |} :} TRACE ({:ids: initDeclarationList :})? gccExtensionSpecifier* ";" _ |} => store_typedef
declarationSpecifier <- storageClassSpecifier
/ typeSpecifier
/ typeQualifier
/ functionSpecifier
initDeclarationList <- {| initDeclarator ("," _ initDeclarator)* |}
initDeclarator <- {| {:name: declarator :} ("=" _ {:value: initializer :} )? |}
gccExtensionSpecifier <- "__attribute__" _ "(" _ "(" _ gccAttributeList ")" _ ")" _
/ gccAsm
gccAsm <- "__asm__" _ "(" _ (STRING_LITERAL / ":" _ / expression)+ ")" _
gccAttributeList <- gccAttributeItem ("," _ gccAttributeItem )*
gccAttributeItem <- IDENTIFIER ("(" _ (expression ("," _ expression)*)? ")" _)?
/ ""
storageClassSpecifier <- { "typedef" } _
/ { "extern" } _
/ { "static" } _
/ { "auto" } _
/ { "register" } _
typeSpecifier <- typedefName
/ { "void" } _
/ { "char" } _
/ { "short" } _
/ { "int" } _
/ { "long" } _
/ { "float" } _
/ { "double" } _
/ { "signed" } _
/ { "unsigned" } _
/ { "_Bool" } _
/ { "Complex" } _
/ structOrUnionSpecifier
/ enumSpecifier
typeQualifier <- { "const" } _
/ { "restrict" } _
/ { "volatile" } _
functionSpecifier <- { "inline" } _
structOrUnionSpecifier <- {| {:type: structOrUnion :} ({:id: IDENTIFIER :})? "{" _ {| structDeclaration+ |} "}" _ |}
/ {| {:type: structOrUnion :} {:id: IDENTIFIER :} |}
structOrUnion <- { "struct" } _
/ { "union" } _
structDeclaration <- {| {:type: specifierQualifier+ :} {:ids: structDeclaratorList :} |} ";" _
specifierQualifier <- typeSpecifier
/ typeQualifier
structDeclaratorList <- structDeclarator ("," _ structDeclarator)*
structDeclarator <- declarator (":" _ constantExpression)?
enumSpecifier <- {| {:type: enum :} ({:id: IDENTIFIER :})? "{" _ {:values: {| enumeratorList |} :} ("," _)? "}" _ |}
/ {| {:type: enum :} {:id: IDENTIFIER :} |}
enum <- { "enum" } _
enumeratorList <- enumerator ("," _ enumerator)*
enumerator <- {| {:id: enumerationConstant :} ("=" _ {:value: constantExpression :})? |}
declarator <- {| pointer? directDeclarator |}
directDeclarator <- IDENTIFIER ddRec
/ "(" _ {:declarator: declarator :} ")" _ ddRec
ddRec <- "[" _ {:idx: typeQualifier* assignmentExpression? :} "]" _ ddRec
/ "[" _ {:idx: { "static" } _ typeQualifier* assignmentExpression :} "]" _ ddRec
/ "[" _ {:idx: typeQualifier+ { "static" } _ assignmentExpression :} "]" _ ddRec
/ "[" _ {:idx: typeQualifier* { "*" } _ :} "]" _ ddRec
/ "(" _ {:params: {| parameterTypeList |} :} ")" _ ddRec
/ "(" _ {:params: {| identifierList? |} :} ")" _ ddRec
/ ""
pointer <- ({ "*" } _ typeQualifier*)+
parameterTypeList <- parameterList ("," _ { "..." } _)?
parameterList <- parameterDeclaration ("," _ parameterDeclaration)*
parameterDeclaration <- {| declarationSpecifier+ (declarator / abstractDeclarator?) |}
typeName <- specifierQualifier+ abstractDeclarator?
abstractDeclarator <- pointer
/ pointer? directAbstractDeclarator
directAbstractDeclarator <- ("(" _ abstractDeclarator ")" _) directAbstractDeclarator2*
/ directAbstractDeclarator2+
directAbstractDeclarator2 <- "[" _ assignmentExpression? "]" _
/ "[" _ "*" _ "]" _
/ "(" _ parameterTypeList? ")" _
typedefName <- IDENTIFIER => is_typedef
initializer <- assignmentExpression
/ "{" _ initializerList ("," _)? "}" _
initializerList <- initializerList2 ("," _ initializerList2)*
initializerList2 <- designation? initializer
designation <- designator+ "=" _
designator <- "[" _ constantExpression "]" _
/ "." _ IDENTIFIER
--------------------------------------------------------------------------------
-- Statements
statement <- labeledStatement
/ compoundStatement
/ expressionStatement
/ selectionStatement
/ iterationStatement
/ jumpStatement
/ gccAsm ";" _
labeledStatement <- IDENTIFIER ":" _ statement
/ "case" _ constantExpression ":" _ statement
/ "default" _ ":" _ statement
compoundStatement <- "{" _ blockItem+ "}" _
blockItem <- declaration
/ statement
expressionStatement <- expression? _ ";" _
selectionStatement <- "if" _ "(" _ expression ")" _ statement "else" _ statement
/ "if" _ "(" _ expression ")" _ statement
/ "switch" _ "(" _ expression ")" _ statement
iterationStatement <- "while" _ "(" _ expression ")" _ statement
/ "do" _ statement "while" _ "(" _ expression ")" _ ";" _
/ "for" _ "(" _ expression? ";" _ expression? ";" _ expression? ")" _ statement
/ "for" _ "(" _ declaration expression? ";" _ expression? ")" _ statement
jumpStatement <- "goto" _ IDENTIFIER ";" _
/ "continue" _ ";" _
/ "break" _ ";" _
/ "return" _ expression? ";" _
--------------------------------------------------------------------------------
-- Language Expression Rules
-- (rules which differ from preprocessing stage)
constant <- ( FLOATING_CONSTANT
/ INTEGER_CONSTANT
/ CHARACTER_CONSTANT
/ enumerationConstant
)
primaryExpression <- IDENTIFIER
/ constant
/ STRING_LITERAL+
/ "(" _ expression ")" _
postfixExpression <- {| primaryExpression peRec |}
/ {| "(" _ {:struct: typeName :} ")" _ "{" _ initializerList ("," _)? "}" _ peRec |}
peRec <- {| "[" _ {:idx: expression :} "]" _ peRec |}
/ {| "(" _ {:args: (argumentExpressionList / EMPTY_TABLE) :} ")" _ peRec |}
/ {| "." _ {:dot: IDENTIFIER :} peRec |}
/ {| "->" _ {:arrow: IDENTIFIER :} peRec |}
/ { "++" } _ peRec
/ { "--" } _ peRec
/ ""
argumentExpressionList <- assignmentExpression ("," _ assignmentExpression)*
unaryExpression <- {| {:preop: prefixOp :} unaryExpression |}
/ {| {:unop: unaryOperator :} castExpression |}
/ {| {:op: "sizeof" :} _ "(" _ typeName ")" _ |}
/ {| {:op: "sizeof" :} _ unaryExpression |}
/ postfixExpression
prefixOp <- { "++" } _
/ { "--" } _
unaryOperator <- [-+~!*&] _
castExpression <- "(" _ typeName ")" _ castExpression
/ unaryExpression
assignmentExpression <- conditionalExpression
/ unaryExpression assignmentOperator assignmentExpression
assignmentOperator <- "=" _
/ "*=" _
/ "/=" _
/ "%=" _
/ "+=" _
/ "-=" _
/ "<<=" _
/ ">>=" _
/ "&=" _
/ "^=" _
/ "|=" _
expression <- assignmentExpression ("," _ assignmentExpression)*
--------------------------------------------------------------------------------
-- Language whitespace
_ <- %s+
S <- %s+
]]
--==============================================================================
-- Preprocessing Rules
--==============================================================================
local preprocessing_rules = [[--lpeg.re
preprocessingLine <- _ ( "#" _ {| directive |} _
/ {| preprocessingTokens? |} _
/ "#" _ preprocessingTokens? _ -- non-directive, ignore
)
preprocessingTokens <- {| (preprocessingToken _)+ |}
directive <- {:directive: "if" :} S {:exp: preprocessingTokens :}
/ {:directive: "ifdef" :} S {:id: IDENTIFIER :}
/ {:directive: "ifndef" :} S {:id: IDENTIFIER :}
/ {:directive: "elif" :} S {:exp: preprocessingTokens :}
/ {:directive: "else" :}
/ {:directive: "endif" :}
/ {:directive: "include" :} S {:exp: headerName :}
/ {:directive: "define" :} S {:id: IDENTIFIER :} "(" _ {:args: {| defineArgs |} :} _ ")" _ {:repl: replacementList :}
/ {:directive: "define" :} S {:id: IDENTIFIER :} _ {:repl: replacementList :}
/ {:directive: "undef" :} S {:id: IDENTIFIER :}
/ {:directive: "line" :} S {:line: preprocessingTokens :}
/ {:directive: "error" :} S {:error: preprocessingTokens? :}
/ {:directive: "pragma" :} S {:pragma: preprocessingTokens? :}
/ gccDirective
/ ""
gccDirective <- {:directive: "include_next" :} S {:exp: headerName :}
defineArgs <- { "..." }
/ identifierList _ "," _ { "..." }
/ identifierList?
replacementList <- {| (preprocessingToken _)* |}
preprocessingToken <- IDENTIFIER
/ preprocessingNumber
/ CHARACTER_CONSTANT
/ STRING_LITERAL
/ punctuator
headerName <- {| {:mode: "<" -> "system" :} { (![%nl>] .)+ } ">" |}
/ {| {:mode: '"' -> "quote" :} { (![%nl"] .)+ } '"' |}
preprocessingNumber <- { ("."? digit) ( digit
/ identifierNondigit
/ [eEpP] [-+]
/ "."
)* }
punctuator <- { digraphs / '...' / '<<=' / '>>=' /
'##' / '<<' / '>>' / '->' / '++' / '--' / '&&' / '||' / '<=' / '>=' /
'==' / '!=' / '*=' / '/=' / '%=' / '+=' / '-=' / '&=' / '^=' / '|=' /
'#' / '[' / ']' / '(' / ')' / '{' / '}' / '.' / '&' /
'*' / '+' / '-' / '~' / '!' / '/' / '%' / '<' / '>' /
'^' / '|' / '?' / ':' / ';' / ',' / '=' }
digraphs <- '%:%:' -> "##"
/ '%:' -> "#"
/ '<:' -> "["
/ ':>' -> "]"
/ '<%' -> "{"
/ '%>' -> "}"
--------------------------------------------------------------------------------
-- Preprocessing whitespace
_ <- %s*
S <- %s+
]]
local preprocessing_expression_rules = [[--lpeg.re
--------------------------------------------------------------------------------
-- Preprocessing Expression Rules
-- (rules which differ from language processing stage)
expression <- constantExpression
constant <- FLOATING_CONSTANT
/ INTEGER_CONSTANT
/ CHARACTER_CONSTANT
primaryExpression <- IDENTIFIER
/ constant
/ {| "(" _ expression _ ")" _ |}
postfixExpression <- primaryExpression peRec
peRec <- "(" _ argumentExpressionList? ")" _ peRec
/ ""
argumentExpressionList <- {| { expression } ("," _ { expression } )* |}
unaryExpression <- {| {:op: unaryOperator :} {:exp: unaryExpression :} |}
/ primaryExpression
unaryOperator <- { [-+~!] } _
/ { "defined" } _
castExpression <- unaryExpression
--------------------------------------------------------------------------------
-- Preprocessing expression whitespace
_ <- %s*
S <- %s+
]]
c99.preprocessing_grammar = re.compile(
preprocessing_rules ..
lexical_rules, defs)
c99.preprocessing_expression_grammar = re.compile(
preprocessing_expression_rules ..
lexical_rules ..
common_expression_rules, defs)
c99.language_grammar = re.compile(
language_rules ..
lexical_rules ..
common_expression_rules, defs)
return c99