├── .gitignore ├── LICENSE ├── README.md ├── hello.c ├── include ├── float.h ├── stdalign.h ├── stdarg.h ├── stdatomic.h ├── stdbool.h ├── stddef.h ├── stdnoreturn.h ├── tccdefs.h ├── tgmath.h └── varargs.h ├── lib ├── bcheck.h ├── bcheck.v ├── bt-exe.v ├── bt-log.v ├── dsohandle.v └── libtcc1 │ ├── libtcc1.v │ └── stdatomic.v ├── make.vsh ├── src ├── dwarf.h.v ├── elf.h.v ├── i386-asm.v ├── libtcc.v ├── tcc.h.v ├── tcc.v ├── tccasm.v ├── tccdbg.v ├── tccelf.v ├── tccgen.v ├── tccpp.v ├── tccrun.v ├── tcctools.v ├── vcc.v ├── x86_64-gen.v └── x86_64-link.v ├── tests └── run_test.v └── vlang.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/README.md -------------------------------------------------------------------------------- /hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/hello.c -------------------------------------------------------------------------------- /include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/include/float.h -------------------------------------------------------------------------------- /include/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/include/stdalign.h -------------------------------------------------------------------------------- /include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/include/stdarg.h -------------------------------------------------------------------------------- /include/stdatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/include/stdatomic.h -------------------------------------------------------------------------------- /include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/include/stdbool.h -------------------------------------------------------------------------------- /include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/include/stddef.h -------------------------------------------------------------------------------- /include/stdnoreturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/include/stdnoreturn.h -------------------------------------------------------------------------------- /include/tccdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/include/tccdefs.h -------------------------------------------------------------------------------- /include/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/include/tgmath.h -------------------------------------------------------------------------------- /include/varargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/include/varargs.h -------------------------------------------------------------------------------- /lib/bcheck.h: -------------------------------------------------------------------------------- 1 | void __bound_exit_dll(size_t *); -------------------------------------------------------------------------------- /lib/bcheck.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/lib/bcheck.v -------------------------------------------------------------------------------- /lib/bt-exe.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/lib/bt-exe.v -------------------------------------------------------------------------------- /lib/bt-log.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/lib/bt-log.v -------------------------------------------------------------------------------- /lib/dsohandle.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/lib/dsohandle.v -------------------------------------------------------------------------------- /lib/libtcc1/libtcc1.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/lib/libtcc1/libtcc1.v -------------------------------------------------------------------------------- /lib/libtcc1/stdatomic.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/lib/libtcc1/stdatomic.v -------------------------------------------------------------------------------- /make.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/make.vsh -------------------------------------------------------------------------------- /src/dwarf.h.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/src/dwarf.h.v -------------------------------------------------------------------------------- /src/elf.h.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/src/elf.h.v -------------------------------------------------------------------------------- /src/i386-asm.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/src/i386-asm.v -------------------------------------------------------------------------------- /src/libtcc.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/src/libtcc.v -------------------------------------------------------------------------------- /src/tcc.h.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/src/tcc.h.v -------------------------------------------------------------------------------- /src/tcc.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/src/tcc.v -------------------------------------------------------------------------------- /src/tccasm.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/src/tccasm.v -------------------------------------------------------------------------------- /src/tccdbg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/src/tccdbg.v -------------------------------------------------------------------------------- /src/tccelf.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/src/tccelf.v -------------------------------------------------------------------------------- /src/tccgen.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/src/tccgen.v -------------------------------------------------------------------------------- /src/tccpp.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/src/tccpp.v -------------------------------------------------------------------------------- /src/tccrun.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/src/tccrun.v -------------------------------------------------------------------------------- /src/tcctools.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/src/tcctools.v -------------------------------------------------------------------------------- /src/vcc.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/src/vcc.v -------------------------------------------------------------------------------- /src/x86_64-gen.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/src/x86_64-gen.v -------------------------------------------------------------------------------- /src/x86_64-link.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/src/x86_64-link.v -------------------------------------------------------------------------------- /tests/run_test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/tests/run_test.v -------------------------------------------------------------------------------- /vlang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipensp/vtcc/HEAD/vlang.c --------------------------------------------------------------------------------