Skip to content

ABC Tool

  • Home
  • About / Contect
    • PRIVACY POLICY
GitHub – matz/spinel · GitHub

GitHub – matz/spinel · GitHub

Posted on April 24, 2026 By safdargal12 No Comments on GitHub – matz/spinel · GitHub
Blog


Spinel compiles Ruby source code into standalone native executables.
It performs whole-program type inference and generates optimized C code,
achieving significant speedups over CRuby.

Spinel is self-hosting: the compiler backend is written in Ruby and
compiles itself into a native binary.

Ruby (.rb)
    |
    v
spinel_parse           Parse with Prism (libprism), serialize AST
    |                  (C binary, or CRuby + Prism gem as fallback)
    v
AST text file
    |
    v
spinel_codegen         Type inference + C code generation
    |                  (self-hosted native binary)
    v
C source (.c)
    |
    v
cc -O2 -Ilib -lm      Standard C compiler + runtime header
    |
    v
Native binary           Standalone, no runtime dependencies
# Fetch libprism sources (from the prism gem on rubygems.org):
make deps

# Build everything:
make

# Write a Ruby program:
cat > hello.rb <<'RUBY'
def fib(n)
  if n < 2
    n
  else
    fib(n - 1) + fib(n - 2)
  end
end

puts fib(34)
RUBY

# Compile and run:
./spinel hello.rb
./hello               # prints 5702887 (instantly)
./spinel app.rb              # compiles to ./app
./spinel app.rb -o myapp     # compiles to ./myapp
./spinel app.rb -c           # generates app.c only
./spinel app.rb -S           # prints C to stdout

Spinel compiles its own backend. The bootstrap chain:

CRuby + spinel_parse.rb → AST
CRuby + spinel_codegen.rb → gen1.c → bin1
bin1 + AST → gen2.c → bin2
bin2 + AST → gen3.c
gen2.c == gen3.c   (bootstrap loop closed)

74 tests pass. 55 benchmarks pass.
Geometric mean: ~11.6x faster than miniruby (Ruby 4.1.0dev) across
the 28 benchmarks below. Baseline is the latest CRuby miniruby build
(without bundled gems), which is considerably faster than the system
ruby (3.2.3); Spinel’s advantage is correspondingly smaller but still
substantial on computation-heavy workloads.

Benchmark Spinel miniruby Speedup
life (Conway’s GoL) 20 ms 1,733 ms 86.7x
ackermann 5 ms 374 ms 74.8x
mandelbrot 25 ms 1,453 ms 58.1x
fib (recursive) 17 ms 581 ms 34.2x
nqueens 10 ms 304 ms 30.4x
tarai 16 ms 461 ms 28.8x
tak 22 ms 532 ms 24.2x
matmul 13 ms 313 ms 24.1x
sudoku 6 ms 102 ms 17.0x
partial_sums 93 ms 1,498 ms 16.1x
fannkuch 2 ms 19 ms 9.5x
sieve 39 ms 332 ms 8.5x
fasta (DNA seq gen) 3 ms 21 ms 7.0x

Benchmark Spinel miniruby Speedup
rbtree (red-black tree) 24 ms 543 ms 22.6x
splay tree 14 ms 195 ms 13.9x
huffman (encoding) 6 ms 59 ms 9.8x
so_lists 76 ms 410 ms 5.4x
binary_trees 11 ms 40 ms 3.6x
linked_list 136 ms 388 ms 2.9x
gcbench 1,845 ms 3,641 ms 2.0x

Benchmark Spinel miniruby Speedup
json_parse 39 ms 394 ms 10.1x
bigint_fib (1000 digits) 2 ms 16 ms 8.0x
ao_render (ray tracer) 417 ms 3,334 ms 8.0x
pidigits (bigint) 2 ms 13 ms 6.5x
str_concat 2 ms 13 ms 6.5x
template engine 152 ms 936 ms 6.2x
csv_process 234 ms 860 ms 3.7x
io_wordcount 33 ms 97 ms 2.9x

Core: Classes, inheritance, super, include (mixin), attr_accessor,
Struct.new, alias, module constants, open classes for built-in types.

Control Flow: if/elsif/else, unless, case/when,
case/in (pattern matching), while, until, loop, for..in
(range and array), break, next, return, catch/throw,
&. (safe navigation).

Blocks: yield, block_given?, &block, proc {}, Proc.new,
lambda -> x { }, method(:name). Block methods: each,
each_with_index, map, select, reject, reduce, sort_by,
any?, all?, none?, times, upto, downto.

