CS4200

Edition 2023-2024
Course CS4200
Start-
EndFri, Nov 10, 2023 23:59:00
Enroll untilMon, Oct 16, 2023 23:59:00

About

Compilers translate the source code of programs in a high-level programming language into executable (virtual) machine code. In this course you will study the architecture of compilers, and important concepts and techniques underlying the components of that architecture. You will study these techniques by applying them in practice to implement your own compiler for a small language.

The course covers the following topics:

  • Syntax and parsing

  • Static semantics and type checking

  • Virtual machines, assembly code, byte code

  • Interpretation vs. compilation

  • Code generation

  • Memory management, garbage collection

  • Data-flow analysis

  • Optimization