2010-09-22 15:21:06 -07:00
|
|
|
import std._str;
|
2010-09-22 17:05:38 -07:00
|
|
|
import std._vec;
|
|
|
|
import std._str.rustrt.sbuf;
|
|
|
|
import std._vec.rustrt.vbuf;
|
2010-09-23 18:38:37 -07:00
|
|
|
import std.map.hashmap;
|
2010-11-03 17:10:37 -07:00
|
|
|
import std.option;
|
|
|
|
import std.option.some;
|
|
|
|
import std.option.none;
|
2010-09-22 15:21:06 -07:00
|
|
|
|
2010-09-23 15:46:31 -07:00
|
|
|
import front.ast;
|
2010-09-22 15:21:06 -07:00
|
|
|
import driver.session;
|
2010-11-03 16:43:12 -07:00
|
|
|
import middle.typeck;
|
2010-09-23 15:46:31 -07:00
|
|
|
import back.x86;
|
2010-09-23 17:16:34 -07:00
|
|
|
import back.abi;
|
|
|
|
|
2010-10-19 14:54:10 -07:00
|
|
|
import util.common;
|
2010-09-23 17:16:34 -07:00
|
|
|
import util.common.istr;
|
2010-10-19 14:54:10 -07:00
|
|
|
import util.common.new_def_hash;
|
2010-09-23 18:38:37 -07:00
|
|
|
import util.common.new_str_hash;
|
2010-09-22 15:21:06 -07:00
|
|
|
|
|
|
|
import lib.llvm.llvm;
|
|
|
|
import lib.llvm.builder;
|
2010-09-22 17:05:38 -07:00
|
|
|
import lib.llvm.llvm.ModuleRef;
|
|
|
|
import lib.llvm.llvm.ValueRef;
|
|
|
|
import lib.llvm.llvm.TypeRef;
|
|
|
|
import lib.llvm.llvm.BuilderRef;
|
|
|
|
import lib.llvm.llvm.BasicBlockRef;
|
2010-09-22 15:21:06 -07:00
|
|
|
|
2010-09-22 17:05:38 -07:00
|
|
|
import lib.llvm.False;
|
|
|
|
import lib.llvm.True;
|
2010-09-22 15:21:06 -07:00
|
|
|
|
2010-09-28 12:23:40 -07:00
|
|
|
state obj namegen(mutable int i) {
|
|
|
|
fn next(str prefix) -> str {
|
|
|
|
i += 1;
|
|
|
|
ret prefix + istr(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-23 17:16:34 -07:00
|
|
|
type glue_fns = rec(ValueRef activate_glue,
|
|
|
|
ValueRef yield_glue,
|
2010-09-27 15:38:34 -07:00
|
|
|
ValueRef exit_task_glue,
|
2010-09-23 17:16:34 -07:00
|
|
|
vec[ValueRef] upcall_glues);
|
|
|
|
|
2010-11-21 12:06:09 -08:00
|
|
|
state type crate_ctxt = rec(session.session sess,
|
2010-09-28 12:23:40 -07:00
|
|
|
ModuleRef llmod,
|
2010-10-21 18:13:57 -07:00
|
|
|
hashmap[str, ValueRef] upcalls,
|
|
|
|
hashmap[str, ValueRef] fn_names,
|
|
|
|
hashmap[ast.def_id, ValueRef] fn_ids,
|
2010-10-22 19:31:33 -07:00
|
|
|
hashmap[ast.def_id, @ast.item] items,
|
2010-09-28 12:23:40 -07:00
|
|
|
@glue_fns glues,
|
|
|
|
namegen names,
|
|
|
|
str path);
|
2010-09-23 13:15:51 -07:00
|
|
|
|
2010-09-28 12:23:40 -07:00
|
|
|
state type fn_ctxt = rec(ValueRef llfn,
|
|
|
|
ValueRef lltaskptr,
|
2010-10-21 18:13:57 -07:00
|
|
|
hashmap[ast.def_id, ValueRef] llargs,
|
2010-10-19 14:54:10 -07:00
|
|
|
hashmap[ast.def_id, ValueRef] lllocals,
|
2010-11-21 12:06:09 -08:00
|
|
|
@crate_ctxt ccx);
|
2010-09-24 14:56:04 -07:00
|
|
|
|
2010-09-29 17:22:07 -07:00
|
|
|
tag cleanup {
|
2010-10-04 15:55:12 -07:00
|
|
|
clean(fn(@block_ctxt cx) -> result);
|
2010-09-29 17:22:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
state type block_ctxt = rec(BasicBlockRef llbb,
|
|
|
|
builder build,
|
2010-11-10 17:46:49 -08:00
|
|
|
block_parent parent,
|
2010-09-29 17:22:07 -07:00
|
|
|
mutable vec[cleanup] cleanups,
|
|
|
|
@fn_ctxt fcx);
|
|
|
|
|
2010-11-10 17:46:49 -08:00
|
|
|
// FIXME: we should be able to use option.t[@block_parent] here but
|
|
|
|
// the infinite-tag check in rustboot gets upset.
|
|
|
|
|
|
|
|
tag block_parent {
|
|
|
|
parent_none;
|
|
|
|
parent_some(@block_ctxt);
|
|
|
|
}
|
|
|
|
|
2010-09-29 17:22:07 -07:00
|
|
|
|
2010-10-04 15:55:12 -07:00
|
|
|
state type result = rec(mutable @block_ctxt bcx,
|
|
|
|
mutable ValueRef val);
|
|
|
|
|
|
|
|
fn res(@block_ctxt bcx, ValueRef val) -> result {
|
|
|
|
ret rec(mutable bcx = bcx,
|
|
|
|
mutable val = val);
|
|
|
|
}
|
|
|
|
|
2010-09-29 17:22:07 -07:00
|
|
|
fn ty_str(TypeRef t) -> str {
|
|
|
|
ret lib.llvm.type_to_str(t);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn val_ty(ValueRef v) -> TypeRef {
|
|
|
|
ret llvm.LLVMTypeOf(v);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn val_str(ValueRef v) -> str {
|
|
|
|
ret ty_str(val_ty(v));
|
|
|
|
}
|
2010-09-24 14:56:04 -07:00
|
|
|
|
|
|
|
|
|
|
|
// LLVM type constructors.
|
|
|
|
|
2010-10-04 15:55:12 -07:00
|
|
|
fn T_void() -> TypeRef {
|
|
|
|
// Note: For the time being llvm is kinda busted here, it has the notion
|
|
|
|
// of a 'void' type that can only occur as part of the signature of a
|
|
|
|
// function, but no general unit type of 0-sized value. This is, afaict,
|
|
|
|
// vestigial from its C heritage, and we'll be attempting to submit a
|
|
|
|
// patch upstream to fix it. In the mean time we only model function
|
|
|
|
// outputs (Rust functions and C functions) using T_void, and model the
|
|
|
|
// Rust general purpose nil type you can construct as 1-bit (always
|
|
|
|
// zero). This makes the result incorrect for now -- things like a tuple
|
|
|
|
// of 10 nil values will have 10-bit size -- but it doesn't seem like we
|
|
|
|
// have any other options until it's fixed upstream.
|
2010-09-22 17:05:38 -07:00
|
|
|
ret llvm.LLVMVoidType();
|
|
|
|
}
|
|
|
|
|
2010-10-04 15:55:12 -07:00
|
|
|
fn T_nil() -> TypeRef {
|
|
|
|
// NB: See above in T_void().
|
|
|
|
ret llvm.LLVMInt1Type();
|
|
|
|
}
|
|
|
|
|
2010-09-28 16:17:28 -07:00
|
|
|
fn T_i1() -> TypeRef {
|
|
|
|
ret llvm.LLVMInt1Type();
|
|
|
|
}
|
|
|
|
|
2010-09-28 12:23:40 -07:00
|
|
|
fn T_i8() -> TypeRef {
|
|
|
|
ret llvm.LLVMInt8Type();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn T_i16() -> TypeRef {
|
|
|
|
ret llvm.LLVMInt16Type();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn T_i32() -> TypeRef {
|
2010-09-22 17:05:38 -07:00
|
|
|
ret llvm.LLVMInt32Type();
|
|
|
|
}
|
|
|
|
|
2010-09-28 12:23:40 -07:00
|
|
|
fn T_i64() -> TypeRef {
|
|
|
|
ret llvm.LLVMInt64Type();
|
|
|
|
}
|
|
|
|
|
2010-10-19 14:54:10 -07:00
|
|
|
fn T_f32() -> TypeRef {
|
|
|
|
ret llvm.LLVMFloatType();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn T_f64() -> TypeRef {
|
|
|
|
ret llvm.LLVMDoubleType();
|
|
|
|
}
|
|
|
|
|
2010-10-19 17:24:15 -07:00
|
|
|
fn T_bool() -> TypeRef {
|
|
|
|
ret T_i1();
|
|
|
|
}
|
|
|
|
|
2010-09-28 12:23:40 -07:00
|
|
|
fn T_int() -> TypeRef {
|
|
|
|
// FIXME: switch on target type.
|
|
|
|
ret T_i32();
|
|
|
|
}
|
|
|
|
|
2010-10-19 14:54:10 -07:00
|
|
|
fn T_char() -> TypeRef {
|
|
|
|
ret T_i32();
|
|
|
|
}
|
|
|
|
|
2010-09-22 17:05:38 -07:00
|
|
|
fn T_fn(vec[TypeRef] inputs, TypeRef output) -> TypeRef {
|
|
|
|
ret llvm.LLVMFunctionType(output,
|
|
|
|
_vec.buf[TypeRef](inputs),
|
|
|
|
_vec.len[TypeRef](inputs),
|
2010-09-23 17:16:34 -07:00
|
|
|
False);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn T_ptr(TypeRef t) -> TypeRef {
|
|
|
|
ret llvm.LLVMPointerType(t, 0u);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn T_struct(vec[TypeRef] elts) -> TypeRef {
|
|
|
|
ret llvm.LLVMStructType(_vec.buf[TypeRef](elts),
|
|
|
|
_vec.len[TypeRef](elts),
|
|
|
|
False);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn T_opaque() -> TypeRef {
|
|
|
|
ret llvm.LLVMOpaqueType();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn T_task() -> TypeRef {
|
|
|
|
ret T_struct(vec(T_int(), // Refcount
|
2010-09-24 15:22:48 -07:00
|
|
|
T_int(), // Delegate pointer
|
|
|
|
T_int(), // Stack segment pointer
|
|
|
|
T_int(), // Runtime SP
|
|
|
|
T_int(), // Rust SP
|
|
|
|
T_int(), // GC chain
|
|
|
|
T_int(), // Domain pointer
|
|
|
|
T_int() // Crate cache pointer
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2010-10-01 18:25:42 -07:00
|
|
|
fn T_array(TypeRef t, uint n) -> TypeRef {
|
|
|
|
ret llvm.LLVMArrayType(t, n);
|
|
|
|
}
|
|
|
|
|
2010-11-22 14:28:05 -08:00
|
|
|
fn T_vec(TypeRef t) -> TypeRef {
|
|
|
|
ret T_struct(vec(T_int(), // Refcount
|
|
|
|
T_int(), // Alloc
|
|
|
|
T_int(), // Fill
|
|
|
|
T_array(t, 0u) // Body elements
|
2010-09-29 17:22:07 -07:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2010-11-22 14:28:05 -08:00
|
|
|
fn T_str() -> TypeRef {
|
|
|
|
ret T_vec(T_i8());
|
2010-10-01 18:25:42 -07:00
|
|
|
}
|
|
|
|
|
2010-10-19 14:54:10 -07:00
|
|
|
fn T_box(TypeRef t) -> TypeRef {
|
|
|
|
ret T_struct(vec(T_int(), t));
|
|
|
|
}
|
|
|
|
|
2010-09-24 16:41:01 -07:00
|
|
|
fn T_crate() -> TypeRef {
|
|
|
|
ret T_struct(vec(T_int(), // ptrdiff_t image_base_off
|
|
|
|
T_int(), // uintptr_t self_addr
|
|
|
|
T_int(), // ptrdiff_t debug_abbrev_off
|
|
|
|
T_int(), // size_t debug_abbrev_sz
|
|
|
|
T_int(), // ptrdiff_t debug_info_off
|
|
|
|
T_int(), // size_t debug_info_sz
|
|
|
|
T_int(), // size_t activate_glue_off
|
|
|
|
T_int(), // size_t yield_glue_off
|
|
|
|
T_int(), // size_t unwind_glue_off
|
|
|
|
T_int(), // size_t gc_glue_off
|
|
|
|
T_int(), // size_t main_exit_task_glue_off
|
|
|
|
T_int(), // int n_rust_syms
|
|
|
|
T_int(), // int n_c_syms
|
2010-09-29 17:22:07 -07:00
|
|
|
T_int() // int n_libs
|
2010-09-24 16:41:01 -07:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2010-09-24 15:22:48 -07:00
|
|
|
fn T_double() -> TypeRef {
|
|
|
|
ret llvm.LLVMDoubleType();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn T_taskptr() -> TypeRef {
|
|
|
|
ret T_ptr(T_task());
|
2010-09-23 17:16:34 -07:00
|
|
|
}
|
|
|
|
|
2010-11-21 12:06:09 -08:00
|
|
|
fn type_of(@crate_ctxt cx, @typeck.ty t) -> TypeRef {
|
2010-11-20 22:04:34 -08:00
|
|
|
let TypeRef llty = type_of_inner(cx, t);
|
|
|
|
check (llty as int != 0);
|
|
|
|
ret llty;
|
|
|
|
}
|
|
|
|
|
2010-11-21 12:06:09 -08:00
|
|
|
fn type_of_inner(@crate_ctxt cx, @typeck.ty t) -> TypeRef {
|
2010-11-03 16:43:12 -07:00
|
|
|
alt (t.struct) {
|
|
|
|
case (typeck.ty_nil) { ret T_nil(); }
|
|
|
|
case (typeck.ty_bool) { ret T_bool(); }
|
|
|
|
case (typeck.ty_int) { ret T_int(); }
|
|
|
|
case (typeck.ty_uint) { ret T_int(); }
|
|
|
|
case (typeck.ty_machine(?tm)) {
|
2010-10-19 14:54:10 -07:00
|
|
|
alt (tm) {
|
|
|
|
case (common.ty_i8) { ret T_i8(); }
|
|
|
|
case (common.ty_u8) { ret T_i8(); }
|
|
|
|
case (common.ty_i16) { ret T_i16(); }
|
|
|
|
case (common.ty_u16) { ret T_i16(); }
|
|
|
|
case (common.ty_i32) { ret T_i32(); }
|
|
|
|
case (common.ty_u32) { ret T_i32(); }
|
|
|
|
case (common.ty_i64) { ret T_i64(); }
|
|
|
|
case (common.ty_u64) { ret T_i64(); }
|
|
|
|
case (common.ty_f32) { ret T_f32(); }
|
|
|
|
case (common.ty_f64) { ret T_f64(); }
|
|
|
|
}
|
|
|
|
}
|
2010-11-03 16:43:12 -07:00
|
|
|
case (typeck.ty_char) { ret T_char(); }
|
2010-11-22 14:28:05 -08:00
|
|
|
case (typeck.ty_str) { ret T_ptr(T_str()); }
|
2010-11-03 16:43:12 -07:00
|
|
|
case (typeck.ty_box(?t)) {
|
2010-10-19 14:54:10 -07:00
|
|
|
ret T_ptr(T_box(type_of(cx, t)));
|
|
|
|
}
|
2010-11-03 16:43:12 -07:00
|
|
|
case (typeck.ty_vec(?t)) {
|
2010-11-22 14:28:05 -08:00
|
|
|
ret T_ptr(T_vec(type_of(cx, t)));
|
2010-10-19 14:54:10 -07:00
|
|
|
}
|
2010-11-03 16:43:12 -07:00
|
|
|
case (typeck.ty_tup(?elts)) {
|
2010-10-19 14:54:10 -07:00
|
|
|
let vec[TypeRef] tys = vec();
|
2010-11-03 16:43:12 -07:00
|
|
|
for (tup(bool, @typeck.ty) elt in elts) {
|
2010-10-19 14:54:10 -07:00
|
|
|
tys += type_of(cx, elt._1);
|
|
|
|
}
|
|
|
|
ret T_struct(tys);
|
|
|
|
}
|
2010-11-19 20:08:57 -08:00
|
|
|
case (typeck.ty_fn(?args, ?out)) {
|
2010-11-20 22:05:17 -08:00
|
|
|
let vec[TypeRef] atys = vec(T_taskptr());
|
2010-11-19 20:08:57 -08:00
|
|
|
for (typeck.arg arg in args) {
|
|
|
|
let TypeRef t = type_of(cx, arg.ty);
|
|
|
|
alt (arg.mode) {
|
|
|
|
case (ast.alias) {
|
|
|
|
t = T_ptr(t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
atys += t;
|
|
|
|
}
|
|
|
|
ret T_fn(atys, type_of(cx, out));
|
|
|
|
}
|
2010-11-03 16:43:12 -07:00
|
|
|
case (typeck.ty_var(_)) {
|
2010-10-19 14:54:10 -07:00
|
|
|
// FIXME: implement.
|
2010-11-03 16:43:12 -07:00
|
|
|
log "ty_var in trans.type_of";
|
|
|
|
ret T_i8();
|
2010-10-19 14:54:10 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
fail;
|
|
|
|
}
|
|
|
|
|
2010-09-24 14:56:04 -07:00
|
|
|
// LLVM constant constructors.
|
|
|
|
|
|
|
|
fn C_null(TypeRef t) -> ValueRef {
|
|
|
|
ret llvm.LLVMConstNull(t);
|
|
|
|
}
|
|
|
|
|
2010-09-28 12:23:40 -07:00
|
|
|
fn C_integral(int i, TypeRef t) -> ValueRef {
|
2010-09-24 14:56:04 -07:00
|
|
|
// FIXME. We can't use LLVM.ULongLong with our existing minimal native
|
|
|
|
// API, which only knows word-sized args. Lucky for us LLVM has a "take a
|
|
|
|
// string encoding" version. Hilarious. Please fix to handle:
|
|
|
|
//
|
|
|
|
// ret llvm.LLVMConstInt(T_int(), t as LLVM.ULongLong, False);
|
|
|
|
//
|
2010-09-28 12:23:40 -07:00
|
|
|
ret llvm.LLVMConstIntOfString(t, _str.buf(istr(i)), 10);
|
|
|
|
}
|
|
|
|
|
2010-10-04 15:55:12 -07:00
|
|
|
fn C_nil() -> ValueRef {
|
|
|
|
// NB: See comment above in T_void().
|
|
|
|
ret C_integral(0, T_i1());
|
|
|
|
}
|
|
|
|
|
2010-09-28 14:01:21 -07:00
|
|
|
fn C_bool(bool b) -> ValueRef {
|
|
|
|
if (b) {
|
2010-10-19 17:24:15 -07:00
|
|
|
ret C_integral(1, T_bool());
|
2010-09-28 14:01:21 -07:00
|
|
|
} else {
|
2010-10-19 17:24:15 -07:00
|
|
|
ret C_integral(0, T_bool());
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-28 12:23:40 -07:00
|
|
|
fn C_int(int i) -> ValueRef {
|
|
|
|
ret C_integral(i, T_int());
|
2010-09-24 14:56:04 -07:00
|
|
|
}
|
|
|
|
|
2010-11-21 12:06:09 -08:00
|
|
|
fn C_str(@crate_ctxt cx, str s) -> ValueRef {
|
2010-09-28 12:23:40 -07:00
|
|
|
auto sc = llvm.LLVMConstString(_str.buf(s), _str.byte_len(s), False);
|
2010-09-29 17:22:07 -07:00
|
|
|
auto g = llvm.LLVMAddGlobal(cx.llmod, val_ty(sc),
|
2010-09-28 12:23:40 -07:00
|
|
|
_str.buf(cx.names.next("str")));
|
|
|
|
llvm.LLVMSetInitializer(g, sc);
|
|
|
|
ret g;
|
2010-09-24 14:56:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fn C_struct(vec[ValueRef] elts) -> ValueRef {
|
|
|
|
ret llvm.LLVMConstStruct(_vec.buf[ValueRef](elts),
|
|
|
|
_vec.len[ValueRef](elts),
|
|
|
|
False);
|
|
|
|
}
|
|
|
|
|
2010-11-05 18:27:57 -07:00
|
|
|
fn C_tydesc(TypeRef t) -> ValueRef {
|
|
|
|
ret C_struct(vec(C_null(T_opaque()), // first_param
|
|
|
|
llvm.LLVMSizeOf(t), // size
|
|
|
|
llvm.LLVMAlignOf(t), // align
|
|
|
|
C_null(T_opaque()), // copy_glue_off
|
|
|
|
C_null(T_opaque()), // drop_glue_off
|
|
|
|
C_null(T_opaque()), // free_glue_off
|
|
|
|
C_null(T_opaque()), // sever_glue_off
|
|
|
|
C_null(T_opaque()), // mark_glue_off
|
|
|
|
C_null(T_opaque()), // obj_drop_glue_off
|
|
|
|
C_null(T_opaque()))); // is_stateful
|
|
|
|
}
|
|
|
|
|
2010-11-03 16:43:12 -07:00
|
|
|
fn decl_fn(ModuleRef llmod, str name, uint cc, TypeRef llty) -> ValueRef {
|
2010-09-23 17:16:34 -07:00
|
|
|
let ValueRef llfn =
|
|
|
|
llvm.LLVMAddFunction(llmod, _str.buf(name), llty);
|
2010-11-14 12:28:07 -08:00
|
|
|
llvm.LLVMSetFunctionCallConv(llfn, cc);
|
2010-09-23 17:16:34 -07:00
|
|
|
ret llfn;
|
|
|
|
}
|
|
|
|
|
2010-11-03 16:43:12 -07:00
|
|
|
fn decl_cdecl_fn(ModuleRef llmod, str name, TypeRef llty) -> ValueRef {
|
|
|
|
ret decl_fn(llmod, name, lib.llvm.LLVMCCallConv, llty);
|
2010-11-14 12:28:07 -08:00
|
|
|
}
|
|
|
|
|
2010-11-03 16:43:12 -07:00
|
|
|
fn decl_fastcall_fn(ModuleRef llmod, str name, TypeRef llty) -> ValueRef {
|
|
|
|
ret decl_fn(llmod, name, lib.llvm.LLVMFastCallConv, llty);
|
2010-11-14 12:28:07 -08:00
|
|
|
}
|
|
|
|
|
2010-09-23 17:16:34 -07:00
|
|
|
fn decl_glue(ModuleRef llmod, str s) -> ValueRef {
|
2010-11-03 16:43:12 -07:00
|
|
|
ret decl_cdecl_fn(llmod, s, T_fn(vec(T_taskptr()), T_void()));
|
2010-09-22 17:05:38 -07:00
|
|
|
}
|
|
|
|
|
2010-09-23 17:16:34 -07:00
|
|
|
fn decl_upcall(ModuleRef llmod, uint _n) -> ValueRef {
|
2010-09-24 15:22:48 -07:00
|
|
|
// It doesn't actually matter what type we come up with here, at the
|
|
|
|
// moment, as we cast the upcall function pointers to int before passing
|
|
|
|
// them to the indirect upcall-invocation glue. But eventually we'd like
|
|
|
|
// to call them directly, once we have a calling convention worked out.
|
2010-09-23 17:16:34 -07:00
|
|
|
let int n = _n as int;
|
2010-09-24 14:56:04 -07:00
|
|
|
let str s = abi.upcall_glue_name(n);
|
2010-09-23 17:16:34 -07:00
|
|
|
let vec[TypeRef] args =
|
2010-09-24 15:22:48 -07:00
|
|
|
vec(T_taskptr(), // taskptr
|
|
|
|
T_int()) // callee
|
2010-09-23 17:16:34 -07:00
|
|
|
+ _vec.init_elt[TypeRef](T_int(), n as uint);
|
|
|
|
|
2010-11-03 16:43:12 -07:00
|
|
|
ret decl_fastcall_fn(llmod, s, T_fn(args, T_int()));
|
2010-09-23 17:16:34 -07:00
|
|
|
}
|
|
|
|
|
2010-11-21 12:06:09 -08:00
|
|
|
fn get_upcall(@crate_ctxt cx, str name, int n_args) -> ValueRef {
|
2010-09-23 18:38:37 -07:00
|
|
|
if (cx.upcalls.contains_key(name)) {
|
|
|
|
ret cx.upcalls.get(name);
|
|
|
|
}
|
2010-09-24 15:22:48 -07:00
|
|
|
auto inputs = vec(T_taskptr());
|
2010-09-23 18:38:37 -07:00
|
|
|
inputs += _vec.init_elt[TypeRef](T_int(), n_args as uint);
|
2010-09-29 17:22:07 -07:00
|
|
|
auto output = T_int();
|
2010-11-03 16:43:12 -07:00
|
|
|
auto f = decl_cdecl_fn(cx.llmod, name, T_fn(inputs, output));
|
2010-09-23 18:38:37 -07:00
|
|
|
cx.upcalls.insert(name, f);
|
|
|
|
ret f;
|
|
|
|
}
|
|
|
|
|
2010-10-04 15:55:12 -07:00
|
|
|
fn trans_upcall(@block_ctxt cx, str name, vec[ValueRef] args) -> result {
|
2010-09-24 14:56:04 -07:00
|
|
|
let int n = _vec.len[ValueRef](args) as int;
|
2010-11-21 12:06:09 -08:00
|
|
|
let ValueRef llupcall = get_upcall(cx.fcx.ccx, name, n);
|
2010-09-24 14:56:04 -07:00
|
|
|
llupcall = llvm.LLVMConstPointerCast(llupcall, T_int());
|
|
|
|
|
2010-11-21 12:06:09 -08:00
|
|
|
let ValueRef llglue = cx.fcx.ccx.glues.upcall_glues.(n);
|
2010-09-28 12:23:40 -07:00
|
|
|
let vec[ValueRef] call_args = vec(cx.fcx.lltaskptr, llupcall);
|
|
|
|
for (ValueRef a in args) {
|
|
|
|
call_args += cx.build.ZExtOrBitCast(a, T_int());
|
|
|
|
}
|
2010-11-14 13:41:10 -08:00
|
|
|
ret res(cx, cx.build.FastCall(llglue, call_args));
|
2010-09-24 14:56:04 -07:00
|
|
|
}
|
|
|
|
|
2010-10-04 15:55:12 -07:00
|
|
|
fn trans_non_gc_free(@block_ctxt cx, ValueRef v) -> result {
|
|
|
|
ret trans_upcall(cx, "upcall_free", vec(cx.build.PtrToInt(v, T_int()),
|
|
|
|
C_int(0)));
|
2010-09-29 17:22:07 -07:00
|
|
|
}
|
|
|
|
|
2010-11-09 17:49:20 -08:00
|
|
|
fn incr_refcnt(@block_ctxt cx, ValueRef box_ptr) -> result {
|
|
|
|
auto rc_ptr = cx.build.GEP(box_ptr, vec(C_int(0),
|
|
|
|
C_int(abi.box_rc_field_refcnt)));
|
|
|
|
auto rc = cx.build.Load(rc_ptr);
|
|
|
|
|
2010-11-10 17:46:49 -08:00
|
|
|
auto next_cx = new_sub_block_ctxt(cx, "next");
|
|
|
|
auto rc_adj_cx = new_sub_block_ctxt(cx, "rc++");
|
2010-11-09 17:49:20 -08:00
|
|
|
|
|
|
|
auto const_test = cx.build.ICmp(lib.llvm.LLVMIntEQ,
|
|
|
|
C_int(abi.const_refcount as int), rc);
|
|
|
|
cx.build.CondBr(const_test, next_cx.llbb, rc_adj_cx.llbb);
|
|
|
|
|
|
|
|
rc = rc_adj_cx.build.Add(rc, C_int(1));
|
|
|
|
rc_adj_cx.build.Store(rc, rc_ptr);
|
|
|
|
rc_adj_cx.build.Br(next_cx.llbb);
|
|
|
|
|
|
|
|
ret res(next_cx, C_nil());
|
|
|
|
}
|
|
|
|
|
2010-10-01 18:25:42 -07:00
|
|
|
fn decr_refcnt_and_if_zero(@block_ctxt cx,
|
|
|
|
ValueRef box_ptr,
|
2010-10-04 15:55:12 -07:00
|
|
|
fn(@block_ctxt cx) -> result inner,
|
2010-11-10 17:46:49 -08:00
|
|
|
str inner_name,
|
2010-10-04 15:55:12 -07:00
|
|
|
TypeRef t_else, ValueRef v_else) -> result {
|
2010-11-10 17:46:49 -08:00
|
|
|
|
|
|
|
auto rc_adj_cx = new_sub_block_ctxt(cx, "rc--");
|
|
|
|
auto inner_cx = new_sub_block_ctxt(cx, inner_name);
|
|
|
|
auto next_cx = new_sub_block_ctxt(cx, "next");
|
|
|
|
|
2010-10-01 18:25:42 -07:00
|
|
|
auto rc_ptr = cx.build.GEP(box_ptr, vec(C_int(0),
|
|
|
|
C_int(abi.box_rc_field_refcnt)));
|
|
|
|
auto rc = cx.build.Load(rc_ptr);
|
2010-11-09 17:49:20 -08:00
|
|
|
|
|
|
|
auto const_test = cx.build.ICmp(lib.llvm.LLVMIntEQ,
|
|
|
|
C_int(abi.const_refcount as int), rc);
|
|
|
|
cx.build.CondBr(const_test, next_cx.llbb, rc_adj_cx.llbb);
|
|
|
|
|
|
|
|
rc = rc_adj_cx.build.Sub(rc, C_int(1));
|
|
|
|
rc_adj_cx.build.Store(rc, rc_ptr);
|
|
|
|
auto zero_test = rc_adj_cx.build.ICmp(lib.llvm.LLVMIntEQ, C_int(0), rc);
|
2010-11-10 17:46:49 -08:00
|
|
|
rc_adj_cx.build.CondBr(zero_test, inner_cx.llbb, next_cx.llbb);
|
|
|
|
|
|
|
|
auto inner_res = inner(inner_cx);
|
|
|
|
inner_res.bcx.build.Br(next_cx.llbb);
|
2010-11-09 17:49:20 -08:00
|
|
|
|
2010-10-04 15:55:12 -07:00
|
|
|
auto phi = next_cx.build.Phi(t_else,
|
2010-11-10 17:46:49 -08:00
|
|
|
vec(v_else, v_else, inner_res.val),
|
2010-11-09 17:49:20 -08:00
|
|
|
vec(cx.llbb,
|
|
|
|
rc_adj_cx.llbb,
|
2010-11-10 17:46:49 -08:00
|
|
|
inner_res.bcx.llbb));
|
|
|
|
|
2010-10-04 15:55:12 -07:00
|
|
|
ret res(next_cx, phi);
|
2010-10-01 18:25:42 -07:00
|
|
|
}
|
|
|
|
|
2010-11-09 17:49:20 -08:00
|
|
|
fn type_is_scalar(@ast.ty t) -> bool {
|
|
|
|
alt (t.node) {
|
|
|
|
case (ast.ty_nil) { ret true; }
|
|
|
|
case (ast.ty_bool) { ret true; }
|
|
|
|
case (ast.ty_int) { ret true; }
|
|
|
|
case (ast.ty_uint) { ret true; }
|
|
|
|
case (ast.ty_machine(_)) { ret true; }
|
|
|
|
case (ast.ty_char) { ret true; }
|
|
|
|
}
|
|
|
|
ret false;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_copy_ty(@block_ctxt cx,
|
|
|
|
bool is_init,
|
|
|
|
ValueRef dst,
|
|
|
|
ValueRef src,
|
|
|
|
@ast.ty t) -> result {
|
|
|
|
if (type_is_scalar(t)) {
|
|
|
|
ret res(cx, cx.build.Store(src, dst));
|
|
|
|
}
|
|
|
|
|
|
|
|
alt (t.node) {
|
|
|
|
case (ast.ty_str) {
|
|
|
|
let result r = res(cx, C_nil());
|
|
|
|
if (is_init) {
|
|
|
|
r = trans_drop_str(cx, dst);
|
|
|
|
}
|
|
|
|
r = incr_refcnt(r.bcx, src);
|
|
|
|
ret res(r.bcx, r.bcx.build.Store(src, dst));
|
|
|
|
}
|
|
|
|
}
|
2010-11-21 12:06:09 -08:00
|
|
|
cx.fcx.ccx.sess.unimpl("ty variant in trans_copy_ty");
|
2010-11-09 17:49:20 -08:00
|
|
|
fail;
|
|
|
|
}
|
|
|
|
|
2010-10-04 15:55:12 -07:00
|
|
|
fn trans_drop_str(@block_ctxt cx, ValueRef v) -> result {
|
|
|
|
ret decr_refcnt_and_if_zero(cx, v,
|
|
|
|
bind trans_non_gc_free(_, v),
|
2010-11-10 17:46:49 -08:00
|
|
|
"free string",
|
2010-10-04 15:55:12 -07:00
|
|
|
T_int(), C_int(0));
|
2010-09-29 17:22:07 -07:00
|
|
|
}
|
|
|
|
|
2010-11-02 15:24:46 -07:00
|
|
|
impure fn trans_lit(@block_ctxt cx, &ast.lit lit) -> result {
|
2010-10-05 18:21:44 -07:00
|
|
|
alt (lit.node) {
|
2010-09-28 14:01:21 -07:00
|
|
|
case (ast.lit_int(?i)) {
|
2010-10-04 15:55:12 -07:00
|
|
|
ret res(cx, C_int(i));
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
case (ast.lit_uint(?u)) {
|
2010-10-04 15:55:12 -07:00
|
|
|
ret res(cx, C_int(u as int));
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
2010-11-22 17:41:26 -08:00
|
|
|
case (ast.lit_mach_int(?tm, ?i)) {
|
|
|
|
// FIXME: the entire handling of mach types falls apart
|
|
|
|
// if target int width is larger than host, at the moment;
|
|
|
|
// re-do the mach-int types using 'big' when that works.
|
|
|
|
auto t = T_int();
|
|
|
|
alt (tm) {
|
|
|
|
case (common.ty_u8) { t = T_i8(); }
|
|
|
|
case (common.ty_u16) { t = T_i16(); }
|
|
|
|
case (common.ty_u32) { t = T_i32(); }
|
|
|
|
case (common.ty_u64) { t = T_i64(); }
|
|
|
|
|
|
|
|
case (common.ty_i8) { t = T_i8(); }
|
|
|
|
case (common.ty_i16) { t = T_i16(); }
|
|
|
|
case (common.ty_i32) { t = T_i32(); }
|
|
|
|
case (common.ty_i64) { t = T_i64(); }
|
|
|
|
case (_) {
|
|
|
|
cx.fcx.ccx.sess.bug("bad mach int literal type");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ret res(cx, C_integral(i, t));
|
|
|
|
}
|
2010-09-28 14:01:21 -07:00
|
|
|
case (ast.lit_char(?c)) {
|
2010-10-19 14:54:10 -07:00
|
|
|
ret res(cx, C_integral(c as int, T_char()));
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
case (ast.lit_bool(?b)) {
|
2010-10-04 15:55:12 -07:00
|
|
|
ret res(cx, C_bool(b));
|
|
|
|
}
|
|
|
|
case (ast.lit_nil) {
|
|
|
|
ret res(cx, C_nil());
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
case (ast.lit_str(?s)) {
|
|
|
|
auto len = (_str.byte_len(s) as int) + 1;
|
2010-10-04 15:55:12 -07:00
|
|
|
auto sub = trans_upcall(cx, "upcall_new_str",
|
2010-11-21 12:06:09 -08:00
|
|
|
vec(p2i(C_str(cx.fcx.ccx, s)),
|
2010-10-04 15:55:12 -07:00
|
|
|
C_int(len)));
|
|
|
|
sub.val = sub.bcx.build.IntToPtr(sub.val,
|
2010-11-22 14:28:05 -08:00
|
|
|
T_ptr(T_str()));
|
2010-10-04 15:55:12 -07:00
|
|
|
cx.cleanups += vec(clean(bind trans_drop_str(_, sub.val)));
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-22 16:27:00 -08:00
|
|
|
fn target_type(@crate_ctxt cx, @typeck.ty t) -> @typeck.ty {
|
|
|
|
alt (t.struct) {
|
|
|
|
case (typeck.ty_int) {
|
|
|
|
auto tm = typeck.ty_machine(cx.sess.get_targ_cfg().int_type);
|
|
|
|
ret @rec(struct=tm with *t);
|
|
|
|
}
|
|
|
|
case (typeck.ty_uint) {
|
|
|
|
auto tm = typeck.ty_machine(cx.sess.get_targ_cfg().uint_type);
|
|
|
|
ret @rec(struct=tm with *t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ret t;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn node_ann_type(@crate_ctxt cx, &ast.ann a) -> @typeck.ty {
|
2010-11-05 18:31:02 -07:00
|
|
|
alt (a) {
|
|
|
|
case (ast.ann_none) {
|
|
|
|
log "missing type annotation";
|
|
|
|
fail;
|
|
|
|
}
|
|
|
|
case (ast.ann_type(?t)) {
|
2010-11-22 16:27:00 -08:00
|
|
|
ret target_type(cx, t);
|
2010-11-05 18:31:02 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-22 16:27:00 -08:00
|
|
|
fn node_type(@crate_ctxt cx, &ast.ann a) -> TypeRef {
|
|
|
|
ret type_of(cx, node_ann_type(cx, a));
|
|
|
|
}
|
|
|
|
|
2010-11-05 18:31:02 -07:00
|
|
|
impure fn trans_unary(@block_ctxt cx, ast.unop op,
|
|
|
|
&ast.expr e, &ast.ann a) -> result {
|
2010-10-04 15:55:12 -07:00
|
|
|
|
|
|
|
auto sub = trans_expr(cx, e);
|
|
|
|
|
2010-09-28 14:01:21 -07:00
|
|
|
alt (op) {
|
|
|
|
case (ast.bitnot) {
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.Not(sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
case (ast.not) {
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.Not(sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
case (ast.neg) {
|
|
|
|
// FIXME: switch by signedness.
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.Neg(sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
2010-11-05 18:31:02 -07:00
|
|
|
case (ast.box) {
|
2010-11-21 12:06:09 -08:00
|
|
|
auto e_ty = node_type(cx.fcx.ccx, a);
|
2010-11-05 18:31:02 -07:00
|
|
|
auto box_ty = T_box(e_ty);
|
|
|
|
sub.val = cx.build.Malloc(box_ty);
|
|
|
|
auto rc = sub.bcx.build.GEP(sub.val,
|
|
|
|
vec(C_int(0),
|
|
|
|
C_int(abi.box_rc_field_refcnt)));
|
|
|
|
ret res(sub.bcx, cx.build.Store(C_int(1), rc));
|
|
|
|
}
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
2010-11-21 12:06:09 -08:00
|
|
|
cx.fcx.ccx.sess.unimpl("expr variant in trans_unary");
|
2010-09-28 14:01:21 -07:00
|
|
|
fail;
|
|
|
|
}
|
|
|
|
|
2010-11-02 15:24:46 -07:00
|
|
|
impure fn trans_binary(@block_ctxt cx, ast.binop op,
|
|
|
|
&ast.expr a, &ast.expr b) -> result {
|
2010-10-04 15:55:12 -07:00
|
|
|
|
2010-10-19 17:24:15 -07:00
|
|
|
// First couple cases are lazy:
|
|
|
|
|
|
|
|
alt (op) {
|
|
|
|
case (ast.and) {
|
|
|
|
// Lazy-eval and
|
|
|
|
auto lhs_res = trans_expr(cx, a);
|
|
|
|
|
2010-11-10 17:46:49 -08:00
|
|
|
auto rhs_cx = new_sub_block_ctxt(cx, "rhs");
|
2010-10-19 17:24:15 -07:00
|
|
|
auto rhs_res = trans_expr(rhs_cx, b);
|
|
|
|
|
2010-11-12 14:51:11 -08:00
|
|
|
auto lhs_false_cx = new_sub_block_ctxt(cx, "lhs false");
|
|
|
|
auto lhs_false_res = res(lhs_false_cx, C_bool(false));
|
2010-10-19 17:24:15 -07:00
|
|
|
|
|
|
|
lhs_res.bcx.build.CondBr(lhs_res.val,
|
|
|
|
rhs_cx.llbb,
|
2010-11-12 14:51:11 -08:00
|
|
|
lhs_false_cx.llbb);
|
|
|
|
|
|
|
|
ret join_results(cx, T_bool(),
|
|
|
|
vec(lhs_false_res, rhs_res));
|
2010-10-19 17:24:15 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.or) {
|
|
|
|
// Lazy-eval or
|
|
|
|
auto lhs_res = trans_expr(cx, a);
|
|
|
|
|
2010-11-10 17:46:49 -08:00
|
|
|
auto rhs_cx = new_sub_block_ctxt(cx, "rhs");
|
2010-10-19 17:24:15 -07:00
|
|
|
auto rhs_res = trans_expr(rhs_cx, b);
|
|
|
|
|
2010-11-12 14:51:11 -08:00
|
|
|
auto lhs_true_cx = new_sub_block_ctxt(cx, "lhs true");
|
|
|
|
auto lhs_true_res = res(lhs_true_cx, C_bool(true));
|
2010-10-19 17:24:15 -07:00
|
|
|
|
|
|
|
lhs_res.bcx.build.CondBr(lhs_res.val,
|
2010-11-12 14:51:11 -08:00
|
|
|
lhs_true_cx.llbb,
|
2010-10-19 17:24:15 -07:00
|
|
|
rhs_cx.llbb);
|
2010-11-12 14:51:11 -08:00
|
|
|
|
|
|
|
ret join_results(cx, T_bool(),
|
|
|
|
vec(lhs_true_res, rhs_res));
|
2010-10-19 17:24:15 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remaining cases are eager:
|
|
|
|
|
2010-10-04 15:55:12 -07:00
|
|
|
auto lhs = trans_expr(cx, a);
|
|
|
|
auto sub = trans_expr(lhs.bcx, b);
|
|
|
|
|
2010-09-28 14:01:21 -07:00
|
|
|
alt (op) {
|
|
|
|
case (ast.add) {
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.Add(lhs.val, sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.sub) {
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.Sub(lhs.val, sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.mul) {
|
|
|
|
// FIXME: switch by signedness.
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.Mul(lhs.val, sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.div) {
|
|
|
|
// FIXME: switch by signedness.
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.SDiv(lhs.val, sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.rem) {
|
|
|
|
// FIXME: switch by signedness.
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.SRem(lhs.val, sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.bitor) {
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.Or(lhs.val, sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.bitand) {
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.And(lhs.val, sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.bitxor) {
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.Xor(lhs.val, sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.lsl) {
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.Shl(lhs.val, sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.lsr) {
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.LShr(lhs.val, sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.asr) {
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.AShr(lhs.val, sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.eq) {
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.ICmp(lib.llvm.LLVMIntEQ, lhs.val, sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.ne) {
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.ICmp(lib.llvm.LLVMIntNE, lhs.val, sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.lt) {
|
|
|
|
// FIXME: switch by signedness.
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.ICmp(lib.llvm.LLVMIntSLT, lhs.val, sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.le) {
|
|
|
|
// FIXME: switch by signedness.
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.ICmp(lib.llvm.LLVMIntSLE, lhs.val, sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.ge) {
|
|
|
|
// FIXME: switch by signedness.
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.ICmp(lib.llvm.LLVMIntSGE, lhs.val, sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.gt) {
|
|
|
|
// FIXME: switch by signedness.
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.val = cx.build.ICmp(lib.llvm.LLVMIntSGT, lhs.val, sub.val);
|
|
|
|
ret sub;
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
}
|
2010-11-21 12:06:09 -08:00
|
|
|
cx.fcx.ccx.sess.unimpl("expr variant in trans_binary");
|
2010-09-28 14:01:21 -07:00
|
|
|
fail;
|
|
|
|
}
|
|
|
|
|
2010-11-12 14:51:11 -08:00
|
|
|
fn join_results(@block_ctxt parent_cx,
|
|
|
|
TypeRef t,
|
|
|
|
vec[result] ins)
|
|
|
|
-> result {
|
|
|
|
|
|
|
|
let vec[result] live = vec();
|
|
|
|
let vec[ValueRef] vals = vec();
|
|
|
|
let vec[BasicBlockRef] bbs = vec();
|
|
|
|
|
|
|
|
for (result r in ins) {
|
|
|
|
if (! is_terminated(r.bcx)) {
|
|
|
|
live += r;
|
|
|
|
vals += r.val;
|
|
|
|
bbs += r.bcx.llbb;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
alt (_vec.len[result](live)) {
|
|
|
|
case (0u) {
|
|
|
|
// No incoming edges are live, so we're in dead-code-land.
|
|
|
|
// Arbitrarily pick the first dead edge, since the caller
|
|
|
|
// is just going to propagate it outward.
|
|
|
|
check (_vec.len[result](ins) >= 1u);
|
|
|
|
ret ins.(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
case (1u) {
|
|
|
|
// Only one incoming edge is live, so we just feed that block
|
|
|
|
// onward.
|
|
|
|
ret live.(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We have >1 incoming edges. Make a join block and br+phi them into it.
|
|
|
|
auto join_cx = new_sub_block_ctxt(parent_cx, "join");
|
|
|
|
for (result r in live) {
|
|
|
|
r.bcx.build.Br(join_cx.llbb);
|
|
|
|
}
|
|
|
|
auto phi = join_cx.build.Phi(t, vals, bbs);
|
|
|
|
ret res(join_cx, phi);
|
|
|
|
}
|
|
|
|
|
2010-11-02 15:24:46 -07:00
|
|
|
impure fn trans_if(@block_ctxt cx, &ast.expr cond,
|
2010-11-03 17:10:37 -07:00
|
|
|
&ast.block thn, &option.t[ast.block] els) -> result {
|
2010-10-04 15:55:12 -07:00
|
|
|
|
|
|
|
auto cond_res = trans_expr(cx, cond);
|
|
|
|
|
2010-11-10 17:46:49 -08:00
|
|
|
auto then_cx = new_sub_block_ctxt(cx, "then");
|
2010-10-04 15:55:12 -07:00
|
|
|
auto then_res = trans_block(then_cx, thn);
|
|
|
|
|
2010-11-12 14:51:11 -08:00
|
|
|
auto else_cx = new_sub_block_ctxt(cx, "else");
|
|
|
|
auto else_res = res(else_cx, C_nil());
|
2010-10-04 15:55:12 -07:00
|
|
|
|
|
|
|
alt (els) {
|
|
|
|
case (some[ast.block](?eblk)) {
|
2010-11-12 14:51:11 -08:00
|
|
|
else_res = trans_block(else_cx, eblk);
|
2010-10-04 15:55:12 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-12 14:51:11 -08:00
|
|
|
cond_res.bcx.build.CondBr(cond_res.val,
|
|
|
|
then_res.bcx.llbb,
|
|
|
|
else_res.bcx.llbb);
|
|
|
|
|
|
|
|
// FIXME: use inferred type when available.
|
|
|
|
ret join_results(cx, T_nil(),
|
|
|
|
vec(then_res, else_res));
|
2010-10-04 15:55:12 -07:00
|
|
|
}
|
|
|
|
|
2010-11-03 11:05:15 -07:00
|
|
|
impure fn trans_while(@block_ctxt cx, &ast.expr cond,
|
|
|
|
&ast.block body) -> result {
|
|
|
|
|
2010-11-10 17:46:49 -08:00
|
|
|
auto cond_cx = new_sub_block_ctxt(cx, "while cond");
|
|
|
|
auto body_cx = new_sub_block_ctxt(cx, "while loop body");
|
|
|
|
auto next_cx = new_sub_block_ctxt(cx, "next");
|
2010-11-03 11:05:15 -07:00
|
|
|
|
|
|
|
auto body_res = trans_block(body_cx, body);
|
2010-11-04 07:55:33 -07:00
|
|
|
auto cond_res = trans_expr(cond_cx, cond);
|
|
|
|
|
|
|
|
body_res.bcx.build.Br(cond_cx.llbb);
|
|
|
|
cond_res.bcx.build.CondBr(cond_res.val,
|
|
|
|
body_cx.llbb,
|
|
|
|
next_cx.llbb);
|
|
|
|
|
|
|
|
cx.build.Br(cond_cx.llbb);
|
2010-11-03 11:05:15 -07:00
|
|
|
ret res(next_cx, C_nil());
|
|
|
|
}
|
|
|
|
|
|
|
|
impure fn trans_do_while(@block_ctxt cx, &ast.block body,
|
|
|
|
&ast.expr cond) -> result {
|
|
|
|
|
2010-11-10 17:46:49 -08:00
|
|
|
auto body_cx = new_sub_block_ctxt(cx, "do-while loop body");
|
|
|
|
auto next_cx = new_sub_block_ctxt(cx, "next");
|
2010-11-03 11:05:15 -07:00
|
|
|
|
|
|
|
auto body_res = trans_block(body_cx, body);
|
2010-11-04 07:55:33 -07:00
|
|
|
auto cond_res = trans_expr(body_res.bcx, cond);
|
|
|
|
|
|
|
|
cond_res.bcx.build.CondBr(cond_res.val,
|
|
|
|
body_cx.llbb,
|
|
|
|
next_cx.llbb);
|
|
|
|
cx.build.Br(body_cx.llbb);
|
2010-11-03 11:05:15 -07:00
|
|
|
ret res(next_cx, body_res.val);
|
|
|
|
}
|
|
|
|
|
2010-10-21 18:13:57 -07:00
|
|
|
// The additional bool returned indicates whether it's a local
|
|
|
|
// (that is represented as an alloca, hence needs a 'load' to be
|
|
|
|
// used as an rval).
|
|
|
|
|
2010-10-22 19:35:48 -07:00
|
|
|
fn trans_lval(@block_ctxt cx, &ast.expr e)
|
|
|
|
-> tup(result, bool, ast.def_id) {
|
2010-10-19 16:33:11 -07:00
|
|
|
alt (e.node) {
|
|
|
|
case (ast.expr_name(?n, ?dopt, _)) {
|
|
|
|
alt (dopt) {
|
|
|
|
case (some[ast.def](?def)) {
|
|
|
|
alt (def) {
|
2010-10-21 18:13:57 -07:00
|
|
|
case (ast.def_arg(?did)) {
|
2010-10-22 19:35:48 -07:00
|
|
|
ret tup(res(cx, cx.fcx.llargs.get(did)),
|
|
|
|
false, did);
|
2010-10-21 18:13:57 -07:00
|
|
|
}
|
2010-10-19 16:33:11 -07:00
|
|
|
case (ast.def_local(?did)) {
|
2010-10-22 19:35:48 -07:00
|
|
|
ret tup(res(cx, cx.fcx.lllocals.get(did)),
|
|
|
|
true, did);
|
2010-10-19 16:33:11 -07:00
|
|
|
}
|
2010-10-21 17:24:26 -07:00
|
|
|
case (ast.def_fn(?did)) {
|
2010-11-21 12:06:09 -08:00
|
|
|
ret tup(res(cx, cx.fcx.ccx.fn_ids.get(did)),
|
2010-10-22 19:35:48 -07:00
|
|
|
false, did);
|
2010-10-21 17:24:26 -07:00
|
|
|
}
|
2010-10-19 16:33:11 -07:00
|
|
|
case (_) {
|
2010-11-21 12:06:09 -08:00
|
|
|
cx.fcx.ccx.sess.unimpl("def variant in trans");
|
2010-10-19 16:33:11 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case (none[ast.def]) {
|
2010-11-21 12:06:09 -08:00
|
|
|
cx.fcx.ccx.sess.err("unresolved expr_name in trans");
|
2010-10-19 16:33:11 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-11-21 12:06:09 -08:00
|
|
|
cx.fcx.ccx.sess.unimpl("expr variant in trans_lval");
|
2010-10-19 16:33:11 -07:00
|
|
|
fail;
|
|
|
|
}
|
|
|
|
|
2010-11-02 15:24:46 -07:00
|
|
|
impure fn trans_exprs(@block_ctxt cx, &vec[@ast.expr] es)
|
2010-10-21 17:24:26 -07:00
|
|
|
-> tup(@block_ctxt, vec[ValueRef]) {
|
|
|
|
let vec[ValueRef] vs = vec();
|
|
|
|
let @block_ctxt bcx = cx;
|
|
|
|
|
|
|
|
for (@ast.expr e in es) {
|
|
|
|
auto res = trans_expr(bcx, *e);
|
|
|
|
vs += res.val;
|
|
|
|
bcx = res.bcx;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret tup(bcx, vs);
|
|
|
|
}
|
|
|
|
|
2010-11-02 15:24:46 -07:00
|
|
|
impure fn trans_expr(@block_ctxt cx, &ast.expr e) -> result {
|
2010-10-05 18:21:44 -07:00
|
|
|
alt (e.node) {
|
2010-10-19 13:28:43 -07:00
|
|
|
case (ast.expr_lit(?lit, _)) {
|
2010-09-28 14:01:21 -07:00
|
|
|
ret trans_lit(cx, *lit);
|
|
|
|
}
|
|
|
|
|
2010-11-05 18:31:02 -07:00
|
|
|
case (ast.expr_unary(?op, ?x, ?ann)) {
|
|
|
|
ret trans_unary(cx, op, *x, ann);
|
2010-09-28 14:01:21 -07:00
|
|
|
}
|
|
|
|
|
2010-10-19 13:28:43 -07:00
|
|
|
case (ast.expr_binary(?op, ?x, ?y, _)) {
|
2010-09-28 14:01:21 -07:00
|
|
|
ret trans_binary(cx, op, *x, *y);
|
2010-09-28 12:23:40 -07:00
|
|
|
}
|
2010-10-04 15:55:12 -07:00
|
|
|
|
2010-10-19 13:28:43 -07:00
|
|
|
case (ast.expr_if(?cond, ?thn, ?els, _)) {
|
2010-10-04 15:55:12 -07:00
|
|
|
ret trans_if(cx, *cond, thn, els);
|
|
|
|
}
|
|
|
|
|
2010-11-03 11:05:15 -07:00
|
|
|
case (ast.expr_while(?cond, ?body, _)) {
|
|
|
|
ret trans_while(cx, *cond, body);
|
|
|
|
}
|
|
|
|
|
2010-11-04 07:55:33 -07:00
|
|
|
case (ast.expr_do_while(?body, ?cond, _)) {
|
|
|
|
ret trans_do_while(cx, body, *cond);
|
|
|
|
}
|
|
|
|
|
2010-10-19 13:28:43 -07:00
|
|
|
case (ast.expr_block(?blk, _)) {
|
2010-11-10 17:46:49 -08:00
|
|
|
auto sub_cx = new_sub_block_ctxt(cx, "block-expr body");
|
|
|
|
auto next_cx = new_sub_block_ctxt(cx, "next");
|
2010-10-04 15:55:12 -07:00
|
|
|
auto sub = trans_block(sub_cx, blk);
|
|
|
|
|
|
|
|
cx.build.Br(sub_cx.llbb);
|
|
|
|
sub.bcx.build.Br(next_cx.llbb);
|
|
|
|
|
|
|
|
ret res(next_cx, sub.val);
|
|
|
|
}
|
2010-10-19 14:54:10 -07:00
|
|
|
|
2010-10-19 16:33:11 -07:00
|
|
|
case (ast.expr_name(_,_,_)) {
|
|
|
|
auto sub = trans_lval(cx, e);
|
2010-10-21 18:13:57 -07:00
|
|
|
if (sub._1) {
|
|
|
|
ret res(sub._0.bcx, cx.build.Load(sub._0.val));
|
|
|
|
} else {
|
|
|
|
ret sub._0;
|
|
|
|
}
|
2010-10-19 16:33:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.expr_assign(?dst, ?src, _)) {
|
|
|
|
auto lhs_res = trans_lval(cx, *dst);
|
2010-10-21 18:13:57 -07:00
|
|
|
check (lhs_res._1);
|
|
|
|
auto rhs_res = trans_expr(lhs_res._0.bcx, *src);
|
2010-11-09 17:49:20 -08:00
|
|
|
// FIXME: call trans_copy_ty once we have a ty here.
|
2010-10-19 16:33:11 -07:00
|
|
|
ret res(rhs_res.bcx,
|
2010-11-05 18:28:27 -07:00
|
|
|
rhs_res.bcx.build.Store(rhs_res.val, lhs_res._0.val));
|
2010-10-19 14:54:10 -07:00
|
|
|
}
|
2010-10-19 16:33:11 -07:00
|
|
|
|
2010-10-21 17:24:26 -07:00
|
|
|
case (ast.expr_call(?f, ?args, _)) {
|
|
|
|
auto f_res = trans_lval(cx, *f);
|
2010-10-21 18:13:57 -07:00
|
|
|
check (! f_res._1);
|
2010-11-03 16:43:12 -07:00
|
|
|
|
2010-10-21 18:13:57 -07:00
|
|
|
auto args_res = trans_exprs(f_res._0.bcx, args);
|
2010-11-14 13:04:01 -08:00
|
|
|
auto llargs = vec(cx.fcx.lltaskptr);
|
2010-10-21 17:24:26 -07:00
|
|
|
llargs += args_res._1;
|
2010-11-14 13:41:10 -08:00
|
|
|
ret res(args_res._0,
|
|
|
|
args_res._0.build.FastCall(f_res._0.val, llargs));
|
2010-10-21 17:24:26 -07:00
|
|
|
}
|
|
|
|
|
2010-11-22 16:27:00 -08:00
|
|
|
case (ast.expr_cast(?e, _, ?ann)) {
|
|
|
|
auto e_res = trans_expr(cx, *e);
|
|
|
|
auto llsrctype = val_ty(e_res.val);
|
|
|
|
auto t = node_ann_type(cx.fcx.ccx, ann);
|
|
|
|
auto lldsttype = type_of(cx.fcx.ccx, t);
|
|
|
|
if (!typeck.type_is_fp(t)) {
|
|
|
|
if (llvm.LLVMGetIntTypeWidth(lldsttype) >
|
|
|
|
llvm.LLVMGetIntTypeWidth(llsrctype)) {
|
|
|
|
if (typeck.type_is_signed(t)) {
|
|
|
|
// Widening signed cast.
|
|
|
|
e_res.val =
|
|
|
|
e_res.bcx.build.SExtOrBitCast(e_res.val,
|
|
|
|
lldsttype);
|
|
|
|
} else {
|
|
|
|
// Widening unsigned cast.
|
|
|
|
e_res.val =
|
|
|
|
e_res.bcx.build.ZExtOrBitCast(e_res.val,
|
|
|
|
lldsttype);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Narrowing cast.
|
|
|
|
e_res.val =
|
|
|
|
e_res.bcx.build.TruncOrBitCast(e_res.val,
|
|
|
|
lldsttype);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cx.fcx.ccx.sess.unimpl("fp cast");
|
|
|
|
}
|
|
|
|
ret e_res;
|
|
|
|
}
|
2010-09-28 12:23:40 -07:00
|
|
|
}
|
2010-11-21 12:06:09 -08:00
|
|
|
cx.fcx.ccx.sess.unimpl("expr variant in trans_expr");
|
2010-09-28 12:23:40 -07:00
|
|
|
fail;
|
|
|
|
}
|
|
|
|
|
2010-11-02 15:24:46 -07:00
|
|
|
impure fn trans_log(@block_ctxt cx, &ast.expr e) -> result {
|
2010-10-05 18:21:44 -07:00
|
|
|
alt (e.node) {
|
2010-10-19 13:28:43 -07:00
|
|
|
case (ast.expr_lit(?lit, _)) {
|
2010-10-05 18:21:44 -07:00
|
|
|
alt (lit.node) {
|
2010-09-28 12:23:40 -07:00
|
|
|
case (ast.lit_str(_)) {
|
2010-10-04 15:55:12 -07:00
|
|
|
auto sub = trans_expr(cx, e);
|
|
|
|
auto v = sub.bcx.build.PtrToInt(sub.val, T_int());
|
|
|
|
ret trans_upcall(sub.bcx,
|
|
|
|
"upcall_log_str",
|
|
|
|
vec(v));
|
2010-09-23 18:38:37 -07:00
|
|
|
}
|
2010-10-04 15:55:12 -07:00
|
|
|
|
2010-09-23 18:38:37 -07:00
|
|
|
case (_) {
|
2010-10-04 15:55:12 -07:00
|
|
|
auto sub = trans_expr(cx, e);
|
|
|
|
ret trans_upcall(sub.bcx,
|
|
|
|
"upcall_log_int",
|
|
|
|
vec(sub.val));
|
2010-09-23 18:38:37 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-10-04 15:55:12 -07:00
|
|
|
|
2010-09-23 18:38:37 -07:00
|
|
|
case (_) {
|
2010-10-04 15:55:12 -07:00
|
|
|
auto sub = trans_expr(cx, e);
|
|
|
|
ret trans_upcall(sub.bcx, "upcall_log_int", vec(sub.val));
|
2010-09-23 18:38:37 -07:00
|
|
|
}
|
|
|
|
}
|
2010-09-22 17:05:38 -07:00
|
|
|
}
|
|
|
|
|
2010-11-02 15:24:46 -07:00
|
|
|
impure fn trans_check_expr(@block_ctxt cx, &ast.expr e) -> result {
|
2010-10-22 15:37:42 -07:00
|
|
|
auto cond_res = trans_expr(cx, e);
|
|
|
|
|
|
|
|
// FIXME: need pretty-printer.
|
2010-11-21 12:06:09 -08:00
|
|
|
auto V_expr_str = p2i(C_str(cx.fcx.ccx, "<expr>"));
|
|
|
|
auto V_filename = p2i(C_str(cx.fcx.ccx, e.span.filename));
|
2010-10-22 15:37:42 -07:00
|
|
|
auto V_line = e.span.lo.line as int;
|
|
|
|
auto args = vec(V_expr_str, V_filename, C_int(V_line));
|
|
|
|
|
2010-11-10 17:46:49 -08:00
|
|
|
auto fail_cx = new_sub_block_ctxt(cx, "fail");
|
2010-10-22 15:37:42 -07:00
|
|
|
auto fail_res = trans_upcall(fail_cx, "upcall_fail", args);
|
|
|
|
|
2010-11-10 17:46:49 -08:00
|
|
|
auto next_cx = new_sub_block_ctxt(cx, "next");
|
2010-10-22 15:37:42 -07:00
|
|
|
fail_res.bcx.build.Br(next_cx.llbb);
|
|
|
|
cond_res.bcx.build.CondBr(cond_res.val,
|
|
|
|
next_cx.llbb,
|
|
|
|
fail_cx.llbb);
|
|
|
|
ret res(next_cx, C_nil());
|
|
|
|
}
|
|
|
|
|
2010-11-03 17:10:37 -07:00
|
|
|
impure fn trans_ret(@block_ctxt cx, &option.t[@ast.expr] e) -> result {
|
2010-10-22 19:23:10 -07:00
|
|
|
auto r = res(cx, C_nil());
|
|
|
|
alt (e) {
|
|
|
|
case (some[@ast.expr](?x)) {
|
|
|
|
r = trans_expr(cx, *x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-10 17:46:49 -08:00
|
|
|
// Run all cleanups and back out.
|
|
|
|
let bool more_cleanups = true;
|
2010-11-14 10:48:44 -08:00
|
|
|
auto cleanup_cx = cx;
|
2010-11-10 17:46:49 -08:00
|
|
|
while (more_cleanups) {
|
2010-11-14 10:48:44 -08:00
|
|
|
r.bcx = trans_block_cleanups(r.bcx, cleanup_cx);
|
|
|
|
alt (cleanup_cx.parent) {
|
2010-11-10 17:46:49 -08:00
|
|
|
case (parent_some(?b)) {
|
2010-11-14 10:48:44 -08:00
|
|
|
cleanup_cx = b;
|
2010-11-10 17:46:49 -08:00
|
|
|
}
|
|
|
|
case (parent_none) {
|
|
|
|
more_cleanups = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-14 13:04:01 -08:00
|
|
|
alt (e) {
|
|
|
|
case (some[@ast.expr](_)) {
|
|
|
|
r.val = r.bcx.build.Ret(r.val);
|
|
|
|
ret r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: until LLVM has a unit type, we are moving around
|
|
|
|
// C_nil values rather than their void type.
|
|
|
|
r.val = r.bcx.build.Ret(C_nil());
|
2010-10-22 19:23:10 -07:00
|
|
|
ret r;
|
|
|
|
}
|
|
|
|
|
2010-11-02 15:24:46 -07:00
|
|
|
impure fn trans_stmt(@block_ctxt cx, &ast.stmt s) -> result {
|
2010-10-04 15:55:12 -07:00
|
|
|
auto sub = res(cx, C_nil());
|
2010-10-05 18:21:44 -07:00
|
|
|
alt (s.node) {
|
2010-09-23 13:15:51 -07:00
|
|
|
case (ast.stmt_log(?a)) {
|
2010-10-04 15:55:12 -07:00
|
|
|
sub.bcx = trans_log(cx, *a).bcx;
|
|
|
|
}
|
|
|
|
|
2010-10-22 15:37:42 -07:00
|
|
|
case (ast.stmt_check_expr(?a)) {
|
|
|
|
sub.bcx = trans_check_expr(cx, *a).bcx;
|
|
|
|
}
|
|
|
|
|
2010-10-22 19:23:10 -07:00
|
|
|
case (ast.stmt_ret(?e)) {
|
|
|
|
sub.bcx = trans_ret(cx, e).bcx;
|
|
|
|
}
|
|
|
|
|
2010-10-04 15:55:12 -07:00
|
|
|
case (ast.stmt_expr(?e)) {
|
|
|
|
sub.bcx = trans_expr(cx, *e).bcx;
|
2010-09-23 13:15:51 -07:00
|
|
|
}
|
2010-10-04 15:55:12 -07:00
|
|
|
|
2010-10-19 14:54:10 -07:00
|
|
|
case (ast.stmt_decl(?d)) {
|
|
|
|
alt (d.node) {
|
|
|
|
case (ast.decl_local(?local)) {
|
|
|
|
alt (local.init) {
|
|
|
|
case (some[@ast.expr](?e)) {
|
|
|
|
auto llptr = cx.fcx.lllocals.get(local.id);
|
|
|
|
sub = trans_expr(cx, *e);
|
|
|
|
sub.val = sub.bcx.build.Store(sub.val, llptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-09-23 13:15:51 -07:00
|
|
|
case (_) {
|
2010-11-21 12:06:09 -08:00
|
|
|
cx.fcx.ccx.sess.unimpl("stmt variant");
|
2010-09-23 13:15:51 -07:00
|
|
|
}
|
|
|
|
}
|
2010-10-04 15:55:12 -07:00
|
|
|
ret sub;
|
2010-10-01 18:25:42 -07:00
|
|
|
}
|
|
|
|
|
2010-11-10 17:46:49 -08:00
|
|
|
fn new_builder(BasicBlockRef llbb, str name) -> builder {
|
2010-09-27 13:43:53 -07:00
|
|
|
let BuilderRef llbuild = llvm.LLVMCreateBuilder();
|
|
|
|
llvm.LLVMPositionBuilderAtEnd(llbuild, llbb);
|
|
|
|
ret builder(llbuild);
|
|
|
|
}
|
|
|
|
|
2010-10-04 15:55:12 -07:00
|
|
|
// You probably don't want to use this one. See the
|
|
|
|
// next three functions instead.
|
2010-11-10 17:46:49 -08:00
|
|
|
fn new_block_ctxt(@fn_ctxt cx, block_parent parent,
|
|
|
|
vec[cleanup] cleanups,
|
|
|
|
str name) -> @block_ctxt {
|
2010-09-22 17:05:38 -07:00
|
|
|
let BasicBlockRef llbb =
|
2010-11-10 17:46:49 -08:00
|
|
|
llvm.LLVMAppendBasicBlock(cx.llfn,
|
2010-11-21 12:06:09 -08:00
|
|
|
_str.buf(cx.ccx.names.next(name)));
|
2010-11-10 17:46:49 -08:00
|
|
|
|
2010-09-27 15:38:34 -07:00
|
|
|
ret @rec(llbb=llbb,
|
2010-11-10 17:46:49 -08:00
|
|
|
build=new_builder(llbb, name),
|
|
|
|
parent=parent,
|
2010-09-29 17:22:07 -07:00
|
|
|
mutable cleanups=cleanups,
|
2010-09-27 15:38:34 -07:00
|
|
|
fcx=cx);
|
|
|
|
}
|
|
|
|
|
2010-10-04 15:55:12 -07:00
|
|
|
// Use this when you're at the top block of a function or the like.
|
|
|
|
fn new_top_block_ctxt(@fn_ctxt fcx) -> @block_ctxt {
|
|
|
|
let vec[cleanup] cleanups = vec();
|
2010-11-10 17:46:49 -08:00
|
|
|
ret new_block_ctxt(fcx, parent_none, cleanups, "function top level");
|
2010-10-04 15:55:12 -07:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-11-10 17:46:49 -08:00
|
|
|
// Use this when you're making a block-within-a-block.
|
|
|
|
fn new_sub_block_ctxt(@block_ctxt bcx, str n) -> @block_ctxt {
|
2010-10-04 15:55:12 -07:00
|
|
|
let vec[cleanup] cleanups = vec();
|
2010-11-10 17:46:49 -08:00
|
|
|
ret new_block_ctxt(bcx.fcx, parent_some(bcx), cleanups, n);
|
2010-10-04 15:55:12 -07:00
|
|
|
}
|
2010-09-29 17:22:07 -07:00
|
|
|
|
2010-11-10 17:46:49 -08:00
|
|
|
|
2010-11-14 10:48:44 -08:00
|
|
|
fn trans_block_cleanups(@block_ctxt cx,
|
|
|
|
@block_ctxt cleanup_cx) -> @block_ctxt {
|
2010-10-04 15:55:12 -07:00
|
|
|
auto bcx = cx;
|
2010-11-14 10:48:44 -08:00
|
|
|
for (cleanup c in cleanup_cx.cleanups) {
|
2010-09-29 17:22:07 -07:00
|
|
|
alt (c) {
|
2010-09-30 17:39:37 -07:00
|
|
|
case (clean(?cfn)) {
|
2010-10-04 15:55:12 -07:00
|
|
|
bcx = cfn(bcx).bcx;
|
2010-09-29 17:22:07 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-10-04 15:55:12 -07:00
|
|
|
ret bcx;
|
|
|
|
}
|
|
|
|
|
2010-10-19 14:54:10 -07:00
|
|
|
iter block_locals(&ast.block b) -> @ast.local {
|
|
|
|
// FIXME: putting from inside an iter block doesn't work, so we can't
|
|
|
|
// use the index here.
|
|
|
|
for (@ast.stmt s in b.node.stmts) {
|
|
|
|
alt (s.node) {
|
|
|
|
case (ast.stmt_decl(?d)) {
|
|
|
|
alt (d.node) {
|
|
|
|
case (ast.decl_local(?local)) {
|
|
|
|
put local;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-02 15:24:46 -07:00
|
|
|
impure fn trans_block(@block_ctxt cx, &ast.block b) -> result {
|
2010-10-04 15:55:12 -07:00
|
|
|
auto bcx = cx;
|
|
|
|
|
2010-10-19 14:54:10 -07:00
|
|
|
for each (@ast.local local in block_locals(b)) {
|
2010-11-21 12:06:09 -08:00
|
|
|
auto ty = node_type(cx.fcx.ccx, local.ann);
|
2010-10-19 14:54:10 -07:00
|
|
|
auto val = bcx.build.Alloca(ty);
|
|
|
|
cx.fcx.lllocals.insert(local.id, val);
|
|
|
|
}
|
2010-11-10 17:46:49 -08:00
|
|
|
auto r = res(bcx, C_nil());
|
2010-10-19 14:54:10 -07:00
|
|
|
|
2010-10-18 18:19:16 -07:00
|
|
|
for (@ast.stmt s in b.node.stmts) {
|
2010-11-10 17:46:49 -08:00
|
|
|
r = trans_stmt(bcx, *s);
|
|
|
|
bcx = r.bcx;
|
2010-11-12 10:15:40 -08:00
|
|
|
// If we hit a terminator, control won't go any further so
|
|
|
|
// we're in dead-code land. Stop here.
|
|
|
|
if (is_terminated(bcx)) {
|
|
|
|
ret r;
|
|
|
|
}
|
2010-10-04 15:55:12 -07:00
|
|
|
}
|
2010-09-29 17:22:07 -07:00
|
|
|
|
2010-11-14 10:48:44 -08:00
|
|
|
bcx = trans_block_cleanups(bcx, bcx);
|
2010-11-10 17:46:49 -08:00
|
|
|
ret res(bcx, r.val);
|
2010-09-23 13:15:51 -07:00
|
|
|
}
|
|
|
|
|
2010-11-21 12:06:09 -08:00
|
|
|
fn new_fn_ctxt(@crate_ctxt cx,
|
2010-09-27 15:38:34 -07:00
|
|
|
str name,
|
2010-10-21 18:13:57 -07:00
|
|
|
&ast._fn f,
|
|
|
|
ast.def_id fid) -> @fn_ctxt {
|
|
|
|
|
2010-10-22 19:31:33 -07:00
|
|
|
let ValueRef llfn = cx.fn_ids.get(fid);
|
2010-10-21 17:24:26 -07:00
|
|
|
cx.fn_names.insert(cx.path, llfn);
|
2010-10-21 18:13:57 -07:00
|
|
|
|
2010-11-14 13:04:01 -08:00
|
|
|
let ValueRef lltaskptr = llvm.LLVMGetParam(llfn, 0u);
|
|
|
|
let uint arg_n = 1u;
|
2010-10-21 18:13:57 -07:00
|
|
|
|
2010-10-19 14:54:10 -07:00
|
|
|
let hashmap[ast.def_id, ValueRef] lllocals = new_def_hash[ValueRef]();
|
2010-10-21 18:13:57 -07:00
|
|
|
let hashmap[ast.def_id, ValueRef] llargs = new_def_hash[ValueRef]();
|
|
|
|
|
|
|
|
for (ast.arg arg in f.inputs) {
|
2010-11-14 13:04:01 -08:00
|
|
|
auto llarg = llvm.LLVMGetParam(llfn, arg_n);
|
|
|
|
check (llarg as int != 0);
|
|
|
|
llargs.insert(arg.id, llarg);
|
2010-10-21 18:13:57 -07:00
|
|
|
arg_n += 1u;
|
|
|
|
}
|
|
|
|
|
2010-09-27 15:38:34 -07:00
|
|
|
ret @rec(llfn=llfn,
|
|
|
|
lltaskptr=lltaskptr,
|
2010-10-21 18:13:57 -07:00
|
|
|
llargs=llargs,
|
2010-10-19 14:54:10 -07:00
|
|
|
lllocals=lllocals,
|
2010-11-21 12:06:09 -08:00
|
|
|
ccx=cx);
|
2010-09-27 15:38:34 -07:00
|
|
|
}
|
|
|
|
|
2010-11-10 17:46:49 -08:00
|
|
|
fn is_terminated(@block_ctxt cx) -> bool {
|
|
|
|
auto inst = llvm.LLVMGetLastInstruction(cx.llbb);
|
|
|
|
ret llvm.LLVMIsATerminatorInst(inst) as int != 0;
|
|
|
|
}
|
|
|
|
|
2010-11-21 12:06:09 -08:00
|
|
|
impure fn trans_fn(@crate_ctxt cx, &ast._fn f, ast.def_id fid) {
|
2010-09-27 15:38:34 -07:00
|
|
|
|
2010-10-21 18:13:57 -07:00
|
|
|
auto fcx = new_fn_ctxt(cx, cx.path, f, fid);
|
2010-11-10 17:46:49 -08:00
|
|
|
auto bcx = new_top_block_ctxt(fcx);
|
|
|
|
auto res = trans_block(bcx, f.body);
|
|
|
|
if (!is_terminated(res.bcx)) {
|
2010-11-14 13:04:01 -08:00
|
|
|
// FIXME: until LLVM has a unit type, we are moving around
|
|
|
|
// C_nil values rather than their void type.
|
|
|
|
res.bcx.build.Ret(C_nil());
|
2010-11-10 17:46:49 -08:00
|
|
|
}
|
2010-09-22 17:05:38 -07:00
|
|
|
}
|
|
|
|
|
2010-11-21 12:06:09 -08:00
|
|
|
impure fn trans_item(@crate_ctxt cx, &ast.item item) {
|
2010-10-05 18:21:44 -07:00
|
|
|
alt (item.node) {
|
2010-11-24 16:52:49 -08:00
|
|
|
case (ast.item_fn(?name, ?f, _, ?fid, _)) {
|
2010-10-18 18:19:16 -07:00
|
|
|
auto sub_cx = @rec(path=cx.path + "." + name with *cx);
|
2010-10-21 17:24:26 -07:00
|
|
|
trans_fn(sub_cx, f, fid);
|
2010-09-22 17:05:38 -07:00
|
|
|
}
|
2010-10-18 18:19:16 -07:00
|
|
|
case (ast.item_mod(?name, ?m, _)) {
|
|
|
|
auto sub_cx = @rec(path=cx.path + "." + name with *cx);
|
2010-10-06 15:41:14 -07:00
|
|
|
trans_mod(sub_cx, m);
|
2010-09-22 17:05:38 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-21 12:06:09 -08:00
|
|
|
impure fn trans_mod(@crate_ctxt cx, &ast._mod m) {
|
2010-10-18 18:19:16 -07:00
|
|
|
for (@ast.item item in m.items) {
|
|
|
|
trans_item(cx, *item);
|
2010-09-22 17:05:38 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-27 13:43:53 -07:00
|
|
|
|
2010-11-21 12:06:09 -08:00
|
|
|
fn collect_item(&@crate_ctxt cx, @ast.item i) -> @crate_ctxt {
|
2010-10-22 19:31:33 -07:00
|
|
|
alt (i.node) {
|
2010-11-24 16:52:49 -08:00
|
|
|
case (ast.item_fn(?name, ?f, _, ?fid, ?ann)) {
|
|
|
|
// TODO: type-params
|
2010-11-03 16:43:12 -07:00
|
|
|
cx.items.insert(fid, i);
|
|
|
|
auto llty = node_type(cx, ann);
|
2010-10-22 19:31:33 -07:00
|
|
|
let str s = cx.names.next("_rust_fn") + "." + name;
|
2010-11-03 16:43:12 -07:00
|
|
|
let ValueRef llfn = decl_fastcall_fn(cx.llmod, s, llty);
|
2010-10-22 19:31:33 -07:00
|
|
|
cx.fn_ids.insert(fid, llfn);
|
|
|
|
}
|
|
|
|
|
|
|
|
case (ast.item_mod(?name, ?m, ?mid)) {
|
|
|
|
cx.items.insert(mid, i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ret cx;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-21 12:06:09 -08:00
|
|
|
fn collect_items(@crate_ctxt cx, @ast.crate crate) {
|
2010-10-22 19:31:33 -07:00
|
|
|
|
2010-11-21 12:06:09 -08:00
|
|
|
let fold.ast_fold[@crate_ctxt] fld =
|
|
|
|
fold.new_identity_fold[@crate_ctxt]();
|
2010-10-22 19:31:33 -07:00
|
|
|
|
|
|
|
fld = @rec( update_env_for_item = bind collect_item(_,_)
|
|
|
|
with *fld );
|
|
|
|
|
2010-11-21 12:06:09 -08:00
|
|
|
fold.fold_crate[@crate_ctxt](cx, fld, crate);
|
2010-10-22 19:31:33 -07:00
|
|
|
}
|
|
|
|
|
2010-09-27 13:43:53 -07:00
|
|
|
fn p2i(ValueRef v) -> ValueRef {
|
|
|
|
ret llvm.LLVMConstPtrToInt(v, T_int());
|
|
|
|
}
|
|
|
|
|
2010-11-21 12:06:09 -08:00
|
|
|
fn trans_exit_task_glue(@crate_ctxt cx) {
|
2010-09-27 15:38:34 -07:00
|
|
|
let vec[TypeRef] T_args = vec();
|
|
|
|
let vec[ValueRef] V_args = vec();
|
|
|
|
|
|
|
|
auto llfn = cx.glues.exit_task_glue;
|
|
|
|
let ValueRef lltaskptr = llvm.LLVMGetParam(llfn, 0u);
|
|
|
|
auto fcx = @rec(llfn=llfn,
|
|
|
|
lltaskptr=lltaskptr,
|
2010-10-21 18:13:57 -07:00
|
|
|
llargs=new_def_hash[ValueRef](),
|
2010-10-19 14:54:10 -07:00
|
|
|
lllocals=new_def_hash[ValueRef](),
|
2010-11-21 12:06:09 -08:00
|
|
|
ccx=cx);
|
2010-09-27 15:38:34 -07:00
|
|
|
|
2010-10-04 15:55:12 -07:00
|
|
|
auto bcx = new_top_block_ctxt(fcx);
|
2010-09-27 15:38:34 -07:00
|
|
|
trans_upcall(bcx, "upcall_exit", V_args);
|
2010-11-10 17:46:49 -08:00
|
|
|
bcx.build.RetVoid();
|
2010-09-27 15:38:34 -07:00
|
|
|
}
|
|
|
|
|
2010-11-21 12:06:09 -08:00
|
|
|
fn crate_constant(@crate_ctxt cx) -> ValueRef {
|
2010-09-24 16:41:01 -07:00
|
|
|
|
|
|
|
let ValueRef crate_ptr =
|
2010-09-27 13:43:53 -07:00
|
|
|
llvm.LLVMAddGlobal(cx.llmod, T_crate(),
|
2010-09-24 16:41:01 -07:00
|
|
|
_str.buf("rust_crate"));
|
|
|
|
|
|
|
|
let ValueRef crate_addr = p2i(crate_ptr);
|
|
|
|
|
|
|
|
let ValueRef activate_glue_off =
|
|
|
|
llvm.LLVMConstSub(p2i(cx.glues.activate_glue), crate_addr);
|
|
|
|
|
|
|
|
let ValueRef yield_glue_off =
|
|
|
|
llvm.LLVMConstSub(p2i(cx.glues.yield_glue), crate_addr);
|
|
|
|
|
2010-09-27 15:38:34 -07:00
|
|
|
let ValueRef exit_task_glue_off =
|
|
|
|
llvm.LLVMConstSub(p2i(cx.glues.exit_task_glue), crate_addr);
|
2010-09-24 16:41:01 -07:00
|
|
|
|
|
|
|
let ValueRef crate_val =
|
|
|
|
C_struct(vec(C_null(T_int()), // ptrdiff_t image_base_off
|
2010-09-27 13:43:53 -07:00
|
|
|
p2i(crate_ptr), // uintptr_t self_addr
|
2010-09-24 16:41:01 -07:00
|
|
|
C_null(T_int()), // ptrdiff_t debug_abbrev_off
|
|
|
|
C_null(T_int()), // size_t debug_abbrev_sz
|
|
|
|
C_null(T_int()), // ptrdiff_t debug_info_off
|
|
|
|
C_null(T_int()), // size_t debug_info_sz
|
|
|
|
activate_glue_off, // size_t activate_glue_off
|
|
|
|
yield_glue_off, // size_t yield_glue_off
|
|
|
|
C_null(T_int()), // size_t unwind_glue_off
|
|
|
|
C_null(T_int()), // size_t gc_glue_off
|
|
|
|
exit_task_glue_off, // size_t main_exit_task_glue_off
|
|
|
|
C_null(T_int()), // int n_rust_syms
|
|
|
|
C_null(T_int()), // int n_c_syms
|
|
|
|
C_null(T_int()) // int n_libs
|
|
|
|
));
|
|
|
|
|
|
|
|
llvm.LLVMSetInitializer(crate_ptr, crate_val);
|
|
|
|
ret crate_ptr;
|
|
|
|
}
|
|
|
|
|
2010-11-21 12:06:09 -08:00
|
|
|
fn trans_main_fn(@crate_ctxt cx, ValueRef llcrate) {
|
2010-09-27 13:43:53 -07:00
|
|
|
auto T_main_args = vec(T_int(), T_int());
|
|
|
|
auto T_rust_start_args = vec(T_int(), T_int(), T_int(), T_int());
|
|
|
|
|
2010-11-05 18:28:51 -07:00
|
|
|
auto main_name;
|
|
|
|
if (_str.eq(std.os.target_os(), "win32")) {
|
|
|
|
main_name = "WinMain@16";
|
|
|
|
} else {
|
|
|
|
main_name = "main";
|
|
|
|
}
|
|
|
|
|
2010-09-27 13:43:53 -07:00
|
|
|
auto llmain =
|
2010-11-03 16:43:12 -07:00
|
|
|
decl_cdecl_fn(cx.llmod, main_name, T_fn(T_main_args, T_int()));
|
2010-09-27 13:43:53 -07:00
|
|
|
|
2010-11-03 16:43:12 -07:00
|
|
|
auto llrust_start = decl_cdecl_fn(cx.llmod, "rust_start",
|
|
|
|
T_fn(T_rust_start_args, T_int()));
|
2010-09-27 13:43:53 -07:00
|
|
|
|
|
|
|
auto llargc = llvm.LLVMGetParam(llmain, 0u);
|
|
|
|
auto llargv = llvm.LLVMGetParam(llmain, 1u);
|
2010-10-21 17:24:26 -07:00
|
|
|
auto llrust_main = cx.fn_names.get("_rust.main");
|
2010-09-27 13:43:53 -07:00
|
|
|
|
|
|
|
//
|
|
|
|
// Emit the moral equivalent of:
|
|
|
|
//
|
|
|
|
// main(int argc, char **argv) {
|
|
|
|
// rust_start(&_rust.main, &crate, argc, argv);
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
|
|
|
|
let BasicBlockRef llbb =
|
|
|
|
llvm.LLVMAppendBasicBlock(llmain, _str.buf(""));
|
2010-11-10 17:46:49 -08:00
|
|
|
auto b = new_builder(llbb, "");
|
2010-09-27 13:43:53 -07:00
|
|
|
|
|
|
|
auto start_args = vec(p2i(llrust_main), p2i(llcrate), llargc, llargv);
|
|
|
|
|
|
|
|
b.Ret(b.Call(llrust_start, start_args));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-11-14 11:21:49 -08:00
|
|
|
fn declare_intrinsics(ModuleRef llmod) {
|
|
|
|
let vec[TypeRef] T_trap_args = vec();
|
2010-11-03 16:43:12 -07:00
|
|
|
decl_cdecl_fn(llmod, "llvm.trap", T_fn(T_trap_args, T_void()));
|
2010-11-14 11:21:49 -08:00
|
|
|
}
|
|
|
|
|
2010-10-22 11:47:28 -07:00
|
|
|
fn trans_crate(session.session sess, @ast.crate crate, str output) {
|
2010-09-22 15:21:06 -07:00
|
|
|
auto llmod =
|
|
|
|
llvm.LLVMModuleCreateWithNameInContext(_str.buf("rust_out"),
|
|
|
|
llvm.LLVMGetGlobalContext());
|
|
|
|
|
2010-09-23 15:46:31 -07:00
|
|
|
llvm.LLVMSetModuleInlineAsm(llmod, _str.buf(x86.get_module_asm()));
|
|
|
|
|
2010-11-14 11:21:49 -08:00
|
|
|
declare_intrinsics(llmod);
|
|
|
|
|
2010-09-24 14:56:04 -07:00
|
|
|
auto glues = @rec(activate_glue = decl_glue(llmod,
|
|
|
|
abi.activate_glue_name()),
|
|
|
|
yield_glue = decl_glue(llmod, abi.yield_glue_name()),
|
2010-09-27 15:38:34 -07:00
|
|
|
/*
|
|
|
|
* Note: the signature passed to decl_cdecl_fn here
|
|
|
|
* looks unusual because it is. It corresponds neither
|
|
|
|
* to an upcall signature nor a normal rust-ABI
|
|
|
|
* signature. In fact it is a fake signature, that
|
|
|
|
* exists solely to acquire the task pointer as an
|
|
|
|
* argument to the upcall. It so happens that the
|
|
|
|
* runtime sets up the task pointer as the sole incoming
|
|
|
|
* argument to the frame that we return into when
|
|
|
|
* returning to the exit task glue. So this is the
|
|
|
|
* signature required to retrieve it.
|
|
|
|
*/
|
|
|
|
exit_task_glue =
|
|
|
|
decl_cdecl_fn(llmod, abi.exit_task_glue_name(),
|
2010-11-03 16:43:12 -07:00
|
|
|
T_fn(vec(T_taskptr()), T_void())),
|
2010-09-27 15:38:34 -07:00
|
|
|
|
2010-09-23 17:16:34 -07:00
|
|
|
upcall_glues =
|
|
|
|
_vec.init_fn[ValueRef](bind decl_upcall(llmod, _),
|
|
|
|
abi.n_upcall_glues as uint));
|
|
|
|
|
2010-09-24 14:56:04 -07:00
|
|
|
auto cx = @rec(sess = sess,
|
|
|
|
llmod = llmod,
|
|
|
|
upcalls = new_str_hash[ValueRef](),
|
2010-10-21 17:24:26 -07:00
|
|
|
fn_names = new_str_hash[ValueRef](),
|
|
|
|
fn_ids = new_def_hash[ValueRef](),
|
2010-10-22 19:31:33 -07:00
|
|
|
items = new_def_hash[@ast.item](),
|
2010-09-24 14:56:04 -07:00
|
|
|
glues = glues,
|
2010-09-28 12:23:40 -07:00
|
|
|
names = namegen(0),
|
2010-09-24 16:41:01 -07:00
|
|
|
path = "_rust");
|
2010-09-23 18:38:37 -07:00
|
|
|
|
2010-10-22 19:31:33 -07:00
|
|
|
collect_items(cx, crate);
|
2010-10-05 18:21:44 -07:00
|
|
|
trans_mod(cx, crate.node.module);
|
2010-09-27 15:38:34 -07:00
|
|
|
trans_exit_task_glue(cx);
|
2010-09-27 13:43:53 -07:00
|
|
|
trans_main_fn(cx, crate_constant(cx));
|
|
|
|
|
2010-10-22 11:47:28 -07:00
|
|
|
llvm.LLVMWriteBitcodeToFile(llmod, _str.buf(output));
|
2010-09-22 15:21:06 -07:00
|
|
|
llvm.LLVMDisposeModule(llmod);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// compile-command: "make -k -C ../.. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
|
|
|
// End:
|
|
|
|
//
|