Exceptions: begin/rescue/ensure/retry, raise,
custom exception classes.

Types: Integer, Float, String (immutable + mutable), Array, Hash,
Range, Time, StringIO, File, Regexp, Bigint (auto-promoted), Fiber.
Polymorphic values via tagged unions. Nullable object types (T?)
for self-referential data structures (linked lists, trees).

Global Variables: $name compiled to static C variables with
type-mismatch detection at compile time.

Strings: << automatically promotes to mutable strings (sp_String)
for O(n) in-place append. +, interpolation, tr, ljust/rjust/center,
and all standard methods work on both. Character comparisons like
s[i] == "c" are optimized to direct char array access (zero allocation).
Chained concatenation (a + b + c + d) collapses to a single malloc
via sp_str_concat4 / sp_str_concat_arr — N-1 fewer allocations.
Loop-local str.split(sep) reuses the same sp_StrArray across
iterations (csv_process: 4 M allocations eliminated).

Regexp: Built-in NFA regexp engine (no external dependency).
=~, $1–$9, match?, gsub(/re/, str), sub(/re/, str),
scan(/re/), split(/re/).

Bigint: Arbitrary precision integers via mruby-bigint. Auto-promoted
from loop multiplication patterns (e.g. q = q * k). Linked as static
library — only included when used.

Fiber: Cooperative concurrency via ucontext_t. Fiber.new,
Fiber#resume, Fiber.yield with value passing. Captures free
variables via heap-promoted cells.

Memory: Mark-and-sweep GC with size-segregated free lists, non-recursive
marking, and sticky mark bits. Small classes (≤8 scalar fields, no
inheritance, no mutation through parameters) are automatically
stack-allocated as value types — 1M allocations of a 5-field class
drop from 85 ms to 2 ms. Programs using only value types emit no GC
runtime at all.

Symbols: Separate sp_sym type, distinct from strings (:a != "a").
Symbol literals are interned at compile time (SPS_name constants);
String#to_sym uses a dynamic pool only when needed. Symbol-keyed
hashes ({a: 1}) use a dedicated sp_SymIntHash that stores
sp_sym (integer) keys directly rather than strings — no strcmp, no
dynamic string allocation.

I/O: puts, print, printf, p, gets, ARGV, ENV[],
File.read/write/open (with blocks), system(), backtick.

Whole-program type inference drives several compile-time optimizations:

  • Value-type promotion: small immutable classes (≤8 scalar fields)
    become C structs on the stack, eliminating GC overhead entirely.
  • Constant propagation: simple literal constants (N = 100) are
    inlined at use sites instead of going through cst_N runtime lookup.
  • Loop-invariant length hoisting: while i < arr.length evaluates
    arr.length once before the loop; while i < str.length hoists
    strlen. Mutation of the receiver inside the body (e.g. arr.push)
    correctly disables the hoist.
  • Method inlining: short methods (≤3 statements, non-recursive)
    get static inline so gcc can inline them at call sites.
  • String concat chain flattening: a + b + c + d compiles to a
    single sp_str_concat4 / sp_str_concat_arr call — one malloc
    instead of N-1 intermediate strings.
  • Bigint auto-promotion: loops with x = x * y or fibonacci-style
    c = a + b self-referential addition auto-promote to bigint.
  • Bigint to_s: divide-and-conquer O(n log²n) via mruby-bigint’s
    mpz_get_str instead of naive O(n²).
  • Static symbol interning: "literal".to_sym resolves to a
    compile-time SPS_<name> constant; the runtime dynamic pool is
    only emitted when dynamic interning is actually used.
  • strlen caching in sub_range: when a string’s length is
    hoisted, str[i] accesses use sp_str_sub_range_len to skip the
    internal strlen call.
  • split reuse: fields = line.split(",") inside a loop reuses
    the existing sp_StrArray rather than allocating a new one.
  • Dead-code elimination: compiled with -ffunction-sections -fdata-sections and linked with --gc-sections; each unused
    runtime function is stripped from the final binary.
  • Iterative inference early exit: the param/return/ivar fixed-point
    loop stops as soon as a signature of the three refined arrays stops
    changing. Most programs converge in 1-2 iterations instead of the
    full 4, cutting bootstrap time by ~14%.
  • parse_id_list byte walk: the AST-field list parser (called
    ~120 K times during self-compile) walks bytes manually via
    s.bytes[i] instead of s.split(","), dropping N+1 allocations
    per call to 2.
  • Warning-free build: generated C compiles cleanly at the default
    warning level across every test and benchmark; the harness uses
    -Werror so regressions surface immediately.
spinel                One-command wrapper script (POSIX shell)
spinel_parse.c        C frontend: libprism → text AST (1,061 lines)
spinel_codegen.rb     Compiler backend: AST → C code (21,109 lines)
lib/sp_runtime.h      Runtime library header (581 lines)
lib/sp_bigint.c       Arbitrary precision integers (5,394 lines)
lib/regexp/           Built-in regexp engine (1,759 lines)
test/                 74 feature tests
benchmark/            55 benchmarks
Makefile              Build automation

The compiler backend (spinel_codegen.rb) is written in a Ruby subset
that Spinel itself can compile: classes, def, attr_accessor,
if/case/while, each/map/select, yield, begin/rescue,
String/Array/Hash operations, File I/O.

No metaprogramming, no eval, no require in the backend.

The runtime (lib/sp_runtime.h) contains GC, array/hash/string
implementations, and all runtime support as a single header file.
Generated C includes this header, and the linker pulls only the
needed parts from libspinel_rt.a (bigint + regexp engine).

The parser has two implementations:

  • spinel_parse.c links libprism directly (no CRuby needed)
  • spinel_parse.rb uses the Prism gem (CRuby fallback)

Both produce identical AST output. The spinel wrapper prefers the
C binary if available. require_relative is resolved at parse time
by inlining the referenced file.

make deps         # fetch libprism into vendor/prism (one-time)
make              # build parser + regexp library + bootstrap compiler
make test         # run 74 feature tests (requires bootstrap)
make bench        # run 55 benchmarks (requires bootstrap)
make bootstrap    # rebuild compiler from source
sudo make install # install to /usr/local (spinel in PATH)
make clean        # remove build artifacts

Override install prefix: make install PREFIX=$HOME/.local

Prism is the Ruby parser used by
spinel_parse. make deps downloads the prism gem tarball from
rubygems.org and extracts its C sources to vendor/prism. If you
already have the prism gem installed, the build auto-detects it; you
can also point at a custom location with PRISM_DIR=/path/to/prism.

CRuby is needed only for the initial bootstrap. After make, the
entire pipeline runs without Ruby.

  • No eval: eval, instance_eval, class_eval
  • No metaprogramming: send, method_missing, define_method (dynamic)
  • No threads: Thread, Mutex (Fiber is supported)
  • No encoding: assumes UTF-8/ASCII
  • No general lambda calculus: deeply nested -> x { } with [] calls
  • Build time: libprism (C library),
    CRuby (bootstrap only)
  • Run time: None. Generated binaries need only libc + libm.
  • Regexp: Built-in engine, no external library needed.
  • Bigint: Built-in (from mruby-bigint), linked only when used.

Spinel was originally implemented in C (18K lines, branch c-version),
then rewritten in Ruby (branch ruby-v1), and finally rewritten in a
self-hosting Ruby subset (current master).

MIT License. See LICENSE.



Source link

Post Views: 1

Post navigation

❮ Previous Post: Get ready with the latest beta releases – Latest News
Next Post: Meta Centralizes Access to Facebook, Instagram, AI Glasses and More Apps ❯

You may also like

What’s the real difference for games in 2026?
Blog
What’s the real difference for games in 2026?
April 12, 2026
As a Pro Photographer, I’ve Loved Using Oppo’s Find X9 Ultra
Blog
As a Pro Photographer, I’ve Loved Using Oppo’s Find X9 Ultra
April 22, 2026
Best Earth Day Deals 2026: Save on Power Stations, Solar Panels, Kitchen Gear and More
Blog
Best Earth Day Deals 2026: Save on Power Stations, Solar Panels, Kitchen Gear and More
April 23, 2026
T-Mobile Begins DoorDashing 5G Internet to Customers for Same-Day Deliveries
Blog
T-Mobile Begins DoorDashing 5G Internet to Customers for Same-Day Deliveries
April 23, 2026

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Recent Posts

  • Infinix’s GT 50 Pro put a liquid cooling loop inside a phone
  • All the New Features the Massive iOS 26.4 Update Brings to Your iPhone
  • OnePlus 16's display detailed, again tipped to come with the Snapdragon 8 Elite Gen 6 Pro SoC
  • The Pixel 10’s new display filter is fantastic, except for two big flaws
  • Today’s NYT Mini Crossword Answers for April 24

Recent Comments

No comments to show.

Archives

  • April 2026

Categories

  • Blog

Copyright © 2026 ABC Tool.

Theme: Oceanly News by ScriptsTown