├── .gitignore ├── LICENSE ├── README.md ├── part_1 ├── chunk.s ├── chunk_disassemble_linux_macos.txt ├── hello_0.cpp ├── hello_1.cpp ├── hello_2.cpp └── hello_3.cpp └── part_2 └── funcall.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol-prog/x86-64-minimal-JIT-compiler-Cpp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol-prog/x86-64-minimal-JIT-compiler-Cpp/HEAD/README.md -------------------------------------------------------------------------------- /part_1/chunk.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol-prog/x86-64-minimal-JIT-compiler-Cpp/HEAD/part_1/chunk.s -------------------------------------------------------------------------------- /part_1/chunk_disassemble_linux_macos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol-prog/x86-64-minimal-JIT-compiler-Cpp/HEAD/part_1/chunk_disassemble_linux_macos.txt -------------------------------------------------------------------------------- /part_1/hello_0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol-prog/x86-64-minimal-JIT-compiler-Cpp/HEAD/part_1/hello_0.cpp -------------------------------------------------------------------------------- /part_1/hello_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol-prog/x86-64-minimal-JIT-compiler-Cpp/HEAD/part_1/hello_1.cpp -------------------------------------------------------------------------------- /part_1/hello_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol-prog/x86-64-minimal-JIT-compiler-Cpp/HEAD/part_1/hello_2.cpp -------------------------------------------------------------------------------- /part_1/hello_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol-prog/x86-64-minimal-JIT-compiler-Cpp/HEAD/part_1/hello_3.cpp -------------------------------------------------------------------------------- /part_2/funcall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol-prog/x86-64-minimal-JIT-compiler-Cpp/HEAD/part_2/funcall.cpp --------------------------------------------------------------------------------