https://github.com/jlchntoz/jitbrainfuck
A tiny .NET JIT compiler for Brainfuck written in C#
https://github.com/jlchntoz/jitbrainfuck
brainfuck brainfuck-compiler brainfuck-parser c-sharp cil jit-compiler
Last synced: about 1 year ago
JSON representation
A tiny .NET JIT compiler for Brainfuck written in C#
- Host: GitHub
- URL: https://github.com/jlchntoz/jitbrainfuck
- Owner: JLChnToZ
- License: mit
- Created: 2016-12-06T15:33:13.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-20T11:04:26.000Z (over 8 years ago)
- Last Synced: 2025-02-28T09:17:55.904Z (over 1 year ago)
- Topics: brainfuck, brainfuck-compiler, brainfuck-parser, c-sharp, cil, jit-compiler
- Language: C#
- Size: 21.5 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
JIT Brainfuck
=============
[](https://ci.appveyor.com/project/JLChnToZ/jitbrainfuck)
This is a tiny experiment on creating a JIT compiler for [Brainfuck](https://en.wikipedia.org/wiki/Brainfuck) written in C#. This program can optimize and compile the Brainfuck code into [CIL bytecode](https://en.wikipedia.org/wiki/Common_Intermediate_Language), which can be run by .NET Framework and Mono directly. Although this is a JIT compiler, it still have a traditional interpreter fallback, which in case the JIT compiler is not working.
Nothing more or less, the entire source for JIT Brainfuck is licensed in [MIT license](LICENSE).