Add a new example to the LLVM distribution: a trace-based Brainfuck compiler that...
authorOwen Anderson <resistor@mac.com>
Mon, 30 Aug 2010 07:33:39 +0000 (07:33 +0000)
committerOwen Anderson <resistor@mac.com>
Mon, 30 Aug 2010 07:33:39 +0000 (07:33 +0000)
commit37b25ab2a9557c8664b8d20a493e8febd7242fcf
treed50fdc22b2b0b11e66fe40139d0a1ef39821c7e0
parent83944b7dbe8ac82a8461e20cac3075e839297dd1
Add a new example to the LLVM distribution: a trace-based Brainfuck compiler that uses LLVM as its code generator.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112465 91177308-0d34-0410-b5e6-96231b3b80d8
examples/Makefile
examples/TracingBrainF/BrainF.h [new file with mode: 0644]
examples/TracingBrainF/BrainFCodeGen.cpp [new file with mode: 0644]
examples/TracingBrainF/BrainFInterpreter.cpp [new file with mode: 0644]
examples/TracingBrainF/BrainFOpcodes.cpp [new file with mode: 0644]
examples/TracingBrainF/BrainFTraceRecorder.cpp [new file with mode: 0644]
examples/TracingBrainF/BrainFVM.h [new file with mode: 0644]
examples/TracingBrainF/Makefile [new file with mode: 0644]
examples/TracingBrainF/README [new file with mode: 0644]