Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.15 KB

README.md

File metadata and controls

28 lines (22 loc) · 1.15 KB

Sonatina

Sonatina is a compiler backend specialized for smart contracts.

Sonatina is really early stage in development, so do NOT use it for production!

Project layout

sonatina consists of several crates.

  • codegen: The main crate of sonatina, providing builder for IR modules and functions, optimization passes, instruction selection DAG, and binary code emitting.
  • filecheck: Provides test runner for filecheck and test fixtures.
  • interpreter: Interpreter for sonatina IR, this is mainly for testing transformation passes.
  • ir: sonatina intermediate representation.
  • object: Provides abstract object file format for linker.
  • parser: Parser for sonatina IR, this is mainly for filecheck test.
  • triple: Provides target triple for smart contracts.
  • verifier: Verifier for sonatina IR, this is mainly for testing transformation passes.

TODO

Test

Run test_all.sh.