首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
代做COMPILER、代写C/C++设计编程
项目预算:
开发周期:
发布时间:
要求地区:
COMPILER PROJECT 2024
The goal of the term-project is to implement a bottom-up syntax analyzer (a.k.a., parser) as we’ve
learned. More specifically, you will implement the syntax analyzer for a simplified C programming
language with the following context free grammar G;
CFG G:
01: CODE → VDECL CODE | FDECL CODE | ϵ
02: VDECL → vtype id semi | vtype ASSIGN semi
03: ASSIGN → id assign RHS
04: RHS → EXPR | literal | character | boolstr
05: EXPR → EXPR addsub EXPR | EXPR multdiv EXPR
06: EXPR → lparen EXPR rparen | id | num
07: FDECL → vtype id lparen ARG rparen lbrace BLOCK RETURN rbrace
08: ARG → vtype id MOREARGS | ϵ
09: MOREARGS → comma vtype id MOREARGS | ϵ
10: BLOCK → STMT BLOCK | ϵ
11: STMT → VDECL | ASSIGN semi
12: STMT → if lparen COND rparen lbrace BLOCK rbrace ELSE
13: STMT → while lparen COND rparen lbrace BLOCK rbrace
14: COND → COND comp COND | boolstr
15: ELSE → else lbrace BLOCK rbrace | ϵ
16: RETURN → return RHS semi
✓ Terminals (20)
1. vtype for the types of variables and functions
2. num for signed integers
3. character for a single character
4. boolstr for Boolean strings
5. literal for literal strings
6. id for the identifiers of variables and functions
7. if, else, while, and return for if, else, while, and return statements respectively 8. addsub for + and - arithmetic operators
9. multdiv for * and / arithmetic operators
10. assign for assignment operators
11. comp for comparison operators
12. semi and comma for semicolons and commas respectively
13. lparen, rparen, lbrace, and rbrace for (, ), {, and } respectively
✓ Non-terminals (13)
CODE, VDECL, ASSIGN, RHS, EXPR, FDECL, ARG, MOREARGS, BLOCK, STMT, COND, ELSE,
RETURN
✓ Start symbol: CODE
Descriptions
✓ The given CFG G is ambiguous.
✓ Codes include zero or more declarations of functions and variables (CFG line 1)
✓ Variables are declared with or without initialization (CFG line 2 ~ 3)
✓ The right hand side of assignment operations can be classified into four types; 1) arithmetic
operations (expressions), 2) literal strings, 3) a single character, and 4) Boolean strings (CFG
4)
✓ Arithmetic operations are the combinations of +, -, *, / operators (CFG line 5 ~ 6)
✓ Functions can have zero or more input arguments (CFG line 7 ~ 9)
✓ Function blocks include zero or more statements (CFG line 10)
✓ There are four types of statements: 1) variable declarations, 2) assignment operations, 3) ifelse
statements, and 4) while statements (CFG line 11 ~ 13)
✓ if and while statements include a conditional operation which consists of Boolean strings
and condition operators (CFG line 12 ~ 14)
✓ if statements can be used with or without an else statement (CFG line 12 & 15) ✓ return statements return 1) the computation result of arithmetic operations, 2) literal strings,
3) a single character, or 4) Boolean strings (CFG line 16)
✓ This is not a CFG for C. This is for simplified C. So, you don’t need to consider grammars
and structures not mentioned in this specification.
Based on this CFG, you should implement a bottom-up parser as follows:
✓ Discard an ambiguity in the CFG
✓ Construct a SLR parsing table for the non-ambiguous CFG through the following website:
http://jsmachines.sourceforge.net/machines/slr.html
✓ Implement a SLR parsing program for the simplified C programming language by using the
constructed table.
For the implementation, please use C, C++, or Python (If you want to use . Your syntax analyzer
must run on Linux or Unix-like OS without any error.
Your syntax analyzer should work as follows:
✓ The execution flow of your syntax analyzer:
syntax_analyzer
✓ Input: A sequence of tokens (terminals) written in the input file
e.g., vtype id semi vtype id lparen rparen lbrace if lparen boolstr comp boolstr rparen lbrace
rbrace
✓ Output
◼ (If a parsing decision output is “accept”) please construct a parse tree (not abstract
syntax tree) for the input sequence
◆ You can design the data structure to represent the tree as you want.
◼ (If an output is “reject”) please make an error report which explains why and where the
error occurred (e.g., line number)
Term-project schedule and submission
✓ Deadline: 6/9, 23:59 (through an e-class system)
◼ For a delayed submission, you will lose 0.1 * your original project score per each
delayed day
✓ Submission file: team_
.zip or .tar.gz
◼ The compressed file should contain
◆ The source code of your syntax analyzer with detailed comments
◆ The executable binary file of your syntax analyzer (if you implemented using
a complied language)
◆ Documentation (the most important thing!)
⚫ It must include 1) your non-ambiguous CFG G and 2) your SLR parsing table
⚫ It must also include any change in the CFG G and all about how your syntax
analyzer works for validating token sequences (for example, overall
procedures, implementation details like algorithms and data structures,
working examples, and so on)
◆ Test input files and outputs which you used in this project
⚫ The test input files are not given. You should make the test files, by yourself,
which can examine all the syntax grammars.
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!