MazuCC

A minimalist C compiler with x86_64 code generation

Github星跟踪图

MazuCC

MazuCC is a minimalist C compiler with x86_64 code generation.
It is intended to support partial C99 language features while keeping the code
as small and simple as possible.

Build

Run make to build:

$ make

MazuCC comes with unit tests. To run the tests, give "check" as an argument:

$ make check

MazuCC is known to work on both GNU/Linux and macOS.

Use MazuCC to compile C source:

$ ./mzcc  sample/nqueen.c

Alternatively, MazuCC accepts the stream from standard input. The equivalent
form for the above command is:

$ cat sample/nqueen.c, ./mzcc -

You will get the generated x86_64 assembly in AT&T syntax. The output can be
assembled and linked into a valid executable:

$ ./mzcc -o sample/nqueen.s sample/nqueen.c
$ gcc -no-pie -o sample/nqueen sample/nqueen.s

If MazuCC is compiled and executed on macOS, the above argument -no-pie
should be eliminated.

Reference output of MazuCC-compiled sample/nqueen:

Q . . . . . . .
. . . . Q . . .
. . . . . . . Q
. . . . . Q . .
. . Q . . . . .
. . . . . . Q .
. Q . . . . . .
. . . Q . . . .

Alternatively, you can dump internal abstract syntax tree:

echo 'struct {int x; char y; struct { int t; } z; } a;', ./mzcc --dump-ast -

The expected output in S-expression form:

(decl (struct (int)
              (char)
              ((struct (int)))) a)

Acknowledge

MazuCC is heavily inspired by 8cc.

License

MazuCC is freely redistributable under the BSD 2 clause license. Use of
this source code is governed by a BSD-style license that can be found in the
LICENSE file.

主要指标

概览
名称与所有者jserv/MazuCC
主编程语言C
编程语言Makefile (语言数: 4)
平台
许可证BSD 2-Clause "Simplified" License
所有者活动
创建于2019-04-21 19:45:22
推送于2020-10-09 03:11:18
最后一次提交2020-10-09 11:11:17
发布数0
用户参与
星数528
关注者数32
派生数66
提交数49
已启用问题?
问题数10
打开的问题数5
拉请求数14
打开的拉请求数0
关闭的拉请求数0
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?