- MIR means Medium Internal Representation
- MIR project goal is to provide a basis to implement fast and lightweight interpreters and JITs
- Plans to try MIR light-weight JIT first for CRuby or/and MRuby implementation
- Motivations for the project can be found in this blog post
- C2MIR compiler description can be found in this blog post
- Future of code specialization in MIR for dynamic language JITs can be found in this blog post
- This code is in initial stages of development. It is present only for familiarization with the project. There is absolutely no warranty that MIR will not be changed in the future and the code will work for any tests except ones given here and on platforms other than x86_64 Linux/OSX, aarch64 Linux/OSX(Apple M1), and ppc64be/ppc64le/s390x/riscv64 Linux
- MIR is strongly typed
- MIR can represent machine 32-bit and 64-bit insns of different architectures
- MIR.md contains detail description of MIR and its API. Here is a brief MIR description:
- MIR consists of modules
- Each module can contain functions and some declarations and data
- Each function has signature (parameters and return types), local variables
(including function arguments) and instructions
- Each local variable has type which can be only 64-bit integer, float, double, or long double
- Each instruction has opcode and operands
- Operand can be a local variable
(or a function argument), immediate, memory, label, or reference
- Immediate operand can be 64-bit integer, float, double, or long double value
- Operand can be a local variable
(or a function argument), immediate, memory, label, or reference
- Memory operand has a type, displacement, base and index integer local variable,
and integer constant as a scale for the index
- Memory type can be 8-, 16-, 32- and 64-bit signed or unsigned integer type,
float type, double, or long double type
- When integer memory value is used it is expanded with sign or zero promoting to 64-bit integer value first
- Memory type can be 8-, 16-, 32- and 64-bit signed or unsigned integer type,
float type, double, or long double type
- Label operand has name and used for control flow instructions
- Reference operand is used to refer to functions and declarations in the current module, in other MIR modules, or for C external functions or declarations
- opcode describes what the instruction does
- There are conversion instructions for conversion between different 32- and 64-bit signed and unsigned values, float, double, and long double values
- There are arithmetic instructions (addition, subtraction, multiplication, division, modulo) working on 32- and 64-bit signed and unsigned values, float, double, and long double values
- There are logical instructions (and, or, xor, different shifts) working on 32- and 64-bit signed and unsigned values
- There are comparison instructions working on 32- and 64-bit signed and unsigned values, float, double, and long double values
- There are branch insns (unconditional jump, and jump on zero or non-zero value) which take a label as one their operand
- There are combined comparison and branch instructions taking a label as one operand and two 32- and 64-bit signed and unsigned values, float, double, and long double values
- There is switch instruction to jump to a label from labels given as operands depending on index given as the first operand
- There are function and procedural call instructions
- There are return instructions working on 32- and 64-bit integer values, float, double, and long double values
- You can create MIR through API consisting of functions for creation of modules, functions, instructions, operands etc
- You can also create MIR from MIR binary or text file
- The best way to get a feel about MIR is to use textual MIR representation
- Example of Eratosthenes sieve on C
#define Size 819500
int sieve (int N) {
int64_t i, k, prime, count, n; char flags[Size];
for (n = 0; n < N; n ) {
count = 0;
for (i = 0; i < Size; i )
flags[i] = 1;
for (i = 0; i < Size; i )
if (flags[i]) {
prime = i i 3;
for (k = i prime; k < Size; k = prime)
flags[k] = 0;
count ;
}
}
return count;
}
void ex100 (void) {
printf ("sieve (100) = %d\", sieve (100));
}
- Example of MIR textual file for the same function:
m_sieve: module
export sieve
sieve: func i32, i32:N
local i64:iter, i64:count, i64:i, i64:k, i64:prime, i64:temp, i64:flags
alloca flags, 819500
mov iter, 0
loop: bge fin, iter, N
mov count, 0; mov i, 0
loop2: bge fin2, i, 819500
mov u8:(flags, i), 1; add i, i, 1
jmp loop2
fin2: mov i, 0
loop3: bge fin3, i, 819500
beq cont3, u8:(flags,i), 0
add temp, i, i; add prime, temp, 3; add k, i, prime
loop4: bge fin4, k, 819500
mov u8:(flags, k), 0; add k, k, prime
jmp loop4
fin4: add count, count, 1
cont3: add i, i, 1
jmp loop3
fin3: add iter, iter, 1
jmp loop
fin: ret count
endfunc
endmodule
m_ex100: module
format: string "sieve (10) = %d\n"
p_printf: proto p:fmt, i32:result
p_sieve: proto i32, i32:iter
export ex100
import sieve, printf
ex100: func v, 0
local i64:r
call p_sieve, sieve, r, 100
call p_printf, printf, format, r
endfunc
endmodule
func
describes signature of the function (taking 32-bit signed integer argument and returning 32-bit signed integer value) and function argumentN
which will be local variable of 64-bit signed integer type- Function results are described first by their types and have no names. Parameters always have names and go after the result description
- Function may have more than one result but possible number and combination of result types are currently machine defined
- You can write several instructions on one line if you separate them by
;
- The instruction result, if any, is always the first operand
- We use 64-bit instructions in calculations
- We could use 32-bit instructions in calculations which would have sense if we use 32-bit CPU
- When we use 32-bit instructions we take only 32-bit significant part of 64-bit operand and high 32-bit part of the result is machine defined (so if you write a portable MIR code consider the high 32-bit part value is undefined)
string
describes data in form of C string- C string can be used directly as an insn operand. In this case the data will be added to the module and the data address will be used as an operand
export
describes the module functions or data which are visible outside the current moduleimport
describes the module functions or data which should be defined in other MIR modulesproto
describes function prototypes. Its syntax is the same asfunc
syntaxcall
are MIR instruction to call functions
- After creating MIR modules (through MIR API or reading MIR binary or textual files),
you should load the modules
- Loading modules makes visible exported module functions and data
- You can load external C function with
MIR_load_external
- After loading modules, you should link the loaded modules
- Linking modules resolves imported module references, initializes data, and set up call interfaces
- After linking, you can interpret functions from the modules or call machine code for the functions generated with MIR JIT compiler (generator). What way the function can be executed is usually defined by set up interface. How the generated code is produced (lazily on the first call or ahead of time) can be also dependent on the interface
- Running code from the above example could look like the following (here
m1
andm2
are modulesm_sieve
andm_e100
,func
is functionex100
,sieve
is functionsieve
):
/* ctx is a context created by MIR_init */
MIR_load_module (ctx, m1); MIR_load_module (ctx, m2);
MIR_load_external (ctx, "printf", printf);
MIR_link (ctx, MIR_set_interp_interface, import_resolver);
/* or use MIR_set_gen_interface to generate and use the machine code */
/* or use MIR_set_lazy_gen_interface to generate function code on its 1st call */
/* use MIR_gen (ctx, func) to explicitly generate the function machine code */
MIR_interp (ctx, func, &result, 0); /* zero here is arguments number */
/* or ((void (*) (void)) func->addr) (); to call interpr. or gen. code through the interface */
- You can use C setjmp/longjmp functions to implement longjump in MIR
- Binary MIR code is usually upto 10 times more compact and upto 10 times faster to read than analogous MIR textual code
- MIR interpreter is about 6-10 times slower than code generated by MIR JIT compiler
- MIR to C compiler is currently about 90% implemented
- WASM to MIR translation should be pretty straightforward
- Only small WASM runtime for WASM floating point round insns needed to be provided for MIR
- Implementation of Java byte code to/from MIR and LLVM IR to/from MIR compilers
will be a challenge:
- big runtime and possibly MIR extensions will be required
- Porting GCC to MIR is possible too. An experienced GCC developer can implement this for 6 to 12 months
- On my estimation porting MIR JIT compiler to mips64 or sparc64 will take 1-2 months of work for each target
- Performance minded porting MIR JIT compiler to 32-bit targets will need an implementation of additional small analysis pass to get info what 64-bit variables are used only in 32-bit instructions
-
Compiler Performance Goals relative to GCC -O2:
- 70% of generated code speed
- 100 times faster compilation speed
- 100 times faster start-up
- 100 times smaller code size
- less 15K C LOC
-
Very short optimization pipeline for speed and light-weight
-
Only the most valuable optimization usage:
- function inlining
- global common sub-expression elimination
- variable renaming
- register pressure sensitive loop invariant code motion
- sparse conditional constant propagation
- dead code elimination
- code selection
- fast register allocator with implicit coalescing hard registers and stack slots for copy elimination
-
Different optimization levels to tune compilation speed vs generated code performance
-
SSA form of MIR is used before register allocation
- We use a form of Braun's algorithm to build SSA (M. Braun et al. "Simple and Efficient Construction of Static Single Assignment Form")
- We keep SSA in conventional form all the time to make out-of-SSA pass trivial
-
Simplicity of optimizations implementation over extreme generated code performance
-
Simplify: lowering MIR
-
Inline: inlining MIR calls
-
Build CFG: building Control Flow Graph (basic blocks and CFG edges)
-
Build SSA: Building Single Static Assignment Form by adding phi nodes and SSA edges to operands
-
Copy Propagation: SSA copy propagation keeping conventional SSA form and removing redundant extension insns
-
Global Value Numbering: Removing redundant insns through GVN
-
Dead Code Elimination: removing insns with unused outputs
-
Sparse Conditional Constant Propagation: constant propagation and removing death paths of CFG
-
Out of SSA: Removing phi nodes and SSA edges (we keep conventional SSA all the time)
-
Machinize: run machine-dependent code transforming MIR for calls ABI, 2-op insns, etc
-
Find Loops: finding natural loops and building loop tree
-
Build Live Info: calculating live in and live out for the basic blocks
-
Build Live Ranges: calculating program point ranges for registers
-
Assign: fast RA for
-O0
or priority-based linear scan RA for-O1
and above -
Rewrite: transform MIR according to the assign using reserved hard regs
-
Combine (code selection): merging data-depended insns into one
-
Dead Code Elimination: removing insns with unused outputs
-
Generate Machine Insns: run machine-dependent code creating machine insns
- Currently work on 2 different ways of the translation are ongoing
- Files
mir.h
andmir.c
contain major API code including input/output of MIR binary and MIR text representation - Files
mir-dlist.h
,mir-mp.h
,mir-varr.h
,mir-bitmap.h
,mir-htab.h
contain generic code correspondingly for double-linked lists, memory pools, variable length arrays, bitmaps, hash tables. Filemir-hash.h
is a general, simple, high quality hash function used by hashtables - File
mir-interp.c
contains code for interpretation of MIR code. It is included inmir.c
and never compiled separately - Files
mir-gen.h
,mir-gen.c
,mir-gen-x86_64.c
,mir-gen-aarch64.c
,mir-gen-ppc64.c
,mir-gen-s390x.c
, andmir-gen-riscv.c
contain code for MIR JIT compiler- Files
mir-gen-x86_64.c
,mir-gen-aarch64.c
,mir-gen-ppc64.c
,mir-gen-s390x.c
, andmir-gen-riscv.c
is machine dependent code of JIT compiler
- Files
- Files
mir-<target>.c
contain simple machine dependent code common for interpreter and JIT compiler - Files
mir2c/mir2c.h
andmir2c/mir2c.c
contain code for MIR to C compiler - Files
c2mir/c2mir.h
,c2mir/c2mir.c
,c2mir/c2mir-driver.c
, andc2mir/mirc.h
contain code for C to MIR compiler. Files in directoriesc2mir/x86_64
andc2mir/aarch64
,c2mir/ppc64
,c2mir/s390x
, andc2mir/riscv
contain correspondingly x86_64, aarch64, ppc64, s390x, and riscv machine-dependent code for C to MIR compiler
- MIR project is far away from any serious usage
- The current code can be used only to familiarize future users with the project and approaches it uses
- You can run some benchmarks and tests by
make bench
andmake test
-
Intel i7-9700K with 16GB memory under FC29 with GCC-8.2.1
MIR-gen MIR-interp gcc -O2 gcc -O0 compilation [1] 1.0 (69us) 0.17 (12us) 193 (13.35ms) 186 (12.8ms) compilation [2] 1.0 (116us) 0.10 (12us) 115 (13.35ms) 110 (12.8ms) execution [3] 1.0 (3.05s) 6.0 (18.3s) 0.95 (2.9s) 2.08 (6.34s) code size [4] 1.0 (408KB) 0.51 (209KB) 62 (25.2MB) 62 (25.2MB) startup [5] 1.0 (1.3us) 1.0 (1.3us) 9310 (12.1ms) 9850 (12.8ms) LOC [6] 1.0 (19.1K) 0.53 (10.1K) 77 (1480K) 77 (1480K)
[1] is based on wall time of compilation of sieve code (w/o any include file and with using memory file system for GCC) 100 times. The used optimization level is 1
[2] is analogous to [1] but with MIR-optimization level 2
[3] is based on the best wall time of 10 runs with used MIR-generator optimization level 1
[4] is based on stripped sizes of cc1 for GCC and MIR core and interpreter or generator for MIR
[5] is based on wall time of generation of object code for empty C file or generation of empty MIR module through API
[6] is based only on files required for x86-64 C compiler and files for minimal program to create and run MIR code
- I only see three projects which could be considered or adapted as real universal light-weight JIT competitors
- QBE:
- It is small (10K C lines)
- It uses SSA based IR (kind of simplified LLVM IR)
- It has the same optimizations as MIR-generator plus aliasing but QBE has no inlining
- It generates slower code
- It generates assembler code which makes QBE 30 slower in machine code generation than MIR-generator
- It generates code for more targets
- LIBJIT started as a part of DotGNU Project:
- LIBJIT is bigger:
- 80K C lines (for LIBJIT w/o dynamic Pascal compiler) vs 10K C lines for MIR (excluding C to MIR compiler)
- 420KB object file vs 170KB
- LIBJIT has fewer optimizations: only copy propagation and register allocation
- LIBJIT is bigger:
- RyuJIT
is a part of runtime for .NET Core:
- RyuJIT is even bigger: 360K SLOC
- RyuJIT optimizations is basically MIR-generator optimizations minus SCCP
- RyuJIT uses SSA
- Other candidates:
- Currently MIR works on x86_64, aarch64, ppc64be, ppc64le, s390x, riscv-64 Linux and x86_64/aarch64 (Apple M1) MacOS
- HOW-TO-PORT-MIR.md outlines process of porting MIR