vjkqxz / Brainfuck

Brainfuck torture test. VIM syntax file for brainf*ck. Brainfuck interpreters and compilers to C, V. Fast JIT Assembly (two ways), JIT C running (two ways), Perl, Python, php, Ruby, lua, go, awk, neko, PS1, bash, etc etc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Brainfuck

This repository contains various brainfuck stuff.

The classic description of BF is the C translation below, the opcode column is the direct translation used by my Tritium interpreter.

Opcode Brainfuck C
T_MOV > ++ptr;
T_MOV < --ptr;
T_ADD + ++*ptr;
T_ADD - --*ptr;
T_WHL [ while (*ptr) {
T_END ] }
T_PRT . putchar(*ptr);
T_INP , *ptr = getchar();

There are several BF interpreters and tools in this repository.

  1. The BF program "bitwidth.b"; this is something of a torture test, if your interpreter correctly executes this anything else is likely to be dead easy.

But the official output of the Bitwidth program is a display of the cell size ie:

8 Bit cells
Hello World! 255
16 Bit cells
Hello world! 65535
32 bit cells
Hello, world!

Though before you try it you might like to try this slightly less nasty Hello World!

1 []><[][]><[][]><[][]><[][]><[][]><[][]><[][]><[][]><[][]><[]
2 []>+>+>++>++<[>[->++++<<+++>]<<]>----.>->+.+++++++..+++.<+[]
3 [ This is hellbox, a 104 command Hello World               ]
4 [   >+>+>++>++<[>[->++++<<+++>]<<]>----.>>+.+++++++..+++   ]
5 [   .>.<<<+++++++++++++++.>>.+++.------.--------.>+.>++.   ]
6 [ -- Robert de Bath -- 2014                                ]
7 []>>.<<<+++++++++++++++.>>.+++.------.--------.>+.+>++.<<<[]
8 []><[][]><[][]><[][]><[][]><[][]><[][]><[][]><[][]><[][]><[]

Lines 2 and 7 are the code that should be run, lines 1 and 8 are decorative and lines 3 to 6 can contain anything where each line is enclosed in [] and contains balanced brackets.

  1. VIM Syntax highlighting file for brainfuck.

This file highlights the eight BF command characters in four (reasonable) classes. This is the simple part.

