SkillAgentSearch skills...

Wgtcc

A small C11 compiler

Install / Use

/learn @wgtdkp/Wgtcc
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

wgtcc Build Status codecov <a href="https://996.icu"><img src="https://img.shields.io/badge/link-996.icu-red.svg"></a>

A small C11 compiler in C++11.

Environment

  1. x86-64
  2. linux 4.4.0
  3. clang 3.8.0 (or any version supports C++11)

Build

cmake . -Bbuild
cd build && make && make test

Install

make install

Then you can play with the examples:

wgtcc example/heart.c
wgtcc example/chinese.c

Without Install

Try this:

./wgtcc -no-pie -I../include ../example/heart.c

Notice

As wgtcc doesn't support PIC/PIE, if you are using gcc >= 6.2.0, specify -no-pie explicitly:

wgtcc -no-pie example/heart.c
wgtcc -no-pie example/chinese.c

Goal

wgtcc is aimed to implement the full C11 standard with some exceptions:

  1. Some features are supported only in grammar level(like keyword register).
  2. Features that disgusting me are removed (like default int type without type specifier).
  3. Some non standard GNU extensions are supported, but you should not rely on wgtcc of a full supporting.

Front End

A basic recursive descent parser.

Back End

wgtcc generates code from AST directly. The algorithm is TOSCA (top of stack caching). It is far from generating efficient code, but at least it works and generates code efficently.

Memory Management

Through wgtcc was written in C++, I paid no effort for memory management except for a simple memory pool to accelerate allocations. only new is preferred because wgtcc runs fast and exits immediately after finishing parsing and generating code.

Reference

  1. Compilers Principles, Techniques and Tools. Second Edition.
  2. N1548, C11 standard draft
  3. 64-ia-32-architectures-software-developer-manual-325462
  4. 8cc
  5. 9c
  6. macro expansion algorithm

Todo

  • [ ] support GNU extensions (e.g. keyword __attribute__)
  • [ ] support variable length array
  • [ ] optimization (e.g. register allocation)
  • [x] support type qualification
View on GitHub
GitHub Stars773
CategoryDevelopment
Updated9d ago
Forks133

Languages

C++

Security Score

100/100

Audited on Mar 18, 2026

No findings