-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.txt
45 lines (44 loc) · 1.24 KB
/
test.txt
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
./src
├── ast
│ └── ast.cpp
├── common
│ ├── enum.cpp
│ ├── initval_tree.cpp
│ ├── temp_allocate.cpp
│ └── while_frame.cpp
├── include
│ ├── ast
│ │ └── ast.h
│ ├── common
│ │ ├── base_ast.h
│ │ ├── enum.h
│ │ ├── initval_tree.h
│ │ ├── position.h
│ │ ├── temp_allocate.h
│ │ ├── type_traits.h
│ │ ├── visualize.h
│ │ └── while_frame.h
│ ├── ir
│ │ ├── ir_tree.h
│ │ └── temp_type.h
│ ├── symtable
│ │ └── symbol_table.h
│ └── translate
│ └── ir_generator.h
├── ir
│ ├── ir_tools.cpp
│ ├── ir_tree.cpp
│ └── temp_type.cpp
├── main.cpp
├── parser
│ ├── sysy.l
│ └── sysy.y
├── symtable
│ └── symbol_table.cpp
├── test.ll
└── translate
├── translate_decl.cpp
├── translate_exp.cpp
├── translate_stmt.cpp
└── translate_top.cpp
12 directories, 30 files