search
HomeBackend DevelopmentC++The tiniest transpiler you&#ll ever see

The tiniest transpiler you

I wrote a brainf**k to C transpiler this morning. It took me a grand total of roughly an hour.

The entire thing is under 50 lines of C. You can see it here.

What is brainf**k?

It's an esoteric coding language. Invented by a Swiss student in 1993, it's pretty much the minimum required to be considered Turing complete.

It's also one of the most famous esolangs in existence.

The syntax is extremely minimal: it has only 8 characters and the rest are ignored.

Take a guess what that does. Just guess.

It's a Hello, World! program.

Essentially, in brainf**k, you're given a 30000 byte array and a cursor. You can move the cursor with > and <. you can modify the memory with and which will increment or decrement value in cell. create loops finally a read single byte as input print of current cell ..>

That's pretty much everything about brainf**k.
I've written more functional programs in Assembly before.

Why? Just why?

I wrote this compiler entirely because I was bored and I've found a ton of interpreters, so I thought the world needed a brainf**k compiler.

Although, admittedly, if you want a really good brainf**k compiler, check out
this one.

Why C?

Many reasons:

  • I want more practice with it
  • It's fast
  • It's mostly portable
  • It's widespread
  • I didn't need much code anyway.

And one final reason: integer overflow. Normally, this is a bad thing that people hate. It's probably the reason unit tests (ugh) were invented. But brainf**k is different. The numbers in the memory tape have an upper limit of 255, and if they pass it, they're expected to reset to 0. Also, if the value goes below 0, it's supposed to reset to 255. C does this on its own; I didn't need to write any code for it.

How?

A higher-level overview:

  • Read code from a file or from stdin into memory
  • Convert each character to C code
  • Print the finished C code.

It reads brainf**k code from a file into code[].

Then, it sets up a basic C program:

You may have noticed that it's missing a closing bracket. That's because more code is added to that char[].

In case you're wondering, char t[30000] is the memory that you're given. I used t as short form for tape, but shortened it because these programs aren't meant to be human readable.

Next, it loops over the code array, which is an array of single characters. For each character, it converts it to C code:

character becomes
> p
p--
- t[p]--
t[p]
. putchar(t[p])
, t[p]=getchar()
[ while(t[p] != 0)
] }

You can see above to understand what these symbols do.

These values are added to the program output, which will contain valid C code.

Finally, this code is added to the final output:

This is the end of the outputted program. The transpiler then prints this code to stdout, for the user to manipulate as they wish.

Final thoughts

There are some ideas for improvement I had while writing this article. I don't think there's much I could do to make it faster, but there are things I could do to make it safer and better.

You can see the final code here.

You can also make any sort of contribution, if you'd like.

Thanks for reading!

The above is the detailed content of The tiniest transpiler you&#ll ever see. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How does the C   Standard Template Library (STL) work?How does the C Standard Template Library (STL) work?Mar 12, 2025 pm 04:50 PM

This article explains the C Standard Template Library (STL), focusing on its core components: containers, iterators, algorithms, and functors. It details how these interact to enable generic programming, improving code efficiency and readability t

How do I use algorithms from the STL (sort, find, transform, etc.) efficiently?How do I use algorithms from the STL (sort, find, transform, etc.) efficiently?Mar 12, 2025 pm 04:52 PM

This article details efficient STL algorithm usage in C . It emphasizes data structure choice (vectors vs. lists), algorithm complexity analysis (e.g., std::sort vs. std::partial_sort), iterator usage, and parallel execution. Common pitfalls like

How does dynamic dispatch work in C   and how does it affect performance?How does dynamic dispatch work in C and how does it affect performance?Mar 17, 2025 pm 01:08 PM

The article discusses dynamic dispatch in C , its performance costs, and optimization strategies. It highlights scenarios where dynamic dispatch impacts performance and compares it with static dispatch, emphasizing trade-offs between performance and

How do I use ranges in C  20 for more expressive data manipulation?How do I use ranges in C 20 for more expressive data manipulation?Mar 17, 2025 pm 12:58 PM

C 20 ranges enhance data manipulation with expressiveness, composability, and efficiency. They simplify complex transformations and integrate into existing codebases for better performance and maintainability.

How do I handle exceptions effectively in C  ?How do I handle exceptions effectively in C ?Mar 12, 2025 pm 04:56 PM

This article details effective exception handling in C , covering try, catch, and throw mechanics. It emphasizes best practices like RAII, avoiding unnecessary catch blocks, and logging exceptions for robust code. The article also addresses perf

How do I use move semantics in C   to improve performance?How do I use move semantics in C to improve performance?Mar 18, 2025 pm 03:27 PM

The article discusses using move semantics in C to enhance performance by avoiding unnecessary copying. It covers implementing move constructors and assignment operators, using std::move, and identifies key scenarios and pitfalls for effective appl

How does C  's memory management work, including new, delete, and smart pointers?How does C 's memory management work, including new, delete, and smart pointers?Mar 17, 2025 pm 01:04 PM

C memory management uses new, delete, and smart pointers. The article discusses manual vs. automated management and how smart pointers prevent memory leaks.

How do I use rvalue references effectively in C  ?How do I use rvalue references effectively in C ?Mar 18, 2025 pm 03:29 PM

Article discusses effective use of rvalue references in C for move semantics, perfect forwarding, and resource management, highlighting best practices and performance improvements.(159 characters)

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)