gobf

command module
v0.0.0-...-eda6b49 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 14, 2022 License: MIT Imports: 9 Imported by: 0

README

Go Reference Go Build/Test CodeQL

GoBF

This is a BF interpreter and optimizing compiler written in Go.

GoBF can simply run your BF program or compile it to a binary to run later.

Obligatory Install Line

go get github.com/linux4life798/gobf

Usage

The commandline program currently supports compile, gengo, run, and dumpil actions.

Give it a try!

go get github.com/linux4life798/gobf

wget https://github.com/erikdubbelboer/brainfuck-jit/raw/master/mandelbrot.bf
gobf compile mandelbrot.bf
./mandelbrot

Note that the run command will simply interpret the BF program in-place, thus the performance will be as-is. Please use the compile to generate an optimized program.

Please see gobf --help for more fun options!

Optimization

The generated code optimizer reduces redundant and repetitive commands, like data pointer moves or incrementing a data cell. It coalesces multiple moves or data cell changes into one operation. Due to BF's repetitive nature, this typically increases the BF program's performance dramatically. All of the interesting optimization stuff is in gobflib/il package.

Recent work has added some pattern and vectorization based optimizations, but these have not been fully calibrated yet.

To try the zero pattern optimization, invoke gobf in the following manor:

gobf -O zero compile mandelbrot.bf

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
il

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL