forked from antlr/examples-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBytecode.stg
74 lines (57 loc) · 990 Bytes
/
Bytecode.stg
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
group Bytecode;
program(globals,functions) ::= <<
.class public Wrapper
.super java/lang/Object
<globals>
<functions>
>>
variable(type,name) ::= ".var is <name> <type><\n>"
globalVariable(type,name) ::= ".field <name> <type><\n>"
function(type,name,args,locals,stats) ::= <<
.method <name>(<args:{<it.type>}>)<type>
<locals>
<stats; separator="\n">
return
.end method
>>
type_int() ::= "I"
type_char() ::= "C"
type_user_object(name) ::= "L<name>;"
parameter(type,name) ::= "<type> <name>"
statement(expr) ::= "<expr>"
statementList(locals,stats) ::= <<
<locals>
<stats; separator="\n">
>>
forLoop(e1,e2,e3,locals,stats) ::= <<
<e1>
start:
<e2>
bf exit
<locals>
<stats; separator="\n">
<e3>
goto start
exit:
>>
assign(lhs,rhs) ::= <<
<rhs>
store <lhs>
>>
equals(left,right) ::= <<
<left>
<right>
equals
>>
lessThan(left,right) ::= <<
<left>
<right>
lt
>>
add(left,right) ::= <<
<left>
<right>
add
>>
refVar(id) ::= "push <id>"
iconst(value) ::= "iconst <value>"