Skip to content

v420v/ibu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

77 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

eyecatch

The Ibu programming language

CI

A language designed for the enjoyment of programming.

Key Features of Ibu

  • No strict type checker
  • No C-like pointer arithmetic
  • No function-like macros
  • No variable shadowing
  • No break, continue stmt. Use goto
  • No libc dependency
  • No hidden control flow
  • No hidden memory allocations
  • Allows syntax like 13 <= age < 20
  • Variable length args func(...) can be accessed with built-in variables argc i64 and argv *i64
  • All values are extended to 64-bit when accessed
  • The compiler is written in itself
  • Default args don't have to be on the end (WIP)

Important

Supports x86-64 Linux only

Build the language

$ git clone [email protected]:v420v/ibu.git
$ cd ibu
$ make init

Build the language with docker

$ git clone [email protected]:v420v/ibu.git
$ cd ibu
$ make up
$ make ibu
$ make init
Command Execution
make up docker compose up -d
make ibu docker compose exec ibulang bash
make down docker compose down

Usage

$ ./ibuc <filename>.ibu

Compiler implementation

File Content
src/ibu.ibu Entry point
src/tokenizer/tokenizer.ibu Lexical analyzer
src/preprocessor/preprocessor.ibu Preprocessor
src/parser/parser.ibu Parser
src/codegen/codegen.ibu Assembly code generator
src/linux-syscall/linux-syscall.ibu Linux system call
src/runtime.s Syscall function in assembly
src/util/util.ibu Other

Contribution

contribution is welcome!

License

This project is licensed under the MIT License - see the LICENSE file for details.