mirror of
https://github.com/PKUFlyingPig/cs-self-learning.git
synced 2026-06-25 19:07:04 +08:00
1.7 KiB
1.7 KiB
Course Code: Course Name
Descriptions
- Offered by:·KAIST
- Prerequisites: Data Structures, Basic Understanding of Computer Systems and Rust Programming
- Programming Languages: Rust
- Difficulty: 🌟🌟🌟🌟
- Class Hour: 80 hours
This course provides a compiler framework code called KECC(KAIST Educational C Compiler) written in Rust, based on which students build some core parts of the compiler. Compared to most compiler courses, this course has the following main characteristics:
- The course focuses on the real C language rather than a custom toy language, and uses C language fuzzing tools(Csmith) for testing.
- Unlike traditional compiler courses that strongly emphasize the frontend part, only the first assignment is about frontend and gets you familiar with the structure of abstract syntax tree. The course mainly focuses on IR design, generation and optimization, as well as RISC-V assembly code generation.
- The course comes with accompanying videos that provide detailed code tours, which is beginner-friendly.