It's a New Kind of Wrapper for Exposing LLVM (Safely)
Inkwell aims to help you pen your own programming languages by safely wrapping llvm-sys. It provides a more strongly typed interface than LLVM itself so that certain types of errors can be caught at compile time instead of at LLVM's runtime. The ultimate goal is to make LLVM safer from the rust end and a bit easier to learn and use.
docs.rs documentation is planned but not yet complete. See #2 for the tracking issue.
Here's tari's llvm-sys example written in safe code1 with Inkwell:
use inkwell::context::Context;
use inkwell::targets::{InitializationConfig, Target};
use std::mem::transmute;
Target::initialize_native(&InitializationConfig::default())?;
let context = Context::create();
let module = context.create_module("sum");
let builder = context.create_builder();
let execution_engine = module.create_jit_execution_engine(0)?;
let module = execution_engine.get_module_at(0);
let i64_type = context.i64_type();
let fn_type = i64_type.fn_type(&[&i64_type, &i64_type, &i64_type], false);
let function = module.add_function("sum", &fn_type, None);
let basic_block = context.append_basic_block(&function, "entry");
builder.position_at_end(&basic_block);
let x = function.get_nth_param(0)?.into_int_value();
let y = function.get_nth_param(1)?.into_int_value();
let z = function.get_nth_param(2)?.into_int_value();
let sum = builder.build_int_add(&x, &y, "sum");
let sum = builder.build_int_add(&sum, &z, "sum");
builder.build_return(Some(&sum));
let addr = execution_engine.get_function_address("sum")?;
let sum: extern "C" fn(u64, u64, u64) -> u64 = unsafe { transmute(addr) };
let x = 1u64;
let y = 2u64;
let z = 3u64;
assert_eq!(sum(x, y, z), x + y + z);
1 Casting the LLVM JIT function address into a rust function does require a single unsafe transmute, since Inkwell doesn't know what the function signature is. Maybe we can do something about this in the future? In theory, fn_type does contain all the needed info, so whether or not we can do this automagically depends on what rust is capable of. Converting structs, pointers, and other types could be tricky but might be seen as a form of deserialization. See #5 for the tracking issue.
Inkwell requires LLVM to be installed when building. Currently only LLVM 3.7 is supported, though multi-version support is planned. See #1 for the tracking issue. Inkwell currently compiles on stable, though this may be subject to change in the future.