Skip to content

Commit c25d569

Browse files
Create README.md
1 parent edbb3c3 commit c25d569

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

README.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# CS 6120 — Advanced Compilers Project
2+
3+
This repository contains my personal projects and experiments while taking **CS 6120 (Advanced Compilers)**. The goal is to deepen my understanding of compiler construction, optimizations, and advanced language processing techniques by implementing various components of a compiler toolchain.
4+
```
5+
.
6+
├── bril // Submodule to a forked version of https://github.com/sampsyo/bril
7+
├── Cargo.lock
8+
├── Cargo.toml
9+
├── common // Some common utilites
10+
│   ├── Cargo.toml
11+
│   └── src
12+
│   ├── cfg
13+
│   ├── cfg.rs
14+
│   └── lib.rs
15+
├── dataflow_analysis // Data flow dataflow analysis
16+
│   ├── Cargo.toml
17+
│   └── src
18+
│   └── lib.rs
19+
├── driver // Helper application to consume and transform bril programs
20+
│   ├── Cargo.toml
21+
│   └── src
22+
│   └── main.rs
23+
└── optimizations // Some optimization example passes
24+
   ├── Cargo.toml
25+
   └── src
26+
   ├── lib.rs
27+
   ├── local_dead_code_elimination.rs
28+
   └── local_value_numbering.rs
29+
```
30+
## License
31+
The MIT License
32+
33+
Copyright 2024 Kevin Joseph
34+
35+
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:
36+
37+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
38+
39+
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.

0 commit comments

Comments
 (0)