├── .clang-format ├── .gitignore ├── CMakeLists.txt ├── Makefile ├── README.md ├── bitstream.cpp ├── commandline.cpp ├── crtp.cpp ├── driver.cpp ├── memorybuffer-argv.cpp ├── memorybuffer.cpp ├── mmap-read.cpp ├── opttable.cpp ├── path.cpp ├── read.cpp ├── refcountedbase.cpp ├── saveandrestore.cpp ├── sourcemgr-simple.cpp └── sourcemgr.cpp /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | ColumnLimit: 59 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/LLVMPlayground/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/LLVMPlayground/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/LLVMPlayground/HEAD/README.md -------------------------------------------------------------------------------- /bitstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/LLVMPlayground/HEAD/bitstream.cpp -------------------------------------------------------------------------------- /commandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/LLVMPlayground/HEAD/commandline.cpp -------------------------------------------------------------------------------- /crtp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/LLVMPlayground/HEAD/crtp.cpp -------------------------------------------------------------------------------- /driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/LLVMPlayground/HEAD/driver.cpp -------------------------------------------------------------------------------- /memorybuffer-argv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/LLVMPlayground/HEAD/memorybuffer-argv.cpp -------------------------------------------------------------------------------- /memorybuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/LLVMPlayground/HEAD/memorybuffer.cpp -------------------------------------------------------------------------------- /mmap-read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/LLVMPlayground/HEAD/mmap-read.cpp -------------------------------------------------------------------------------- /opttable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/LLVMPlayground/HEAD/opttable.cpp -------------------------------------------------------------------------------- /path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/LLVMPlayground/HEAD/path.cpp -------------------------------------------------------------------------------- /read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/LLVMPlayground/HEAD/read.cpp -------------------------------------------------------------------------------- /refcountedbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/LLVMPlayground/HEAD/refcountedbase.cpp -------------------------------------------------------------------------------- /saveandrestore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/LLVMPlayground/HEAD/saveandrestore.cpp -------------------------------------------------------------------------------- /sourcemgr-simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/LLVMPlayground/HEAD/sourcemgr-simple.cpp -------------------------------------------------------------------------------- /sourcemgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/LLVMPlayground/HEAD/sourcemgr.cpp --------------------------------------------------------------------------------