In addition it highlights SOME of the other characters as comments. Generally it tries (with moderate success) to distinguish between proper comments and sequences that are probably supposed to be comments but actually contain active BF command characters. In addition it tries to identify the 'dead code' style comment loops highlighting any BF command characters within the loop in the 'PreProc' style to distinguish them from commands that may actually be executed.

  1. Tritium (officially Ρ‴) this BF interpreter/compiler/JIT runner makes other programs look slow. It is simply the fastest BF interpreter you'll find. For top speed the cell size should be 8 or 32bits, but it supports ANY fixed cell size.

  2. Brainfuck to anything. Well not exactly anything but the list includes ...

  • run -- a direct interpreter -- blisteringly quick too for one without JIT.
  • jit -- OTOH this one uses LuaJIT's Dynasm, it's the fastest bf2any program.
  • crun -- Convert to C and run using libtcc or libdl. Using TCC it's quicker than bf2run ... just, GCC is a lot quicker, even without GCC doing any optimisation.
  • bf -- Ook, Blub, fuck fuck, "there once was a fish named Fred" and over 50 similar transliterations. Also includes Cell doubler (and quad) mappings. Some can be compiled as C (most are deoptimised but -rle is not.) The optimiser can still run so this can be used as a BF->BF optimiser. For actual BF->BF optimisation best results are got with -Obf.
  • asmjs -- Convert to the "asm.js" dialect of javascript (Includes a nodejs wrapper)
  • awk -- Code for (almost) any version of AWK.
  • bash -- GNU bash, uses arrays, arithimetic etc. (NO external programs or subshells used)
  • basic -- A few very random BASIC interpreters.
  • bn -- C using the OpenSSL bignum library.
  • cgmp -- C using the Gnu MP library. This uses a linked list so the pointer movements are slower.
  • clojure -- Not a very nice conversion though. no-opt
  • cmd -- Windows batch files ... far too slow for testing no-opt
  • cs -- Microsoft's C# language.
  • csh -- The old C-shell, this is really slow.
  • dc -- The unix command, has a -r (run) option that uses a special filter to allow character input. This is too complex for dc.sed.
  • cobol -- The old language using the "open-cobol" variation.
  • d -- The C replacement originally by 'Digital Mars'
  • elf -- Direct production of a 32bit Linux executable. no-opt
  • f90 -- Fortran, the 1990 variant.
  • gas -- x64 or x86 assembler. Use gcc to assemble and link: "gcc -o bfp bfout.s" no-opt
  • go -- Google's modern language
  • java --
  • julia -- A modern language using LLVM
  • ksh -- Two variants one for ksh88 and one for the current version.
  • lua --
  • neko -- Neko programming language VM
  • navision -- Now called Microsoft DynamicsNAV
  • pascal -- Free pascal.
  • perl --
  • php --
  • ps1 -- That's right MS Powershell
  • python
  • rc -- The Plan9 shell rc(1) (Can't input without external programs.) -- deoptimised
  • ruby --
  • s-lang --
  • sh -- Bourne shell without bash extensions, not Unix v7 but later should be fine.
  • tcl --
  • t-sql -- Microsoft's SQL based language.
  • v7sh -- Bourne shell from Unix v7. -- deoptimised
  • whitespace -- A good translation to the Forth-like whitespace eso-lang.

Most are heavily optimised (for Brainfuck) and most work in both 8 bit and the native size of the generated code. The ones marked no-opt are not properly optimised as the BE can't generate all the needed op-codes. The ones marked deoptimised have even the RLE reverted. The FE can still optimise in all cases, but without the BE optimisation only constant folding will occur. They have all been tested using many of the BF programs from the Esoteric Files Archive (And of course tortured!)

  1. The 'extras' subdirectory.
  • Hello_world.bewbs -- An interpreter for strange BF variant.
  • bf.pl -- A very small bf->perl tranlate and execute.
  • bf.rb -- A similar program in Ruby, not as Golfed.
  • bf.sed -- A BF interpreter in SED.
  • bf2bash.sh -- A BF interpreter in bash
  • bf2c-plain.sed -- A plain BF->C convert in sed.
  • bf2c.awk -- A reasonably quick BF->C and run in awk.
  • bf2c.rb -- A very compact BF->C and run in Ruby.
  • bf2c.sed -- A slightly optimising BF->C in sed.
  • bf2c_v1.b -- A Plain BF->C in BF.
  • bf2c_v2.b -- A weird RLE optimising BF->C in BF.
  • bf2lua.lua -- A RLE optimising BF->lua and run in lua.
  • bfdowhile.c -- A "buggy" BF interpreter that is (surprisingly) still Turing complete.
  • blub.pl -- "Blub" interpreter in Perl
  • cdowhile.c -- A "buggy" BF interpreter that is (surprisingly) still Turing complete.
  • dblmicrobf.c -- A plain BF interpreter with weird cell sizes.
  • deadbeef.c -- A nice quick interpreter that ONLY has a two command lookahead.
  • easy.c -- A pipelined BF interpreter (or an interpreter for the 'easy' language).
  • hydrogen.c -- A component of Tritium that also understands some cell doubling constructs.
  • k-on-fuck.pl -- Another BF variant in perl.
  • lightning.c -- A plain jit interpreter using GNU lightning V2.
  • malbrain.sed -- Convert 'malbrain' to C in sed.
  • md5.gw.b -- These two BF programs have the same MD5 hash, but produce different outputs.
  • md5.hw.b -- Ditto.
  • microbf.c -- A compact and slow BF interpreter.
  • neutron.c -- The input and tree/stack overlap prototype for Tritium's input routine.
  • ook.l -- A program in Lex that interprets about 20 different trivial BF substitutions (including Ook).
  • ook.pl -- A perl program to interpret Ook.
  • petooh.rb -- A Ruby problem to interpret 'Petooh'
  • pogaack.pl -- A Perl program to interpret 'Pogaack'
  • profilebf.c -- A BF interpreter for counting and measuring Brainfuck.
  • proton.c -- Another component interpreter for Tritium.
  • spoon.rb -- A 'Spoon' interpreter in Ruby.
  • txtbf.c -- A program to generate BF programs that output specific text strings.
  • zero.rb -- A Ruby program to interpret 'Zerolang'.
  1. The 'umueller' directory contains the second brainfuck compiler written by Urban Müller. It was written in June 1993. The previous one was 296 bytes long, used longword cells (That's 32bits on the Amiga) and did not require 'Amiga OS 2.0'.

Copyrights

The bf.vim, bf2any and Tritium programs are licensed under the GPLv2 or later versions if you prefer.

The programs bf2bash.sh, bf2c.awk and all brainfuck source code, including any embedded in the C code are explicitly granted public domain status.

The code in the tools and the testing directories have their own licensing.

About

Brainfuck torture test. VIM syntax file for brainf*ck. Brainfuck interpreters and compilers to C, V. Fast JIT Assembly (two ways), JIT C running (two ways), Perl, Python, php, Ruby, lua, go, awk, neko, PS1, bash, etc etc

License:GNU General Public License v2.0


Languages

Language:C 87.5%Language:Makefile 3.8%Language:Lex 2.2%Language:Brainfuck 2.2%Language:Awk 1.2%Language:Shell 1.2%Language:Vim Script 0.5%Language:C++ 0.4%Language:Lua 0.4%Language:Ruby 0.3%Language:Assembly 0.2%Language:Perl 6 0.2%