trans.rs 163.7 KB
Newer Older
1
import std._str;
2
import std._uint;
3 4 5
import std._vec;
import std._str.rustrt.sbuf;
import std._vec.rustrt.vbuf;
6
import std.map;
7
import std.map.hashmap;
8 9 10
import std.option;
import std.option.some;
import std.option.none;
11

12
import front.ast;
13
import driver.session;
14
import middle.ty;
15
import back.x86;
16 17
import back.abi;

18
import middle.ty.pat_ty;
19
import middle.ty.plain_ty;
P
Patrick Walton 已提交
20

21
import util.common;
22
import util.common.append;
23
import util.common.istr;
24
import util.common.new_def_hash;
25
import util.common.new_str_hash;
26 27 28

import lib.llvm.llvm;
import lib.llvm.builder;
29
import lib.llvm.target_data;
30
import lib.llvm.type_handle;
31
import lib.llvm.type_names;
32
import lib.llvm.mk_pass_manager;
33
import lib.llvm.mk_target_data;
34
import lib.llvm.mk_type_handle;
35
import lib.llvm.mk_type_names;
36 37 38
import lib.llvm.llvm.ModuleRef;
import lib.llvm.llvm.ValueRef;
import lib.llvm.llvm.TypeRef;
39
import lib.llvm.llvm.TypeHandleRef;
40 41
import lib.llvm.llvm.BuilderRef;
import lib.llvm.llvm.BasicBlockRef;
42

43 44
import lib.llvm.False;
import lib.llvm.True;
45

46 47 48 49 50 51 52
state obj namegen(mutable int i) {
    fn next(str prefix) -> str {
        i += 1;
        ret prefix + istr(i);
    }
}

53 54
type glue_fns = rec(ValueRef activate_glue,
                    ValueRef yield_glue,
55
                    ValueRef exit_task_glue,
56
                    vec[ValueRef] upcall_glues,
57
                    ValueRef no_op_type_glue,
58 59
                    ValueRef memcpy_glue,
                    ValueRef bzero_glue);
60

61
tag arity { nullary; n_ary; }
62
type tag_info = rec(type_handle th,
63 64
                    mutable vec[tup(ast.def_id,arity)] variants,
                    mutable uint size);
65

66
state type crate_ctxt = rec(session.session sess,
67
                            ModuleRef llmod,
68
                            target_data td,
69
                            type_names tn,
70
                            ValueRef crate_ptr,
71
                            hashmap[str, ValueRef] upcalls,
72
                            hashmap[str, ValueRef] intrinsics,
73 74
                            hashmap[str, ValueRef] item_names,
                            hashmap[ast.def_id, ValueRef] item_ids,
75
                            hashmap[ast.def_id, @ast.item] items,
G
Graydon Hoare 已提交
76 77
                            hashmap[ast.def_id,
                                    @ast.native_item] native_items,
78
                            hashmap[ast.def_id, @tag_info] tags,
79
                            hashmap[ast.def_id, ValueRef] fn_pairs,
80
                            hashmap[ast.def_id, ValueRef] consts,
81
                            hashmap[ast.def_id,()] obj_methods,
82
                            hashmap[@ty.t, ValueRef] tydescs,
83
                            vec[ast.ty_param] obj_typarams,
84
                            vec[ast.obj_field] obj_fields,
85 86 87
                            @glue_fns glues,
                            namegen names,
                            str path);
88

89 90
state type fn_ctxt = rec(ValueRef llfn,
                         ValueRef lltaskptr,
91 92
                         ValueRef llenv,
                         ValueRef llretptr,
93
                         mutable option.t[ValueRef] llself,
94
                         mutable option.t[ValueRef] lliterbody,
95
                         hashmap[ast.def_id, ValueRef] llargs,
96
                         hashmap[ast.def_id, ValueRef] llobjfields,
97
                         hashmap[ast.def_id, ValueRef] lllocals,
98
                         hashmap[ast.def_id, ValueRef] lltydescs,
99
                         @crate_ctxt ccx);
100

101
tag cleanup {
102
    clean(fn(@block_ctxt cx) -> result);
103 104
}

105 106 107 108 109 110

tag block_kind {
    SCOPE_BLOCK;
    NON_SCOPE_BLOCK;
}

111 112
state type block_ctxt = rec(BasicBlockRef llbb,
                            builder build,
113
                            block_parent parent,
114
                            block_kind kind,
115 116 117
                            mutable vec[cleanup] cleanups,
                            @fn_ctxt fcx);

118 119 120 121 122 123 124 125
// 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);
}

126

127 128 129
state type result = rec(mutable @block_ctxt bcx,
                        mutable ValueRef val);

130 131 132 133
fn sep() -> str {
    ret "_";
}

134 135 136 137 138
fn res(@block_ctxt bcx, ValueRef val) -> result {
    ret rec(mutable bcx = bcx,
            mutable val = val);
}

139 140
fn ty_str(type_names tn, TypeRef t) -> str {
    ret lib.llvm.type_to_str(tn, t);
141 142 143 144 145 146
}

fn val_ty(ValueRef v) -> TypeRef {
    ret llvm.LLVMTypeOf(v);
}

147 148
fn val_str(type_names tn, ValueRef v) -> str {
    ret ty_str(tn, val_ty(v));
149
}
150 151 152 153


// LLVM type constructors.

154 155 156 157 158 159 160 161 162 163 164
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.
165 166 167
    ret llvm.LLVMVoidType();
}

168 169 170 171 172
fn T_nil() -> TypeRef {
    // NB: See above in T_void().
    ret llvm.LLVMInt1Type();
}

173 174 175 176
fn T_i1() -> TypeRef {
    ret llvm.LLVMInt1Type();
}

177 178 179 180 181 182 183 184 185
fn T_i8() -> TypeRef {
    ret llvm.LLVMInt8Type();
}

fn T_i16() -> TypeRef {
    ret llvm.LLVMInt16Type();
}

fn T_i32() -> TypeRef {
186 187 188
    ret llvm.LLVMInt32Type();
}

189 190 191 192
fn T_i64() -> TypeRef {
    ret llvm.LLVMInt64Type();
}

193 194 195 196 197 198 199 200
fn T_f32() -> TypeRef {
    ret llvm.LLVMFloatType();
}

fn T_f64() -> TypeRef {
    ret llvm.LLVMDoubleType();
}

201 202 203 204
fn T_bool() -> TypeRef {
    ret T_i1();
}

205 206 207 208 209
fn T_int() -> TypeRef {
    // FIXME: switch on target type.
    ret T_i32();
}

210 211 212 213
fn T_char() -> TypeRef {
    ret T_i32();
}

214 215 216 217
fn T_fn(vec[TypeRef] inputs, TypeRef output) -> TypeRef {
    ret llvm.LLVMFunctionType(output,
                              _vec.buf[TypeRef](inputs),
                              _vec.len[TypeRef](inputs),
218 219 220
                              False);
}

221
fn T_fn_pair(type_names tn, TypeRef tfn) -> TypeRef {
222
    ret T_struct(vec(T_ptr(tfn),
223
                     T_opaque_closure_ptr(tn)));
224 225
}

226 227 228 229 230 231 232 233 234 235 236 237 238 239
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();
}

240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
fn T_task(type_names tn) -> TypeRef {
    auto s = "task";
    if (tn.name_has_type(s)) {
        ret tn.get_type(s);
    }

    auto t = T_struct(vec(T_int(),      // Refcount
                          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
                          ));
    tn.associate(s, t);
    ret t;
257 258
}

259 260 261 262 263 264
fn T_glue_fn(type_names tn) -> TypeRef {
    auto s = "glue_fn";
    if (tn.name_has_type(s)) {
        ret tn.get_type(s);
    }

265 266
    // Bit of a kludge: pick the fn typeref out of the tydesc..
    let vec[TypeRef] tydesc_elts = _vec.init_elt[TypeRef](T_nil(), 10u);
267
    llvm.LLVMGetStructElementTypes(T_tydesc(tn),
268
                                   _vec.buf[TypeRef](tydesc_elts));
269 270 271 272 273
    auto t =
        llvm.LLVMGetElementType
        (tydesc_elts.(abi.tydesc_field_drop_glue_off));
    tn.associate(s, t);
    ret t;
274 275
}

276 277 278 279 280 281
fn T_tydesc(type_names tn) -> TypeRef {

    auto s = "tydesc";
    if (tn.name_has_type(s)) {
        ret tn.get_type(s);
    }
282 283 284

    auto th = mk_type_handle();
    auto abs_tydesc = llvm.LLVMResolveTypeHandle(th.llth);
285
    auto tydescpp = T_ptr(T_ptr(abs_tydesc));
286
    auto pvoid = T_ptr(T_i8());
287
    auto glue_fn_ty = T_ptr(T_fn(vec(T_ptr(T_nil()),
288
                                     T_taskptr(tn),
289
                                     T_ptr(T_nil()),
290
                                     tydescpp,
291
                                     pvoid), T_void()));
292
    auto tydesc = T_struct(vec(tydescpp,          // first_param
293 294 295 296 297 298 299 300 301 302 303
                               T_int(),           // size
                               T_int(),           // align
                               glue_fn_ty,        // take_glue_off
                               glue_fn_ty,        // drop_glue_off
                               glue_fn_ty,        // free_glue_off
                               glue_fn_ty,        // sever_glue_off
                               glue_fn_ty,        // mark_glue_off
                               glue_fn_ty,        // obj_drop_glue_off
                               glue_fn_ty));      // is_stateful

    llvm.LLVMRefineType(abs_tydesc, tydesc);
304 305 306
    auto t = llvm.LLVMResolveTypeHandle(th.llth);
    tn.associate(s, t);
    ret t;
307 308
}

309 310 311 312
fn T_array(TypeRef t, uint n) -> TypeRef {
    ret llvm.LLVMArrayType(t, n);
}

313 314 315 316 317
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
318 319 320
                     ));
}

321 322
fn T_str() -> TypeRef {
    ret T_vec(T_i8());
323 324
}

325 326 327 328
fn T_box(TypeRef t) -> TypeRef {
    ret T_struct(vec(T_int(), t));
}

329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
fn T_crate(type_names tn) -> TypeRef {
    auto s = "crate";
    if (tn.name_has_type(s)) {
        ret tn.get_type(s);
    }

    auto t = 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
348 349
                          T_int(),      // int n_libs
                          T_int()       // uintptr_t abi_tag
350 351 352
                          ));
    tn.associate(s, t);
    ret t;
353 354
}

355 356 357 358
fn T_double() -> TypeRef {
    ret llvm.LLVMDoubleType();
}

359 360
fn T_taskptr(type_names tn) -> TypeRef {
    ret T_ptr(T_task(tn));
361 362
}

363 364 365 366 367 368 369 370 371
fn T_typaram_ptr(type_names tn) -> TypeRef {
    auto s = "typaram";
    if (tn.name_has_type(s)) {
        ret tn.get_type(s);
    }

    auto t = T_ptr(T_i8());
    tn.associate(s, t);
    ret t;
372 373
}

374 375
fn T_closure_ptr(type_names tn,
                 TypeRef lltarget_ty,
376 377
                 TypeRef llbindings_ty,
                 uint n_ty_params) -> TypeRef {
378
    ret T_ptr(T_box(T_struct(vec(T_ptr(T_tydesc(tn)),
379
                                 lltarget_ty,
380 381
                                 llbindings_ty,
                                 T_captured_tydescs(tn, n_ty_params))
382 383 384
                             )));
}

385 386 387 388 389 390 391
fn T_opaque_closure_ptr(type_names tn) -> TypeRef {
    auto s = "*closure";
    if (tn.name_has_type(s)) {
        ret tn.get_type(s);
    }
    auto t = T_closure_ptr(tn, T_struct(vec(T_ptr(T_nil()),
                                            T_ptr(T_nil()))),
392 393
                           T_nil(),
                           0u);
394 395
    tn.associate(s, t);
    ret t;
396 397
}

398 399
fn T_captured_tydescs(type_names tn, uint n) -> TypeRef {
    ret T_struct(_vec.init_elt[TypeRef](T_ptr(T_tydesc(tn)), n));
400 401
}

402 403 404 405
fn T_obj(type_names tn, uint n_captured_tydescs,
         TypeRef llfields_ty) -> TypeRef {
    ret T_struct(vec(T_ptr(T_tydesc(tn)),
                     T_captured_tydescs(tn, n_captured_tydescs),
406 407 408
                     llfields_ty));
}

409 410 411
fn T_obj_ptr(type_names tn, uint n_captured_tydescs,
             TypeRef llfields_ty) -> TypeRef {
    ret T_ptr(T_box(T_obj(tn, n_captured_tydescs, llfields_ty)));
412 413
}

414 415
fn T_opaque_obj_ptr(type_names tn) -> TypeRef {
    ret T_obj_ptr(tn, 0u, T_nil());
416 417
}

418

419
fn type_of(@crate_ctxt cx, @ty.t t) -> TypeRef {
420 421
    let TypeRef llty = type_of_inner(cx, t);
    check (llty as int != 0);
422
    llvm.LLVMAddTypeName(cx.llmod, _str.buf(ty.ty_to_str(t)), llty);
423 424 425
    ret llty;
}

426 427 428 429 430 431
fn type_of_explicit_args(@crate_ctxt cx,
                     vec[ty.arg] inputs) -> vec[TypeRef] {
    let vec[TypeRef] atys = vec();
    for (ty.arg arg in inputs) {
        if (ty.type_has_dynamic_size(arg.ty)) {
            check (arg.mode == ast.alias);
432
            atys += T_typaram_ptr(cx.tn);
433 434 435 436 437 438 439 440 441 442 443 444 445
        } else {
            let TypeRef t = type_of(cx, arg.ty);
            alt (arg.mode) {
                case (ast.alias) {
                    t = T_ptr(t);
                }
                case (_) { /* fall through */  }
            }
            atys += t;
        }
    }
    ret atys;
}
446 447 448 449 450 451 452 453

// NB: must keep 4 fns in sync:
//
//  - type_of_fn_full
//  - create_llargs_for_fn_args.
//  - new_fn_ctxt
//  - trans_args

454
fn type_of_fn_full(@crate_ctxt cx,
455
                   ast.proto proto,
456 457 458
                   option.t[TypeRef] obj_self,
                   vec[ty.arg] inputs,
                   @ty.t output) -> TypeRef {
459
    let vec[TypeRef] atys = vec();
460

461
    // Arg 0: Output pointer.
462
    if (ty.type_has_dynamic_size(output)) {
463
        atys += T_typaram_ptr(cx.tn);
464 465
    } else {
        atys += T_ptr(type_of(cx, output));
466 467
    }

468
    // Arg 1: Task pointer.
469
    atys += T_taskptr(cx.tn);
470 471

    // Arg 2: Env (closure-bindings / self-obj)
472 473 474 475 476
    alt (obj_self) {
        case (some[TypeRef](?t)) {
            check (t as int != 0);
            atys += t;
        }
477
        case (_) {
478
            atys += T_opaque_closure_ptr(cx.tn);
479
        }
480 481
    }

482 483 484
    // Args >3: ty params, if not acquired via capture...
    if (obj_self == none[TypeRef]) {
        auto ty_param_count =
485 486 487
            ty.count_ty_params(plain_ty(ty.ty_fn(proto,
                                                 inputs,
                                                 output)));
488 489
        auto i = 0u;
        while (i < ty_param_count) {
490
            atys += T_ptr(T_tydesc(cx.tn));
491 492
            i += 1u;
        }
493 494
    }

495
    if (proto == ast.proto_iter) {
496 497 498
        // If it's an iter, the 'output' type of the iter is actually the
        // *input* type of the function we're given as our iter-block
        // argument.
499
        atys += T_fn_pair(cx.tn,
500
                          type_of_fn_full(cx, ast.proto_fn, none[TypeRef],
501 502 503 504
                                          vec(rec(mode=ast.val, ty=output)),
                                          plain_ty(ty.ty_nil)));
    }

505
    // ... then explicit args.
506
    atys += type_of_explicit_args(cx, inputs);
507

508
    ret T_fn(atys, llvm.LLVMVoidType());
509 510
}

511
fn type_of_fn(@crate_ctxt cx,
512
              ast.proto proto,
513
              vec[ty.arg] inputs, @ty.t output) -> TypeRef {
514
    ret type_of_fn_full(cx, proto, none[TypeRef], inputs, output);
515 516
}

517 518 519
fn type_of_native_fn(@crate_ctxt cx, vec[ty.arg] inputs,
                     @ty.t output) -> TypeRef {
    let vec[TypeRef] atys = type_of_explicit_args(cx, inputs);
520
    ret T_fn(atys, type_of(cx, output));
521 522
}

523
fn type_of_inner(@crate_ctxt cx, @ty.t t) -> TypeRef {
524
    alt (t.struct) {
525
        case (ty.ty_native) { ret T_ptr(T_i8()); }
526 527 528 529 530
        case (ty.ty_nil) { ret T_nil(); }
        case (ty.ty_bool) { ret T_bool(); }
        case (ty.ty_int) { ret T_int(); }
        case (ty.ty_uint) { ret T_int(); }
        case (ty.ty_machine(?tm)) {
531 532 533 534 535 536 537 538 539 540 541 542 543
            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(); }
            }
        }
544 545
        case (ty.ty_char) { ret T_char(); }
        case (ty.ty_str) { ret T_ptr(T_str()); }
546
        case (ty.ty_tag(?tag_id, _)) {
547 548
            ret llvm.LLVMResolveTypeHandle(cx.tags.get(tag_id).th.llth);
        }
549
        case (ty.ty_box(?t)) {
550 551
            ret T_ptr(T_box(type_of(cx, t)));
        }
552
        case (ty.ty_vec(?t)) {
553
            ret T_ptr(T_vec(type_of(cx, t)));
554
        }
555
        case (ty.ty_tup(?elts)) {
556
            let vec[TypeRef] tys = vec();
557
            for (@ty.t elt in elts) {
558
                tys += type_of(cx, elt);
559 560 561
            }
            ret T_struct(tys);
        }
562
        case (ty.ty_rec(?fields)) {
563
            let vec[TypeRef] tys = vec();
564
            for (ty.field f in fields) {
565 566 567 568
                tys += type_of(cx, f.ty);
            }
            ret T_struct(tys);
        }
569 570
        case (ty.ty_fn(?proto, ?args, ?out)) {
            ret T_fn_pair(cx.tn, type_of_fn(cx, proto, args, out));
571
        }
572
        case (ty.ty_native_fn(?args, ?out)) {
573
            ret T_fn_pair(cx.tn, type_of_native_fn(cx, args, out));
574
        }
575
        case (ty.ty_obj(?meths)) {
576 577 578
            auto th = mk_type_handle();
            auto self_ty = llvm.LLVMResolveTypeHandle(th.llth);

579
            let vec[TypeRef] mtys = vec();
580
            for (ty.method m in meths) {
581
                let TypeRef mty =
582
                    type_of_fn_full(cx, m.proto,
583 584
                                    some[TypeRef](self_ty),
                                    m.inputs, m.output);
585
                mtys += T_ptr(mty);
586
            }
587
            let TypeRef vtbl = T_struct(mtys);
588
            let TypeRef pair = T_struct(vec(T_ptr(vtbl),
589
                                            T_opaque_obj_ptr(cx.tn)));
590

591 592 593 594
            auto abs_pair = llvm.LLVMResolveTypeHandle(th.llth);
            llvm.LLVMRefineType(abs_pair, pair);
            abs_pair = llvm.LLVMResolveTypeHandle(th.llth);
            ret abs_pair;
595
        }
596
        case (ty.ty_var(_)) {
597
            log "ty_var in trans.type_of";
598 599
            fail;
        }
600
        case (ty.ty_param(_)) {
601
            ret T_typaram_ptr(cx.tn);
602
        }
603
        case (ty.ty_type) { ret T_ptr(T_tydesc(cx.tn)); }
604 605 606 607
    }
    fail;
}

608
fn type_of_arg(@crate_ctxt cx, &ty.arg arg) -> TypeRef {
609 610 611 612 613 614 615
    auto ty = type_of(cx, arg.ty);
    if (arg.mode == ast.alias) {
        ty = T_ptr(ty);
    }
    ret ty;
}

616 617 618 619 620 621 622 623 624
// Name sanitation. LLVM will happily accept identifiers with weird names, but
// gas doesn't!

fn sanitize(str s) -> str {
    auto result = "";
    for (u8 c in s) {
        if (c == ('@' as u8)) {
            result += "boxed_";
        } else {
625 626 627 628 629 630 631
            if (c == (',' as u8)) {
                result += "_";
            } else {
                if (c == ('{' as u8) || c == ('(' as u8)) {
                    result += "_of_";
                } else {
                    if (c != 10u8 && c != ('}' as u8) && c != (')' as u8) &&
G
Graydon Hoare 已提交
632 633
                        c != (' ' as u8) && c != ('\t' as u8) &&
                        c != (';' as u8)) {
634 635 636 637 638
                        auto v = vec(c);
                        result += _str.from_bytes(v);
                    }
                }
            }
639 640 641 642 643
        }
    }
    ret result;
}

644 645 646 647 648 649
// LLVM constant constructors.

fn C_null(TypeRef t) -> ValueRef {
    ret llvm.LLVMConstNull(t);
}

650
fn C_integral(int i, TypeRef t) -> ValueRef {
651 652 653 654 655 656
    // 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);
    //
657 658 659
    ret llvm.LLVMConstIntOfString(t, _str.buf(istr(i)), 10);
}

660 661 662 663 664
fn C_nil() -> ValueRef {
    // NB: See comment above in T_void().
    ret C_integral(0, T_i1());
}

665 666
fn C_bool(bool b) -> ValueRef {
    if (b) {
667
        ret C_integral(1, T_bool());
668
    } else {
669
        ret C_integral(0, T_bool());
670 671 672
    }
}

673 674
fn C_int(int i) -> ValueRef {
    ret C_integral(i, T_int());
675 676
}

677 678 679
// This is a 'c-like' raw string, which differs from
// our boxed-and-length-annotated strings.
fn C_cstr(@crate_ctxt cx, str s) -> ValueRef {
680
    auto sc = llvm.LLVMConstString(_str.buf(s), _str.byte_len(s), False);
681
    auto g = llvm.LLVMAddGlobal(cx.llmod, val_ty(sc),
682 683
                                _str.buf(cx.names.next("str")));
    llvm.LLVMSetInitializer(g, sc);
684
    llvm.LLVMSetGlobalConstant(g, True);
685 686
    llvm.LLVMSetLinkage(g, lib.llvm.LLVMPrivateLinkage
                        as llvm.Linkage);
687
    ret g;
688 689
}

690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706
// A rust boxed-and-length-annotated string.
fn C_str(@crate_ctxt cx, str s) -> ValueRef {
    auto len = _str.byte_len(s);
    auto box = C_struct(vec(C_int(abi.const_refcount as int),
                            C_int(len + 1u as int), // 'alloc'
                            C_int(len + 1u as int), // 'fill'
                            llvm.LLVMConstString(_str.buf(s),
                                                 len, False)));
    auto g = llvm.LLVMAddGlobal(cx.llmod, val_ty(box),
                                _str.buf(cx.names.next("str")));
    llvm.LLVMSetInitializer(g, box);
    llvm.LLVMSetGlobalConstant(g, True);
    llvm.LLVMSetLinkage(g, lib.llvm.LLVMPrivateLinkage
                        as llvm.Linkage);
    ret llvm.LLVMConstPointerCast(g, T_ptr(T_str()));
}

707 708 709 710 711 712 713 714 715 716 717
fn C_zero_byte_arr(uint size) -> ValueRef {
    auto i = 0u;
    let vec[ValueRef] elts = vec();
    while (i < size) {
        elts += vec(C_integral(0, T_i8()));
        i += 1u;
    }
    ret llvm.LLVMConstArray(T_i8(), _vec.buf[ValueRef](elts),
                            _vec.len[ValueRef](elts));
}

718 719 720 721 722 723
fn C_struct(vec[ValueRef] elts) -> ValueRef {
    ret llvm.LLVMConstStruct(_vec.buf[ValueRef](elts),
                             _vec.len[ValueRef](elts),
                             False);
}

724
fn decl_fn(ModuleRef llmod, str name, uint cc, TypeRef llty) -> ValueRef {
725 726
    let ValueRef llfn =
        llvm.LLVMAddFunction(llmod, _str.buf(name), llty);
727
    llvm.LLVMSetFunctionCallConv(llfn, cc);
728 729 730
    ret llfn;
}

731 732
fn decl_cdecl_fn(ModuleRef llmod, str name, TypeRef llty) -> ValueRef {
    ret decl_fn(llmod, name, lib.llvm.LLVMCCallConv, llty);
733 734
}

735 736
fn decl_fastcall_fn(ModuleRef llmod, str name, TypeRef llty) -> ValueRef {
    ret decl_fn(llmod, name, lib.llvm.LLVMFastCallConv, llty);
737 738
}

739 740
fn decl_glue(ModuleRef llmod, type_names tn, str s) -> ValueRef {
    ret decl_cdecl_fn(llmod, s, T_fn(vec(T_taskptr(tn)), T_void()));
741 742
}

743
fn decl_upcall_glue(ModuleRef llmod, type_names tn, uint _n) -> ValueRef {
744 745 746 747
    // 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.
748
    let int n = _n as int;
749
    let str s = abi.upcall_glue_name(n);
750
    let vec[TypeRef] args =
751
        vec(T_taskptr(tn), // taskptr
752
            T_int())     // callee
753 754
        + _vec.init_elt[TypeRef](T_int(), n as uint);

755
    ret decl_fastcall_fn(llmod, s, T_fn(args, T_int()));
756 757
}

758
fn get_upcall(@crate_ctxt cx, str name, int n_args) -> ValueRef {
759 760 761
    if (cx.upcalls.contains_key(name)) {
        ret cx.upcalls.get(name);
    }
762
    auto inputs = vec(T_taskptr(cx.tn));
763
    inputs += _vec.init_elt[TypeRef](T_int(), n_args as uint);
764
    auto output = T_int();
765
    auto f = decl_cdecl_fn(cx.llmod, name, T_fn(inputs, output));
766 767 768 769
    cx.upcalls.insert(name, f);
    ret f;
}

770
fn trans_upcall(@block_ctxt cx, str name, vec[ValueRef] args) -> result {
771
    let int n = _vec.len[ValueRef](args) as int;
772
    let ValueRef llupcall = get_upcall(cx.fcx.ccx, name, n);
773 774
    llupcall = llvm.LLVMConstPointerCast(llupcall, T_int());

775
    let ValueRef llglue = cx.fcx.ccx.glues.upcall_glues.(n);
776
    let vec[ValueRef] call_args = vec(cx.fcx.lltaskptr, llupcall);
777

778 779 780
    for (ValueRef a in args) {
        call_args += cx.build.ZExtOrBitCast(a, T_int());
    }
781

782
    ret res(cx, cx.build.FastCall(llglue, call_args));
783 784
}

785 786 787
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)));
788 789
}

790
fn find_scope_cx(@block_ctxt cx) -> @block_ctxt {
791
    if (cx.kind == SCOPE_BLOCK) {
792 793 794 795 796 797 798 799 800 801 802 803
        ret cx;
    }
    alt (cx.parent) {
        case (parent_some(?b)) {
            be find_scope_cx(b);
        }
        case (parent_none) {
            fail;
        }
    }
}

804 805 806 807 808 809 810 811 812 813 814 815
fn umax(@block_ctxt cx, ValueRef a, ValueRef b) -> ValueRef {
    auto cond = cx.build.ICmp(lib.llvm.LLVMIntULT, a, b);
    ret cx.build.Select(cond, b, a);
}

fn align_to(@block_ctxt cx, ValueRef off, ValueRef align) -> ValueRef {
    auto mask = cx.build.Sub(align, C_int(1));
    auto bumped = cx.build.Add(off, mask);
    ret cx.build.And(bumped, cx.build.Not(mask));
}

fn llsize_of(TypeRef t) -> ValueRef {
816 817 818
    ret llvm.LLVMConstIntCast(lib.llvm.llvm.LLVMSizeOf(t), T_int(), False);
}

819
fn llalign_of(TypeRef t) -> ValueRef {
820 821 822
    ret llvm.LLVMConstIntCast(lib.llvm.llvm.LLVMAlignOf(t), T_int(), False);
}

823
fn size_of(@block_ctxt cx, @ty.t t) -> result {
824
    if (!ty.type_has_dynamic_size(t)) {
825
        ret res(cx, llsize_of(type_of(cx.fcx.ccx, t)));
826 827 828 829
    }
    ret dynamic_size_of(cx, t);
}

830
fn align_of(@block_ctxt cx, @ty.t t) -> result {
831
    if (!ty.type_has_dynamic_size(t)) {
832
        ret res(cx, llalign_of(type_of(cx.fcx.ccx, t)));
833 834 835 836
    }
    ret dynamic_align_of(cx, t);
}

837
fn dynamic_size_of(@block_ctxt cx, @ty.t t) -> result {
838 839 840
    alt (t.struct) {
        case (ty.ty_param(?p)) {
            auto szptr = field_of_tydesc(cx, t, abi.tydesc_field_size);
841
            ret res(szptr.bcx, szptr.bcx.build.Load(szptr.val));
842 843 844 845 846 847 848 849 850 851 852 853
        }
        case (ty.ty_tup(?elts)) {
            //
            // C padding rules:
            //
            //
            //   - Pad after each element so that next element is aligned.
            //   - Pad after final structure member so that whole structure
            //     is aligned to max alignment of interior.
            //
            auto off = C_int(0);
            auto max_align = C_int(1);
854
            auto bcx = cx;
855
            for (@ty.t e in elts) {
856 857 858 859 860 861 862
                auto elt_align = align_of(bcx, e);
                bcx = elt_align.bcx;
                auto elt_size = size_of(bcx, e);
                bcx = elt_size.bcx;
                auto aligned_off = align_to(bcx, off, elt_align.val);
                off = cx.build.Add(aligned_off, elt_size.val);
                max_align = umax(bcx, max_align, elt_align.val);
863
            }
864 865
            off = align_to(bcx, off, max_align);
            ret res(bcx, off);
866 867 868 869
        }
        case (ty.ty_rec(?flds)) {
            auto off = C_int(0);
            auto max_align = C_int(1);
870
            auto bcx = cx;
871
            for (ty.field f in flds) {
872 873 874 875 876 877 878
                auto elt_align = align_of(bcx, f.ty);
                bcx = elt_align.bcx;
                auto elt_size = size_of(bcx, f.ty);
                bcx = elt_size.bcx;
                auto aligned_off = align_to(bcx, off, elt_align.val);
                off = cx.build.Add(aligned_off, elt_size.val);
                max_align = umax(bcx, max_align, elt_align.val);
879
            }
880 881
            off = align_to(bcx, off, max_align);
            ret res(bcx, off);
882 883 884 885
        }
    }
}

886
fn dynamic_align_of(@block_ctxt cx, @ty.t t) -> result {
887 888 889
    alt (t.struct) {
        case (ty.ty_param(?p)) {
            auto aptr = field_of_tydesc(cx, t, abi.tydesc_field_align);
890
            ret res(aptr.bcx, aptr.bcx.build.Load(aptr.val));
891 892 893
        }
        case (ty.ty_tup(?elts)) {
            auto a = C_int(1);
894
            auto bcx = cx;
895
            for (@ty.t e in elts) {
896 897 898
                auto align = align_of(bcx, e);
                bcx = align.bcx;
                a = umax(bcx, a, align.val);
899
            }
900
            ret res(bcx, a);
901 902 903
        }
        case (ty.ty_rec(?flds)) {
            auto a = C_int(1);
904
            auto bcx = cx;
905
            for (ty.field f in flds) {
906 907 908
                auto align = align_of(bcx, f.ty);
                bcx = align.bcx;
                a = umax(bcx, a, align.val);
909
            }
910
            ret res(bcx, a);
911 912 913 914
        }
    }
}

915 916 917 918 919 920 921
// Replacement for the LLVM 'GEP' instruction when field-indexing into a
// tuple-like structure (tup, rec, tag) with a static index. This one is
// driven off ty.struct and knows what to do when it runs into a ty_param
// stuck in the middle of the thing it's GEP'ing into. Much like size_of and
// align_of, above.

fn GEP_tup_like(@block_ctxt cx, @ty.t t,
922
                ValueRef base, vec[int] ixs) -> result {
923 924 925 926 927 928 929 930 931 932

    check (ty.type_is_tup_like(t));

    // It might be a static-known type. Handle this.

    if (! ty.type_has_dynamic_size(t)) {
        let vec[ValueRef] v = vec();
        for (int i in ixs) {
            v += C_int(i);
        }
933
        ret res(cx, cx.build.GEP(base, v));
934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002
    }

    // It is a dynamic-containing type that, if we convert directly to an LLVM
    // TypeRef, will be all wrong; there's no proper LLVM type to represent
    // it, and the lowering function will stick in i8* values for each
    // ty_param, which is not right; the ty_params are all of some dynamic
    // size.
    //
    // What we must do instead is sadder. We must look through the indices
    // manually and split the input type into a prefix and a target. We then
    // measure the prefix size, bump the input pointer by that amount, and
    // cast to a pointer-to-target type.


    // Given a type, an index vector and an element number N in that vector,
    // calculate index X and the type that results by taking the first X-1
    // elements of the type and splitting the Xth off. Return the prefix as
    // well as the innermost Xth type.

    fn split_type(@ty.t t, vec[int] ixs, uint n)
        -> rec(vec[@ty.t] prefix, @ty.t target) {

        let uint len = _vec.len[int](ixs);

        // We don't support 0-index or 1-index GEPs. The former is nonsense
        // and the latter would only be meaningful if we supported non-0
        // values for the 0th index (we don't).

        check (len > 1u);

        if (n == 0u) {
            // Since we're starting from a value that's a pointer to a
            // *single* structure, the first index (in GEP-ese) should just be
            // 0, to yield the pointee.
            check (ixs.(n) == 0);
            ret split_type(t, ixs, n+1u);
        }

        check (n < len);

        let int ix = ixs.(n);
        let vec[@ty.t] prefix = vec();
        let int i = 0;
        while (i < ix) {
            append[@ty.t](prefix, ty.get_element_type(t, i as uint));
            i +=1 ;
        }

        auto selected = ty.get_element_type(t, i as uint);

        if (n == len-1u) {
            // We are at the innermost index.
            ret rec(prefix=prefix, target=selected);

        } else {
            // Not the innermost index; call self recursively to dig deeper.
            // Once we get an inner result, append it current prefix and
            // return to caller.
            auto inner = split_type(selected, ixs, n+1u);
            prefix += inner.prefix;
            ret rec(prefix=prefix with inner);
        }
    }

    // We make a fake prefix tuple-type here; luckily for measuring sizes
    // the tuple parens are associative so it doesn't matter that we've
    // flattened the incoming structure.

    auto s = split_type(t, ixs, 0u);
1003
    auto prefix_ty = plain_ty(ty.ty_tup(s.prefix));
1004 1005 1006 1007 1008
    auto bcx = cx;
    auto sz = size_of(bcx, prefix_ty);
    bcx = sz.bcx;
    auto raw = bcx.build.PointerCast(base, T_ptr(T_i8()));
    auto bumped = bcx.build.GEP(raw, vec(sz.val));
1009
    alt (s.target.struct) {
1010
        case (ty.ty_param(_)) { ret res(bcx, bumped); }
1011
        case (_) {
1012 1013
            auto ty = T_ptr(type_of(bcx.fcx.ccx, s.target));
            ret res(bcx, bcx.build.PointerCast(bumped, ty));
1014 1015 1016 1017 1018
        }
    }
}


1019 1020
fn trans_malloc_inner(@block_ctxt cx, TypeRef llptr_ty) -> result {
    auto llbody_ty = lib.llvm.llvm.LLVMGetElementType(llptr_ty);
1021 1022
    // FIXME: need a table to collect tydesc globals.
    auto tydesc = C_int(0);
1023
    auto sz = llsize_of(llbody_ty);
1024
    auto sub = trans_upcall(cx, "upcall_malloc", vec(sz, tydesc));
1025 1026 1027 1028 1029 1030 1031 1032
    sub.val = sub.bcx.build.IntToPtr(sub.val, llptr_ty);
    ret sub;
}

fn trans_malloc(@block_ctxt cx, @ty.t t) -> result {
    auto scope_cx = find_scope_cx(cx);
    auto llptr_ty = type_of(cx.fcx.ccx, t);
    auto sub = trans_malloc_inner(cx, llptr_ty);
1033
    scope_cx.cleanups += clean(bind drop_ty(_, sub.val, t));
1034 1035 1036 1037
    ret sub;
}


1038 1039 1040 1041 1042
// Type descriptor and type glue stuff

// Given a type and a field index into its corresponding type descriptor,
// returns an LLVM ValueRef of that field from the tydesc, generating the
// tydesc if necessary.
1043
fn field_of_tydesc(@block_ctxt cx, @ty.t t, int field) -> result {
1044
    auto tydesc = get_tydesc(cx, t);
1045 1046
    ret res(tydesc.bcx,
            tydesc.bcx.build.GEP(tydesc.val, vec(C_int(0), C_int(field))));
1047
}
1048

1049 1050 1051 1052 1053 1054 1055 1056 1057
// Given a type containing ty params, build a vector containing a ValueRef for
// each of the ty params it uses (from the current frame), as well as a vec
// containing a def_id for each such param. This is used solely for
// constructing derived tydescs.
fn linearize_ty_params(@block_ctxt cx, @ty.t t)
    -> tup(vec[ast.def_id], vec[ValueRef]) {
    let vec[ValueRef] param_vals = vec();
    let vec[ast.def_id] param_defs = vec();
    type rr = rec(@block_ctxt cx,
1058 1059
                  mutable vec[ValueRef] vals,
                  mutable vec[ast.def_id] defs);
1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071

    state obj folder(@rr r) {
        fn fold_simple_ty(@ty.t t) -> @ty.t {
            alt(t.struct) {
                case (ty.ty_param(?pid)) {
                    let bool seen = false;
                    for (ast.def_id d in r.defs) {
                        if (d == pid) {
                            seen = true;
                        }
                    }
                    if (!seen) {
1072
                        r.vals += r.cx.fcx.lltydescs.get(pid);
1073 1074 1075
                        r.defs += pid;
                    }
                }
1076
                case (_) { }
1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
            }
            ret t;
        }
    }


    auto x = @rec(cx = cx,
                  mutable vals = param_vals,
                  mutable defs = param_defs);

    ty.fold_ty(folder(x), t);

    ret tup(x.defs, x.vals);
}

1092
fn get_tydesc(&@block_ctxt cx, @ty.t t) -> result {
1093
    // Is the supplied type a type param? If so, return the passed-in tydesc.
1094
    alt (ty.type_param(t)) {
1095
        case (some[ast.def_id](?id)) {
1096
            check (cx.fcx.lltydescs.contains_key(id));
1097 1098
            ret res(cx, cx.fcx.lltydescs.get(id));
        }
1099
        case (none[ast.def_id])      { /* fall through */ }
1100
    }
1101 1102

    // Does it contain a type param? If so, generate a derived tydesc.
1103
    let uint n_params = ty.count_ty_params(t);
1104

1105
    if (ty.count_ty_params(t) > 0u) {
1106
        auto tys = linearize_ty_params(cx, t);
1107

1108 1109 1110
        check (n_params == _vec.len[ast.def_id](tys._0));
        check (n_params == _vec.len[ValueRef](tys._1));

1111 1112 1113 1114
        if (!cx.fcx.ccx.tydescs.contains_key(t)) {
            make_tydesc(cx.fcx.ccx, t, tys._0);
        }

1115 1116
        auto root = cx.fcx.ccx.tydescs.get(t);

1117 1118
        auto tydescs = cx.build.Alloca(T_array(T_ptr(T_tydesc(cx.fcx.ccx.tn)),
                                               n_params));
1119

1120
        auto i = 0;
1121 1122 1123
        auto tdp = cx.build.GEP(tydescs, vec(C_int(0), C_int(i)));
        cx.build.Store(root, tdp);
        i += 1;
1124 1125
        for (ValueRef td in tys._1) {
            auto tdp = cx.build.GEP(tydescs, vec(C_int(0), C_int(i)));
1126
            cx.build.Store(td, tdp);
1127
            i += 1;
1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
        }

        auto bcx = cx;
        auto sz = size_of(bcx, t);
        bcx = sz.bcx;
        auto align = align_of(bcx, t);
        bcx = align.bcx;

        auto v = trans_upcall(bcx, "upcall_get_type_desc",
                              vec(p2i(bcx.fcx.ccx.crate_ptr),
                                  sz.val,
                                  align.val,
1140
                                  C_int((1u + n_params) as int),
1141 1142
                                  bcx.build.PtrToInt(tydescs, T_int())));

1143 1144
        ret res(v.bcx, v.bcx.build.IntToPtr(v.val,
                                            T_ptr(T_tydesc(cx.fcx.ccx.tn))));
1145 1146 1147
    }

    // Otherwise, generate a tydesc if necessary, and return it.
1148
    if (!cx.fcx.ccx.tydescs.contains_key(t)) {
1149 1150
        let vec[ast.def_id] defs = vec();
        make_tydesc(cx.fcx.ccx, t, defs);
1151
    }
1152
    ret res(cx, cx.fcx.ccx.tydescs.get(t));
1153 1154
}

1155
fn make_tydesc(@crate_ctxt cx, @ty.t t, vec[ast.def_id] typaram_defs) {
1156
    auto tg = make_take_glue;
1157
    auto take_glue = make_generic_glue(cx, t, "take", tg, typaram_defs);
1158
    auto dg = make_drop_glue;
1159
    auto drop_glue = make_generic_glue(cx, t, "drop", dg, typaram_defs);
1160

1161
    auto llty = type_of(cx, t);
1162
    auto glue_fn_ty = T_ptr(T_glue_fn(cx.tn));
1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174

    // FIXME: this adjustment has to do with the ridiculous encoding of
    // glue-pointer-constants in the tydesc records: They are tydesc-relative
    // displacements.  This is purely for compatibility with rustboot and
    // should go when it is discarded.
    fn off(ValueRef tydescp,
           ValueRef gluefn) -> ValueRef {
        ret i2p(llvm.LLVMConstSub(p2i(gluefn), p2i(tydescp)),
                val_ty(gluefn));
    }

    auto name = sanitize(cx.names.next("tydesc_" + ty.ty_to_str(t)));
1175 1176 1177
    auto gvar = llvm.LLVMAddGlobal(cx.llmod, T_tydesc(cx.tn),
                                   _str.buf(name));
    auto tydesc = C_struct(vec(C_null(T_ptr(T_ptr(T_tydesc(cx.tn)))),
1178 1179
                               llsize_of(llty),
                               llalign_of(llty),
1180 1181
                               off(gvar, take_glue),  // take_glue_off
                               off(gvar, drop_glue),  // drop_glue_off
1182 1183 1184 1185 1186 1187 1188 1189
                               C_null(glue_fn_ty),    // free_glue_off
                               C_null(glue_fn_ty),    // sever_glue_off
                               C_null(glue_fn_ty),    // mark_glue_off
                               C_null(glue_fn_ty),    // obj_drop_glue_off
                               C_null(glue_fn_ty)));  // is_stateful

    llvm.LLVMSetInitializer(gvar, tydesc);
    llvm.LLVMSetGlobalConstant(gvar, True);
1190 1191
    llvm.LLVMSetLinkage(gvar, lib.llvm.LLVMPrivateLinkage
                        as llvm.Linkage);
1192
    cx.tydescs.insert(t, gvar);
1193 1194
}

1195
fn make_generic_glue(@crate_ctxt cx, @ty.t t, str name,
1196 1197
                     val_and_ty_fn helper,
                     vec[ast.def_id] typaram_defs) -> ValueRef {
1198
    auto llfnty = T_glue_fn(cx.tn);
1199

1200
    auto fn_name = cx.names.next("_rust_" + name) + sep() + ty.ty_to_str(t);
1201 1202 1203 1204 1205 1206
    fn_name = sanitize(fn_name);
    auto llfn = decl_fastcall_fn(cx.llmod, fn_name, llfnty);

    auto fcx = new_fn_ctxt(cx, fn_name, llfn);
    auto bcx = new_top_block_ctxt(fcx);

1207
    auto re;
1208
    if (!ty.type_is_scalar(t)) {
1209
        auto llty;
1210
        if (ty.type_is_structural(t)) {
1211 1212 1213 1214
            llty = T_ptr(type_of(cx, t));
        } else {
            llty = type_of(cx, t);
        }
1215

1216
        auto lltyparams = llvm.LLVMGetParam(llfn, 3u);
1217 1218 1219 1220 1221 1222 1223 1224
        auto p = 0;
        for (ast.def_id d in typaram_defs) {
            auto llparam = bcx.build.GEP(lltyparams, vec(C_int(p)));
            llparam = bcx.build.Load(llparam);
            bcx.fcx.lltydescs.insert(d, llparam);
            p += 1;
        }

1225
        auto llrawptr = llvm.LLVMGetParam(llfn, 4u);
1226
        auto llval = bcx.build.BitCast(llrawptr, llty);
G
Graydon Hoare 已提交
1227

1228 1229 1230 1231
        re = helper(bcx, llval, t);
    } else {
        re = res(bcx, C_nil());
    }
1232

1233
    re.bcx.build.RetVoid();
1234 1235 1236
    ret llfn;
}

1237 1238
fn make_take_glue(@block_ctxt cx, ValueRef v, @ty.t t) -> result {
    if (ty.type_is_boxed(t)) {
1239 1240
        ret incr_refcnt_of_boxed(cx, v);

1241
    } else if (ty.type_is_structural(t)) {
1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266
        ret iter_structural_ty(cx, v, t,
                               bind incr_all_refcnts(_, _, _));
    }
    ret res(cx, C_nil());
}

fn incr_refcnt_of_boxed(@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);

    auto rc_adj_cx = new_sub_block_ctxt(cx, "rc++");
    auto next_cx = new_sub_block_ctxt(cx, "next");

    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());
}

1267
fn make_drop_glue(@block_ctxt cx, ValueRef v, @ty.t t) -> result {
1268
    alt (t.struct) {
1269
        case (ty.ty_str) {
G
Graydon Hoare 已提交
1270 1271 1272 1273
            ret decr_refcnt_and_if_zero
                (cx, v, bind trans_non_gc_free(_, v),
                 "free string",
                 T_int(), C_int(0));
1274 1275
        }

1276
        case (ty.ty_vec(_)) {
G
Graydon Hoare 已提交
1277 1278 1279 1280
            fn hit_zero(@block_ctxt cx, ValueRef v,
                        @ty.t t) -> result {
                auto res = iter_sequence(cx, v, t,
                                         bind drop_ty(_,_,_));
1281 1282 1283 1284 1285 1286 1287 1288 1289
                // FIXME: switch gc/non-gc on layer of the type.
                ret trans_non_gc_free(res.bcx, v);
            }
            ret decr_refcnt_and_if_zero(cx, v,
                                        bind hit_zero(_, v, t),
                                        "free vector",
                                        T_int(), C_int(0));
        }

1290
        case (ty.ty_box(?body_ty)) {
G
Graydon Hoare 已提交
1291 1292
            fn hit_zero(@block_ctxt cx, ValueRef v,
                        @ty.t body_ty) -> result {
1293 1294 1295 1296
                auto body = cx.build.GEP(v,
                                         vec(C_int(0),
                                             C_int(abi.box_rc_field_body)));

1297
                auto body_val = load_scalar_or_boxed(cx, body, body_ty);
1298 1299 1300 1301 1302 1303 1304 1305 1306 1307
                auto res = drop_ty(cx, body_val, body_ty);
                // FIXME: switch gc/non-gc on layer of the type.
                ret trans_non_gc_free(res.bcx, v);
            }
            ret decr_refcnt_and_if_zero(cx, v,
                                        bind hit_zero(_, v, body_ty),
                                        "free box",
                                        T_int(), C_int(0));
        }

1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320
        case (ty.ty_obj(_)) {
            fn hit_zero(@block_ctxt cx, ValueRef v) -> result {

                // Call through the obj's own fields-drop glue first.
                auto body =
                    cx.build.GEP(v,
                                 vec(C_int(0),
                                     C_int(abi.box_rc_field_body)));

                auto tydescptr =
                    cx.build.GEP(body,
                                 vec(C_int(0),
                                     C_int(abi.obj_body_elt_tydesc)));
1321

1322
                call_tydesc_glue_full(cx, body, cx.build.Load(tydescptr),
1323
                                      abi.tydesc_field_drop_glue_off);
1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341

                // Then free the body.
                // FIXME: switch gc/non-gc on layer of the type.
                ret trans_non_gc_free(cx, v);
            }
            auto box_cell =
                cx.build.GEP(v,
                             vec(C_int(0),
                                 C_int(abi.obj_field_box)));

            auto boxptr = cx.build.Load(box_cell);

            ret decr_refcnt_and_if_zero(cx, boxptr,
                                        bind hit_zero(_, boxptr),
                                        "free obj",
                                        T_int(), C_int(0));
        }

1342
        case (ty.ty_fn(_,_,_)) {
1343 1344 1345 1346 1347 1348 1349
            fn hit_zero(@block_ctxt cx, ValueRef v) -> result {

                // Call through the closure's own fields-drop glue first.
                auto body =
                    cx.build.GEP(v,
                                 vec(C_int(0),
                                     C_int(abi.box_rc_field_body)));
1350 1351 1352 1353
                auto bindings =
                    cx.build.GEP(body,
                                 vec(C_int(0),
                                     C_int(abi.closure_elt_bindings)));
1354 1355 1356 1357 1358

                auto tydescptr =
                    cx.build.GEP(body,
                                 vec(C_int(0),
                                     C_int(abi.closure_elt_tydesc)));
1359

1360
                call_tydesc_glue_full(cx, bindings, cx.build.Load(tydescptr),
1361 1362
                                      abi.tydesc_field_drop_glue_off);

1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380

                // Then free the body.
                // FIXME: switch gc/non-gc on layer of the type.
                ret trans_non_gc_free(cx, v);
            }
            auto box_cell =
                cx.build.GEP(v,
                             vec(C_int(0),
                                 C_int(abi.fn_field_box)));

            auto boxptr = cx.build.Load(box_cell);

            ret decr_refcnt_and_if_zero(cx, boxptr,
                                        bind hit_zero(_, boxptr),
                                        "free fn",
                                        T_int(), C_int(0));
        }

1381
        case (_) {
1382
            if (ty.type_is_structural(t)) {
1383 1384 1385
                ret iter_structural_ty(cx, v, t,
                                       bind drop_ty(_, _, _));

1386 1387
            } else if (ty.type_is_scalar(t) ||
                       ty.type_is_nil(t)) {
1388 1389 1390 1391
                ret res(cx, C_nil());
            }
        }
    }
1392
    cx.fcx.ccx.sess.bug("bad type in trans.make_drop_glue_inner: " +
1393
                        ty.ty_to_str(t));
1394 1395 1396
    fail;
}

1397 1398
fn decr_refcnt_and_if_zero(@block_ctxt cx,
                           ValueRef box_ptr,
1399
                           fn(@block_ctxt cx) -> result inner,
1400
                           str inner_name,
1401
                           TypeRef t_else, ValueRef v_else) -> result {
1402

1403
    auto load_rc_cx = new_sub_block_ctxt(cx, "load rc");
1404 1405 1406 1407
    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");

1408 1409
    auto null_test = cx.build.IsNull(box_ptr);
    cx.build.CondBr(null_test, next_cx.llbb, load_rc_cx.llbb);
1410

1411 1412 1413 1414 1415 1416 1417 1418 1419 1420

    auto rc_ptr = load_rc_cx.build.GEP(box_ptr,
                                       vec(C_int(0),
                                           C_int(abi.box_rc_field_refcnt)));

    auto rc = load_rc_cx.build.Load(rc_ptr);
    auto const_test =
        load_rc_cx.build.ICmp(lib.llvm.LLVMIntEQ,
                              C_int(abi.const_refcount as int), rc);
    load_rc_cx.build.CondBr(const_test, next_cx.llbb, rc_adj_cx.llbb);
1421 1422 1423 1424

    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);
1425 1426 1427 1428
    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);
1429

1430
    auto phi = next_cx.build.Phi(t_else,
1431
                                 vec(v_else, v_else, v_else, inner_res.val),
1432
                                 vec(cx.llbb,
1433
                                     load_rc_cx.llbb,
1434
                                     rc_adj_cx.llbb,
1435 1436
                                     inner_res.bcx.llbb));

1437
    ret res(next_cx, phi);
1438 1439
}

1440 1441
fn type_of_variant(@crate_ctxt cx, &ast.variant v) -> TypeRef {
    let vec[TypeRef] lltys = vec();
1442
    alt (ty.ann_to_type(v.ann).struct) {
1443
        case (ty.ty_fn(_, ?args, _)) {
1444
            for (ty.arg arg in args) {
1445 1446 1447 1448 1449 1450 1451 1452
                lltys += vec(type_of(cx, arg.ty));
            }
        }
        case (_) { fail; }
    }
    ret T_struct(lltys);
}

1453
type val_and_ty_fn = fn(@block_ctxt cx, ValueRef v, @ty.t t) -> result;
1454

1455
// Iterates through the elements of a structural type.
1456 1457
fn iter_structural_ty(@block_ctxt cx,
                      ValueRef v,
1458
                      @ty.t t,
1459 1460 1461
                      val_and_ty_fn f)
    -> result {
    let result r = res(cx, C_nil());
1462

1463 1464 1465 1466
    fn iter_boxpp(@block_ctxt cx,
                  ValueRef box_cell,
                  val_and_ty_fn f) -> result {
        auto box_ptr = cx.build.Load(box_cell);
1467 1468
        auto tnil = plain_ty(ty.ty_nil);
        auto tbox = plain_ty(ty.ty_box(tnil));
1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479

        auto inner_cx = new_sub_block_ctxt(cx, "iter box");
        auto next_cx = new_sub_block_ctxt(cx, "next");
        auto null_test = cx.build.IsNull(box_ptr);
        cx.build.CondBr(null_test, next_cx.llbb, inner_cx.llbb);

        auto r = f(inner_cx, box_ptr, tbox);
        r.bcx.build.Br(next_cx.llbb);
        ret res(next_cx, r.val);
    }

1480
    alt (t.struct) {
1481
        case (ty.ty_tup(?args)) {
1482
            let int i = 0;
1483
            for (@ty.t arg in args) {
1484
                auto elt = r.bcx.build.GEP(v, vec(C_int(0), C_int(i)));
1485
                r = f(r.bcx,
1486
                      load_scalar_or_boxed(r.bcx, elt, arg),
1487
                      arg);
1488 1489 1490
                i += 1;
            }
        }
1491
        case (ty.ty_rec(?fields)) {
1492
            let int i = 0;
1493
            for (ty.field fld in fields) {
1494
                auto llfld = r.bcx.build.GEP(v, vec(C_int(0), C_int(i)));
1495
                r = f(r.bcx,
1496
                      load_scalar_or_boxed(r.bcx, llfld, fld.ty),
1497
                      fld.ty);
1498 1499 1500
                i += 1;
            }
        }
1501 1502 1503
        case (ty.ty_tag(?tid, _)) {
            // TODO: type params!

1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524
            check (cx.fcx.ccx.tags.contains_key(tid));
            auto info = cx.fcx.ccx.tags.get(tid);
            auto n_variants = _vec.len[tup(ast.def_id,arity)](info.variants);

            // Look up the tag in the typechecked AST.
            check (cx.fcx.ccx.items.contains_key(tid));
            auto tag_item = cx.fcx.ccx.items.get(tid);
            let vec[ast.variant] variants = vec();  // FIXME: typestate bug
            alt (tag_item.node) {
                case (ast.item_tag(_, ?vs, _, _)) {
                    variants = vs;
                }
                case (_) {
                    log "trans: ty_tag doesn't actually refer to a tag";
                    fail;
                }
            }

            auto lldiscrim_ptr = cx.build.GEP(v, vec(C_int(0), C_int(0)));
            auto llunion_ptr = cx.build.GEP(v, vec(C_int(0), C_int(1)));
            auto lldiscrim = cx.build.Load(lldiscrim_ptr);
G
Graydon Hoare 已提交
1525

1526 1527 1528 1529 1530
            auto unr_cx = new_sub_block_ctxt(cx, "tag-iter-unr");
            unr_cx.build.Unreachable();

            auto llswitch = cx.build.Switch(lldiscrim, unr_cx.llbb,
                                            n_variants);
G
Graydon Hoare 已提交
1531

1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543
            auto next_cx = new_sub_block_ctxt(cx, "tag-iter-next");

            auto i = 0u;
            for (tup(ast.def_id,arity) variant in info.variants) {
                auto variant_cx = new_sub_block_ctxt(cx, "tag-iter-variant-" +
                                                     _uint.to_str(i, 10u));
                llvm.LLVMAddCase(llswitch, C_int(i as int), variant_cx.llbb);

                alt (variant._1) {
                    case (n_ary) {
                        let vec[ValueRef] vals = vec(C_int(0), C_int(1),
                                                     C_int(i as int));
1544
                        auto llvar = variant_cx.build.GEP(v, vals);
1545 1546
                        auto llvarty = type_of_variant(cx.fcx.ccx,
                                                       variants.(i));
1547

1548
                        auto fn_ty = ty.ann_to_type(variants.(i).ann);
1549
                        alt (fn_ty.struct) {
1550
                            case (ty.ty_fn(_, ?args, _)) {
1551 1552 1553 1554
                                auto llvarp = variant_cx.build.
                                    TruncOrBitCast(llunion_ptr,
                                                   T_ptr(llvarty));

1555
                                auto j = 0u;
1556
                                for (ty.arg a in args) {
G
Graydon Hoare 已提交
1557 1558 1559 1560 1561
                                    auto v = vec(C_int(0),
                                                 C_int(j as int));
                                    auto llfldp =
                                        variant_cx.build.GEP(llvarp, v);

1562
                                    auto llfld =
1563
                                        load_scalar_or_boxed(variant_cx,
G
Graydon Hoare 已提交
1564
                                                             llfldp, a.ty);
1565

1566 1567 1568 1569 1570 1571 1572 1573 1574
                                    auto res = f(variant_cx, llfld, a.ty);
                                    variant_cx = res.bcx;
                                    j += 1u;
                                }
                            }
                            case (_) { fail; }
                        }

                        variant_cx.build.Br(next_cx.llbb);
1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586
                    }
                    case (nullary) {
                        // Nothing to do.
                        variant_cx.build.Br(next_cx.llbb);
                    }
                }

                i += 1u;
            }

            ret res(next_cx, C_nil());
        }
1587
        case (ty.ty_fn(_,_,_)) {
1588 1589 1590 1591
            auto box_cell =
                cx.build.GEP(v,
                             vec(C_int(0),
                                 C_int(abi.fn_field_box)));
1592
            ret iter_boxpp(cx, box_cell, f);
1593
        }
1594
        case (ty.ty_obj(_)) {
1595 1596 1597 1598
            auto box_cell =
                cx.build.GEP(v,
                             vec(C_int(0),
                                 C_int(abi.obj_field_box)));
1599
            ret iter_boxpp(cx, box_cell, f);
1600
        }
1601 1602 1603
        case (_) {
            cx.fcx.ccx.sess.unimpl("type in iter_structural_ty");
        }
1604
    }
1605
    ret r;
1606 1607
}

1608 1609 1610
// Iterates through the elements of a vec or str.
fn iter_sequence(@block_ctxt cx,
                 ValueRef v,
1611
                 @ty.t t,
1612 1613 1614 1615
                 val_and_ty_fn f) -> result {

    fn iter_sequence_body(@block_ctxt cx,
                          ValueRef v,
1616
                          @ty.t elt_ty,
1617 1618 1619 1620 1621 1622 1623
                          val_and_ty_fn f,
                          bool trailing_null) -> result {

        auto p0 = cx.build.GEP(v, vec(C_int(0),
                                      C_int(abi.vec_elt_data)));
        auto lenptr = cx.build.GEP(v, vec(C_int(0),
                                          C_int(abi.vec_elt_fill)));
1624 1625

        auto llunit_ty = type_of(cx.fcx.ccx, elt_ty);
1626 1627 1628
        auto bcx = cx;
        auto unit_sz = size_of(bcx, elt_ty);
        bcx = unit_sz.bcx;
1629

1630
        auto len = bcx.build.Load(lenptr);
1631
        if (trailing_null) {
1632
            len = bcx.build.Sub(len, unit_sz.val);
1633 1634
        }

1635 1636
        auto cond_cx = new_scope_block_ctxt(cx, "sequence-iter cond");
        auto body_cx = new_scope_block_ctxt(cx, "sequence-iter body");
1637 1638
        auto next_cx = new_sub_block_ctxt(cx, "next");

1639
        bcx.build.Br(cond_cx.llbb);
1640

1641
        auto ix = cond_cx.build.Phi(T_int(), vec(C_int(0)), vec(cx.llbb));
1642 1643 1644 1645 1646
        auto scaled_ix = cond_cx.build.Phi(T_int(),
                                           vec(C_int(0)), vec(cx.llbb));

        auto end_test = cond_cx.build.ICmp(lib.llvm.LLVMIntNE,
                                           scaled_ix, len);
1647 1648
        cond_cx.build.CondBr(end_test, body_cx.llbb, next_cx.llbb);

1649
        auto elt = body_cx.build.GEP(p0, vec(C_int(0), ix));
1650
        auto body_res = f(body_cx,
1651
                          load_scalar_or_boxed(body_cx, elt, elt_ty),
1652
                          elt_ty);
1653
        auto next_ix = body_res.bcx.build.Add(ix, C_int(1));
1654
        auto next_scaled_ix = body_res.bcx.build.Add(scaled_ix, unit_sz.val);
1655

1656 1657 1658
        cond_cx.build.AddIncomingToPhi(ix, vec(next_ix),
                                       vec(body_res.bcx.llbb));

1659 1660 1661
        cond_cx.build.AddIncomingToPhi(scaled_ix, vec(next_scaled_ix),
                                       vec(body_res.bcx.llbb));

1662 1663 1664 1665
        body_res.bcx.build.Br(cond_cx.llbb);
        ret res(next_cx, C_nil());
    }

1666 1667
    alt (t.struct) {
        case (ty.ty_vec(?et)) {
1668 1669
            ret iter_sequence_body(cx, v, et, f, false);
        }
1670
        case (ty.ty_str) {
1671
            auto et = plain_ty(ty.ty_machine(common.ty_u8));
1672
            ret iter_sequence_body(cx, v, et, f, true);
1673
        }
1674
        case (_) { fail; }
1675
    }
1676 1677 1678 1679
    cx.fcx.ccx.sess.bug("bad type in trans.iter_sequence");
    fail;
}

1680 1681 1682 1683 1684 1685 1686 1687 1688
fn call_tydesc_glue_full(@block_ctxt cx, ValueRef v,
                         ValueRef tydesc, int field) {
    auto llrawptr = cx.build.BitCast(v, T_ptr(T_i8()));
    auto lltydescs = cx.build.GEP(tydesc,
                                  vec(C_int(0),
                                      C_int(abi.tydesc_field_first_param)));
    lltydescs = cx.build.Load(lltydescs);
    auto llfnptr = cx.build.GEP(tydesc, vec(C_int(0), C_int(field)));
    auto llfn = cx.build.Load(llfnptr);
1689 1690 1691 1692 1693 1694 1695 1696 1697

    // FIXME: this adjustment has to do with the ridiculous encoding of
    // glue-pointer-constants in the tydesc records: They are tydesc-relative
    // displacements.  This is purely for compatibility with rustboot and
    // should go when it is discarded.
    llfn = cx.build.IntToPtr(cx.build.Add(cx.build.PtrToInt(llfn, T_int()),
                                          cx.build.PtrToInt(tydesc, T_int())),
                             val_ty(llfn));

1698 1699 1700 1701 1702
    cx.build.FastCall(llfn, vec(C_null(T_ptr(T_nil())),
                                cx.fcx.lltaskptr,
                                C_null(T_ptr(T_nil())),
                                lltydescs,
                                llrawptr));
1703 1704 1705
}

fn call_tydesc_glue(@block_ctxt cx, ValueRef v, @ty.t t, int field) {
1706 1707
    auto td = get_tydesc(cx, t);
    call_tydesc_glue_full(td.bcx, v, td.val, field);
1708 1709
}

1710 1711
fn incr_all_refcnts(@block_ctxt cx,
                    ValueRef v,
1712
                    @ty.t t) -> result {
1713

1714
    if (!ty.type_is_scalar(t)) {
1715
        call_tydesc_glue(cx, v, t, abi.tydesc_field_take_glue_off);
1716
    }
1717
    ret res(cx, C_nil());
1718 1719
}

1720 1721
fn drop_slot(@block_ctxt cx,
             ValueRef slot,
1722
             @ty.t t) -> result {
1723
    auto llptr = load_scalar_or_boxed(cx, slot, t);
1724 1725 1726 1727 1728 1729
    auto re = drop_ty(cx, llptr, t);

    auto llty = val_ty(slot);
    auto llelemty = lib.llvm.llvm.LLVMGetElementType(llty);
    re.bcx.build.Store(C_null(llelemty), slot);
    ret re;
1730 1731
}

1732 1733
fn drop_ty(@block_ctxt cx,
           ValueRef v,
1734
           @ty.t t) -> result {
1735

1736
    if (!ty.type_is_scalar(t)) {
1737
        call_tydesc_glue(cx, v, t, abi.tydesc_field_drop_glue_off);
1738
    }
1739
    ret res(cx, C_nil());
1740 1741
}

1742 1743 1744 1745
fn call_memcpy(@block_ctxt cx,
               ValueRef dst,
               ValueRef src,
               ValueRef n_bytes) -> result {
1746 1747
    auto src_ptr = cx.build.PointerCast(src, T_ptr(T_i8()));
    auto dst_ptr = cx.build.PointerCast(dst, T_ptr(T_i8()));
1748 1749 1750
    auto size = cx.build.IntCast(n_bytes, T_int());
    ret res(cx, cx.build.FastCall(cx.fcx.ccx.glues.memcpy_glue,
                                  vec(dst_ptr, src_ptr, size)));
1751 1752
}

1753 1754 1755 1756 1757 1758 1759 1760 1761
fn call_bzero(@block_ctxt cx,
              ValueRef dst,
              ValueRef n_bytes) -> result {
    auto dst_ptr = cx.build.PointerCast(dst, T_ptr(T_i8()));
    auto size = cx.build.IntCast(n_bytes, T_int());
    ret res(cx, cx.build.FastCall(cx.fcx.ccx.glues.bzero_glue,
                                  vec(dst_ptr, size)));
}

1762 1763 1764 1765 1766 1767
fn memcpy_ty(@block_ctxt cx,
             ValueRef dst,
             ValueRef src,
             @ty.t t) -> result {
    if (ty.type_has_dynamic_size(t)) {
        auto llszptr = field_of_tydesc(cx, t, abi.tydesc_field_size);
1768 1769
        auto llsz = llszptr.bcx.build.Load(llszptr.val);
        ret call_memcpy(llszptr.bcx, dst, src, llsz);
1770 1771 1772 1773 1774 1775

    } else {
        ret res(cx, cx.build.Store(cx.build.Load(src), dst));
    }
}

1776 1777 1778 1779 1780
tag copy_action {
    INIT;
    DROP_EXISTING;
}

1781
fn copy_ty(@block_ctxt cx,
1782
           copy_action action,
1783 1784
           ValueRef dst,
           ValueRef src,
1785 1786
           @ty.t t) -> result {
    if (ty.type_is_scalar(t)) {
1787 1788
        ret res(cx, cx.build.Store(src, dst));

1789
    } else if (ty.type_is_nil(t)) {
1790 1791
        ret res(cx, C_nil());

1792
    } else if (ty.type_is_boxed(t)) {
1793
        auto r = incr_all_refcnts(cx, src, t);
1794
        if (action == DROP_EXISTING) {
1795
            r = drop_ty(r.bcx, r.bcx.build.Load(dst), t);
1796 1797 1798
        }
        ret res(r.bcx, r.bcx.build.Store(src, dst));

1799 1800
    } else if (ty.type_is_structural(t) ||
               ty.type_has_dynamic_size(t)) {
1801
        auto r = incr_all_refcnts(cx, src, t);
1802
        if (action == DROP_EXISTING) {
1803 1804
            r = drop_ty(r.bcx, dst, t);
        }
1805
        ret memcpy_ty(r.bcx, dst, src, t);
1806 1807 1808
    }

    cx.fcx.ccx.sess.bug("unexpected type in trans.copy_ty: " +
1809
                        ty.ty_to_str(t));
1810 1811 1812
    fail;
}

1813
fn trans_lit(@crate_ctxt cx, &ast.lit lit, &ast.ann ann) -> ValueRef {
1814
    alt (lit.node) {
1815
        case (ast.lit_int(?i)) {
1816
            ret C_int(i);
1817 1818
        }
        case (ast.lit_uint(?u)) {
1819
            ret C_int(u as int);
1820
        }
1821 1822 1823 1824 1825 1826
        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) {
G
Graydon Hoare 已提交
1827 1828 1829 1830 1831 1832 1833 1834 1835
                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(); }
1836
            }
1837
            ret C_integral(i, t);
1838
        }
1839
        case (ast.lit_char(?c)) {
1840
            ret C_integral(c as int, T_char());
1841 1842
        }
        case (ast.lit_bool(?b)) {
1843
            ret C_bool(b);
1844 1845
        }
        case (ast.lit_nil) {
1846
            ret C_nil();
1847 1848
        }
        case (ast.lit_str(?s)) {
1849
            ret C_str(cx, s);
1850 1851 1852 1853
        }
    }
}

1854
fn target_type(@crate_ctxt cx, @ty.t t) -> @ty.t {
1855
    alt (t.struct) {
1856 1857
        case (ty.ty_int) {
            auto tm = ty.ty_machine(cx.sess.get_targ_cfg().int_type);
1858 1859
            ret @rec(struct=tm with *t);
        }
1860 1861
        case (ty.ty_uint) {
            auto tm = ty.ty_machine(cx.sess.get_targ_cfg().uint_type);
1862 1863
            ret @rec(struct=tm with *t);
        }
1864
        case (_) { /* fall through */ }
1865 1866 1867 1868
    }
    ret t;
}

1869
fn node_ann_type(@crate_ctxt cx, &ast.ann a) -> @ty.t {
1870 1871
    alt (a) {
        case (ast.ann_none) {
1872
            cx.sess.bug("missing type annotation");
1873 1874
        }
        case (ast.ann_type(?t)) {
1875
            ret target_type(cx, t);
1876 1877 1878 1879
        }
    }
}

1880 1881 1882 1883
fn node_type(@crate_ctxt cx, &ast.ann a) -> TypeRef {
    ret type_of(cx, node_ann_type(cx, a));
}

1884 1885
fn trans_unary(@block_ctxt cx, ast.unop op,
               @ast.expr e, &ast.ann a) -> result {
1886 1887 1888

    auto sub = trans_expr(cx, e);

1889 1890
    alt (op) {
        case (ast.bitnot) {
1891
            sub = autoderef(sub.bcx, sub.val, ty.expr_ty(e));
1892
            ret res(sub.bcx, cx.build.Not(sub.val));
1893 1894
        }
        case (ast.not) {
1895
            sub = autoderef(sub.bcx, sub.val, ty.expr_ty(e));
1896
            ret res(sub.bcx, cx.build.Not(sub.val));
1897 1898
        }
        case (ast.neg) {
1899
            sub = autoderef(sub.bcx, sub.val, ty.expr_ty(e));
1900
            ret res(sub.bcx, cx.build.Neg(sub.val));
1901
        }
1902
        case (ast.box) {
1903
            auto e_ty = ty.expr_ty(e);
1904 1905 1906 1907
            auto e_val = sub.val;
            sub = trans_malloc(sub.bcx, node_ann_type(sub.bcx.fcx.ccx, a));
            auto box = sub.val;
            auto rc = sub.bcx.build.GEP(box,
1908 1909
                                        vec(C_int(0),
                                            C_int(abi.box_rc_field_refcnt)));
1910 1911 1912 1913
            auto body = sub.bcx.build.GEP(box,
                                          vec(C_int(0),
                                              C_int(abi.box_rc_field_body)));
            sub.bcx.build.Store(C_int(1), rc);
1914
            sub = copy_ty(sub.bcx, INIT, body, e_val, e_ty);
1915
            ret res(sub.bcx, box);
1916
        }
1917
        case (ast.deref) {
1918 1919 1920
            auto val = sub.bcx.build.GEP(sub.val,
                                         vec(C_int(0),
                                             C_int(abi.box_rc_field_body)));
1921
            auto e_ty = node_ann_type(sub.bcx.fcx.ccx, a);
1922 1923
            if (ty.type_is_scalar(e_ty) ||
                ty.type_is_nil(e_ty)) {
1924
                val = sub.bcx.build.Load(val);
1925
            }
1926
            ret res(sub.bcx, val);
1927
        }
G
Graydon Hoare 已提交
1928 1929 1930
        case (ast._mutable) {
            ret trans_expr(cx, e);
        }
1931 1932 1933 1934
    }
    fail;
}

1935 1936
// FIXME: implement proper structural comparison.

1937
fn trans_compare(@block_ctxt cx, ast.binop op, @ty.t intype,
1938 1939 1940 1941 1942 1943
                 ValueRef lhs, ValueRef rhs) -> ValueRef {
    auto cmp = lib.llvm.LLVMIntEQ;
    alt (op) {
        case (ast.eq) { cmp = lib.llvm.LLVMIntEQ; }
        case (ast.ne) { cmp = lib.llvm.LLVMIntNE; }

1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971
        case (ast.lt) {
            if (ty.type_is_signed(intype)) {
                cmp = lib.llvm.LLVMIntSLT;
            } else {
                cmp = lib.llvm.LLVMIntULT;
            }
        }
        case (ast.le) {
            if (ty.type_is_signed(intype)) {
                cmp = lib.llvm.LLVMIntSLE;
            } else {
                cmp = lib.llvm.LLVMIntULE;
            }
        }
        case (ast.gt) {
            if (ty.type_is_signed(intype)) {
                cmp = lib.llvm.LLVMIntSGT;
            } else {
                cmp = lib.llvm.LLVMIntUGT;
            }
        }
        case (ast.ge) {
            if (ty.type_is_signed(intype)) {
                cmp = lib.llvm.LLVMIntSGE;
            } else {
                cmp = lib.llvm.LLVMIntUGE;
            }
        }
1972 1973 1974 1975
    }
    ret cx.build.ICmp(cmp, lhs, rhs);
}

1976
fn trans_eager_binop(@block_ctxt cx, ast.binop op, @ty.t intype,
1977 1978 1979 1980 1981 1982 1983
                     ValueRef lhs, ValueRef rhs) -> ValueRef {

    alt (op) {
        case (ast.add) { ret cx.build.Add(lhs, rhs); }
        case (ast.sub) { ret cx.build.Sub(lhs, rhs); }

        case (ast.mul) { ret cx.build.Mul(lhs, rhs); }
1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997
        case (ast.div) {
            if (ty.type_is_signed(intype)) {
                ret cx.build.SDiv(lhs, rhs);
            } else {
                ret cx.build.UDiv(lhs, rhs);
            }
        }
        case (ast.rem) {
            if (ty.type_is_signed(intype)) {
                ret cx.build.SRem(lhs, rhs);
            } else {
                ret cx.build.URem(lhs, rhs);
            }
        }
1998 1999 2000 2001 2002 2003 2004 2005

        case (ast.bitor) { ret cx.build.Or(lhs, rhs); }
        case (ast.bitand) { ret cx.build.And(lhs, rhs); }
        case (ast.bitxor) { ret cx.build.Xor(lhs, rhs); }
        case (ast.lsl) { ret cx.build.Shl(lhs, rhs); }
        case (ast.lsr) { ret cx.build.LShr(lhs, rhs); }
        case (ast.asr) { ret cx.build.AShr(lhs, rhs); }
        case (_) {
2006
            ret trans_compare(cx, op, intype, lhs, rhs);
2007 2008 2009 2010 2011
        }
    }
    fail;
}

2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031
fn autoderef(@block_ctxt cx, ValueRef v, @ty.t t) -> result {
    let ValueRef v1 = v;
    let @ty.t t1 = t;

    while (true) {
        alt (t1.struct) {
            case (ty.ty_box(?inner)) {
                auto body = cx.build.GEP(v1,
                                         vec(C_int(0),
                                             C_int(abi.box_rc_field_body)));
                t1 = inner;
                v1 = load_scalar_or_boxed(cx, body, inner);
            }
            case (_) {
                ret res(cx, v1);
            }
        }
    }
}

2032 2033
fn trans_binary(@block_ctxt cx, ast.binop op,
                @ast.expr a, @ast.expr b) -> result {
2034

2035 2036 2037 2038 2039 2040
    // First couple cases are lazy:

    alt (op) {
        case (ast.and) {
            // Lazy-eval and
            auto lhs_res = trans_expr(cx, a);
2041
            lhs_res = autoderef(lhs_res.bcx, lhs_res.val, ty.expr_ty(a));
2042

2043
            auto rhs_cx = new_scope_block_ctxt(cx, "rhs");
2044
            auto rhs_res = trans_expr(rhs_cx, b);
2045
            rhs_res = autoderef(rhs_res.bcx, rhs_res.val, ty.expr_ty(b));
2046

2047
            auto lhs_false_cx = new_scope_block_ctxt(cx, "lhs false");
2048
            auto lhs_false_res = res(lhs_false_cx, C_bool(false));
2049 2050 2051

            lhs_res.bcx.build.CondBr(lhs_res.val,
                                     rhs_cx.llbb,
2052 2053 2054 2055
                                     lhs_false_cx.llbb);

            ret join_results(cx, T_bool(),
                             vec(lhs_false_res, rhs_res));
2056 2057 2058 2059 2060
        }

        case (ast.or) {
            // Lazy-eval or
            auto lhs_res = trans_expr(cx, a);
2061
            lhs_res = autoderef(lhs_res.bcx, lhs_res.val, ty.expr_ty(a));
2062

2063
            auto rhs_cx = new_scope_block_ctxt(cx, "rhs");
2064
            auto rhs_res = trans_expr(rhs_cx, b);
2065
            rhs_res = autoderef(rhs_res.bcx, rhs_res.val, ty.expr_ty(b));
2066

2067
            auto lhs_true_cx = new_scope_block_ctxt(cx, "lhs true");
2068
            auto lhs_true_res = res(lhs_true_cx, C_bool(true));
2069 2070

            lhs_res.bcx.build.CondBr(lhs_res.val,
2071
                                     lhs_true_cx.llbb,
2072
                                     rhs_cx.llbb);
2073 2074 2075

            ret join_results(cx, T_bool(),
                             vec(lhs_true_res, rhs_res));
2076
        }
2077 2078

        case (_) {
2079 2080
            // Remaining cases are eager:
            auto lhs = trans_expr(cx, a);
2081 2082
            auto lhty = ty.expr_ty(a);
            lhs = autoderef(lhs.bcx, lhs.val, lhty);
2083
            auto rhs = trans_expr(lhs.bcx, b);
2084 2085 2086
            auto rhty = ty.expr_ty(b);
            rhs = autoderef(rhs.bcx, rhs.val, rhty);
            ret res(rhs.bcx, trans_eager_binop(rhs.bcx, op, lhty,
2087
                                               lhs.val, rhs.val));
2088
        }
2089 2090 2091 2092
    }
    fail;
}

2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123
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);
        }
2124 2125

        case (_) { /* fall through */ }
2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136
    }

    // 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);
}

G
Graydon Hoare 已提交
2137 2138 2139
fn trans_if(@block_ctxt cx, @ast.expr cond, &ast.block thn,
            &vec[tup(@ast.expr, ast.block)] elifs,
            &option.t[ast.block] els) -> result {
2140 2141 2142

    auto cond_res = trans_expr(cx, cond);

2143
    auto then_cx = new_scope_block_ctxt(cx, "then");
2144 2145
    auto then_res = trans_block(then_cx, thn);

2146
    auto else_cx = new_scope_block_ctxt(cx, "else");
2147
    auto else_res = res(else_cx, C_nil());
2148

G
Graydon Hoare 已提交
2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166
    auto num_elifs = _vec.len[tup(@ast.expr, ast.block)](elifs);
    if (num_elifs > 0u) {
        auto next_elif = elifs.(0u);
        auto next_elifthn = next_elif._0;
        auto next_elifcnd = next_elif._1;
        auto rest_elifs = _vec.shift[tup(@ast.expr, ast.block)](elifs);
        else_res = trans_if(else_cx, next_elifthn, next_elifcnd,
                            rest_elifs, els);
    }

    /* else: FIXME: rustboot has a problem here
       with preconditions inside an else block */
    if (num_elifs == 0u)  {
        alt (els) {
            case (some[ast.block](?eblk)) {
                else_res = trans_block(else_cx, eblk);
            }
            case (_) { /* fall through */ }
2167 2168 2169
        }
    }

2170
    cond_res.bcx.build.CondBr(cond_res.val,
2171 2172
                              then_cx.llbb,
                              else_cx.llbb);
2173 2174 2175 2176

    // FIXME: use inferred type when available.
    ret join_results(cx, T_nil(),
                     vec(then_res, else_res));
2177 2178
}

G
Graydon Hoare 已提交
2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192
fn trans_for(@block_ctxt cx,
             @ast.decl decl,
             @ast.expr seq,
             &ast.block body) -> result {

    fn inner(@block_ctxt cx,
             @ast.local local, ValueRef curr,
             @ty.t t, ast.block body) -> result {

        auto scope_cx = new_scope_block_ctxt(cx, "for loop scope");
        auto next_cx = new_sub_block_ctxt(cx, "next");

        cx.build.Br(scope_cx.llbb);
        auto local_res = alloc_local(scope_cx, local);
2193
        auto bcx = copy_ty(local_res.bcx, INIT, local_res.val, curr, t).bcx;
2194
        scope_cx.cleanups += clean(bind drop_slot(_, local_res.val, t));
2195
        bcx = trans_block(bcx, body).bcx;
G
Graydon Hoare 已提交
2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213
        bcx.build.Br(next_cx.llbb);
        ret res(next_cx, C_nil());
    }


    let @ast.local local;
    alt (decl.node) {
        case (ast.decl_local(?loc)) {
            local = loc;
        }
    }

    auto seq_ty = ty.expr_ty(seq);
    auto seq_res = trans_expr(cx, seq);
    ret iter_sequence(seq_res.bcx, seq_res.val, seq_ty,
                      bind inner(_, local, _, _, body));
}

2214 2215 2216 2217
fn trans_for_each(@block_ctxt cx,
                  @ast.decl decl,
                  @ast.expr seq,
                  &ast.block body) -> result {
2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244

    /*
     * The translation is a little .. complex here. Code like:
     *
     *    let ty1 p = ...;
     *
     *    let ty1 q = ...;
     *
     *    foreach (ty v in foo(a,b)) { body(p,q,v) }
     *
     *
     * Turns into a something like so (C/Rust mishmash):
     *
     *    type env = { *ty1 p, *ty2 q, ... };
     *
     *    let env e = { &p, &q, ... };
     *
     *    fn foreach123_body(env* e, ty v) { body(*(e->p),*(e->q),v) }
     *
     *    foo([foreach123_body, env*], a, b);
     *
     */

    // Step 1: walk body and figure out which references it makes
    // escape. This could be determined upstream, and probably ought
    // to be so, eventualy. For first cut, skip this. Null env.

2245
    auto env_ty = T_opaque_closure_ptr(cx.fcx.ccx.tn);
2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267


    // Step 2: Declare foreach body function.

    // FIXME: possibly support alias-mode here?
    auto decl_ty = plain_ty(ty.ty_nil);
    alt (decl.node) {
        case (ast.decl_local(?local)) {
            decl_ty = node_ann_type(cx.fcx.ccx, local.ann);
        }
    }

    let str s =
        cx.fcx.ccx.names.next("_rust_foreach")
        + sep() + cx.fcx.ccx.path;

    // The 'env' arg entering the body function is a fake env member (as in
    // the env-part of the normal rust calling convention) that actually
    // points to a stack allocated env in this frame. We bundle that env
    // pointer along with the foreach-body-fn pointer into a 'normal' fn pair
    // and pass it in as a first class fn-arg to the iterator.

2268 2269 2270 2271
    auto iter_body_llty = type_of_fn_full(cx.fcx.ccx, ast.proto_fn,
                                          none[TypeRef],
                                          vec(rec(mode=ast.val, ty=decl_ty)),
                                          plain_ty(ty.ty_nil));
2272

2273 2274
    let ValueRef lliterbody = decl_fastcall_fn(cx.fcx.ccx.llmod,
                                               s, iter_body_llty);
2275 2276 2277 2278

    // FIXME: handle ty params properly.
    let vec[ast.ty_param] ty_params = vec();

2279
    auto fcx = new_fn_ctxt(cx.fcx.ccx, s, lliterbody);
2280 2281 2282 2283 2284 2285 2286
    auto bcx = new_top_block_ctxt(fcx);

    // FIXME: populate lllocals from llenv here.
    auto res = trans_block(bcx, body);
    res.bcx.build.RetVoid();


2287
    // Step 3: Call iter passing [lliterbody, llenv], plus other args.
2288 2289

    alt (seq.node) {
2290

2291
        case (ast.expr_call(?f, ?args, ?ann)) {
2292

2293 2294 2295 2296 2297 2298 2299
            auto pair = cx.build.Alloca(T_fn_pair(cx.fcx.ccx.tn,
                                                  iter_body_llty));
            auto code_cell = cx.build.GEP(pair,
                                          vec(C_int(0),
                                              C_int(abi.fn_field_code)));
            cx.build.Store(lliterbody, code_cell);

2300 2301
            // log "lliterbody: " + val_str(cx.fcx.ccx.tn, lliterbody);
            ret trans_call(cx, f,
2302
                           some[ValueRef](cx.build.Load(pair)),
2303 2304
                           args,
                           ann);
2305 2306
        }
    }
2307 2308 2309 2310
    fail;
}


2311 2312
fn trans_while(@block_ctxt cx, @ast.expr cond,
               &ast.block body) -> result {
2313

2314 2315
    auto cond_cx = new_scope_block_ctxt(cx, "while cond");
    auto body_cx = new_scope_block_ctxt(cx, "while loop body");
2316
    auto next_cx = new_sub_block_ctxt(cx, "next");
2317 2318

    auto body_res = trans_block(body_cx, body);
2319 2320 2321 2322 2323 2324 2325 2326
    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);
2327 2328 2329
    ret res(next_cx, C_nil());
}

2330 2331
fn trans_do_while(@block_ctxt cx, &ast.block body,
                  @ast.expr cond) -> result {
2332

2333
    auto body_cx = new_scope_block_ctxt(cx, "do-while loop body");
2334
    auto next_cx = new_sub_block_ctxt(cx, "next");
2335 2336

    auto body_res = trans_block(body_cx, body);
2337 2338 2339 2340 2341 2342
    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);
2343 2344 2345
    ret res(next_cx, body_res.val);
}

P
Patrick Walton 已提交
2346 2347 2348 2349 2350
// Pattern matching translation

// Returns a pointer to the union part of the LLVM representation of a tag
// type, cast to the appropriate type.
fn get_pat_union_ptr(@block_ctxt cx, vec[@ast.pat] subpats, ValueRef llval)
G
Graydon Hoare 已提交
2351
    -> ValueRef {
P
Patrick Walton 已提交
2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364
    auto llblobptr = cx.build.GEP(llval, vec(C_int(0), C_int(1)));

    // Generate the union type.
    let vec[TypeRef] llsubpattys = vec();
    for (@ast.pat subpat in subpats) {
        llsubpattys += vec(type_of(cx.fcx.ccx, pat_ty(subpat)));
    }

    // Recursively check subpatterns.
    auto llunionty = T_struct(llsubpattys);
    ret cx.build.TruncOrBitCast(llblobptr, T_ptr(llunionty));
}

2365 2366
fn trans_pat_match(@block_ctxt cx, @ast.pat pat, ValueRef llval,
                   @block_ctxt next_cx) -> result {
P
Patrick Walton 已提交
2367 2368 2369
    alt (pat.node) {
        case (ast.pat_wild(_)) { ret res(cx, llval); }
        case (ast.pat_bind(_, _, _)) { ret res(cx, llval); }
2370 2371 2372

        case (ast.pat_lit(?lt, ?ann)) {
            auto lllit = trans_lit(cx.fcx.ccx, *lt, ann);
2373 2374
            auto lltype = ty.ann_to_type(ann);
            auto lleq = trans_compare(cx, ast.eq, lltype, llval, lllit);
2375 2376 2377 2378 2379 2380

            auto matched_cx = new_sub_block_ctxt(cx, "matched_cx");
            cx.build.CondBr(lleq, matched_cx.llbb, next_cx.llbb);
            ret res(matched_cx, llval);
        }

P
Patrick Walton 已提交
2381 2382 2383
        case (ast.pat_tag(?id, ?subpats, ?vdef_opt, ?ann)) {
            auto lltagptr = cx.build.GEP(llval, vec(C_int(0), C_int(0)));
            auto lltag = cx.build.Load(lltagptr);
2384

P
Patrick Walton 已提交
2385 2386 2387 2388 2389 2390 2391 2392
            auto vdef = option.get[ast.variant_def](vdef_opt);
            auto variant_id = vdef._1;
            auto tinfo = cx.fcx.ccx.tags.get(vdef._0);
            auto variant_tag = 0;
            auto i = 0;
            for (tup(ast.def_id,arity) vinfo in tinfo.variants) {
                auto this_variant_id = vinfo._0;
                if (variant_id._0 == this_variant_id._0 &&
G
Graydon Hoare 已提交
2393
                    variant_id._1 == this_variant_id._1) {
P
Patrick Walton 已提交
2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412
                    variant_tag = i;
                }
                i += 1;
            }

            auto matched_cx = new_sub_block_ctxt(cx, "matched_cx");

            auto lleq = cx.build.ICmp(lib.llvm.LLVMIntEQ, lltag,
                                      C_int(variant_tag));
            cx.build.CondBr(lleq, matched_cx.llbb, next_cx.llbb);

            if (_vec.len[@ast.pat](subpats) > 0u) {
                auto llunionptr = get_pat_union_ptr(matched_cx, subpats,
                                                    llval);
                auto i = 0;
                for (@ast.pat subpat in subpats) {
                    auto llsubvalptr = matched_cx.build.GEP(llunionptr,
                                                            vec(C_int(0),
                                                                C_int(i)));
2413
                    auto llsubval = load_scalar_or_boxed(matched_cx,
G
Graydon Hoare 已提交
2414 2415
                                                         llsubvalptr,
                                                         pat_ty(subpat));
P
Patrick Walton 已提交
2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428
                    auto subpat_res = trans_pat_match(matched_cx, subpat,
                                                      llsubval, next_cx);
                    matched_cx = subpat_res.bcx;
                }
            }

            ret res(matched_cx, llval);
        }
    }

    fail;
}

2429 2430
fn trans_pat_binding(@block_ctxt cx, @ast.pat pat, ValueRef llval)
    -> result {
P
Patrick Walton 已提交
2431 2432
    alt (pat.node) {
        case (ast.pat_wild(_)) { ret res(cx, llval); }
2433
        case (ast.pat_lit(_, _)) { ret res(cx, llval); }
P
Patrick Walton 已提交
2434 2435 2436 2437 2438 2439 2440 2441 2442
        case (ast.pat_bind(?id, ?def_id, ?ann)) {
            auto ty = node_ann_type(cx.fcx.ccx, ann);
            auto llty = type_of(cx.fcx.ccx, ty);

            auto dst = cx.build.Alloca(llty);
            llvm.LLVMSetValueName(dst, _str.buf(id));
            cx.fcx.lllocals.insert(def_id, dst);
            cx.cleanups += clean(bind drop_slot(_, dst, ty));

2443
            ret copy_ty(cx, INIT, dst, llval, ty);
P
Patrick Walton 已提交
2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454
        }
        case (ast.pat_tag(_, ?subpats, _, _)) {
            if (_vec.len[@ast.pat](subpats) == 0u) { ret res(cx, llval); }

            auto llunionptr = get_pat_union_ptr(cx, subpats, llval);

            auto this_cx = cx;
            auto i = 0;
            for (@ast.pat subpat in subpats) {
                auto llsubvalptr = this_cx.build.GEP(llunionptr,
                                                     vec(C_int(0), C_int(i)));
2455
                auto llsubval = load_scalar_or_boxed(this_cx, llsubvalptr,
G
Graydon Hoare 已提交
2456
                                                     pat_ty(subpat));
P
Patrick Walton 已提交
2457 2458 2459
                auto subpat_res = trans_pat_binding(this_cx, subpat,
                                                    llsubval);
                this_cx = subpat_res.bcx;
2460
                i += 1;
P
Patrick Walton 已提交
2461 2462 2463 2464 2465 2466 2467
            }

            ret res(this_cx, llval);
        }
    }
}

2468 2469
fn trans_alt(@block_ctxt cx, @ast.expr expr, vec[ast.arm] arms)
    -> result {
P
Patrick Walton 已提交
2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502
    auto expr_res = trans_expr(cx, expr);

    auto last_cx = new_sub_block_ctxt(expr_res.bcx, "last");

    auto this_cx = expr_res.bcx;
    for (ast.arm arm in arms) {
        auto next_cx = new_sub_block_ctxt(expr_res.bcx, "next");
        auto match_res = trans_pat_match(this_cx, arm.pat, expr_res.val,
                                         next_cx);

        auto binding_cx = new_scope_block_ctxt(match_res.bcx, "binding");
        match_res.bcx.build.Br(binding_cx.llbb);

        auto binding_res = trans_pat_binding(binding_cx, arm.pat,
                                             expr_res.val);

        auto block_res = trans_block(binding_res.bcx, arm.block);
        if (!is_terminated(block_res.bcx)) {
            block_res.bcx.build.Br(last_cx.llbb);
        }

        this_cx = next_cx;
    }

    // FIXME: This is executed when none of the patterns match; it should fail
    // instead!
    this_cx.build.Br(last_cx.llbb);

    // FIXME: This is very wrong; we should phi together all the arm blocks,
    // since this is an expression.
    ret res(last_cx, C_nil());
}

2503
type generic_info = rec(@ty.t item_type,
2504 2505
                        vec[ValueRef] tydescs);

2506 2507
type lval_result = rec(result res,
                       bool is_mem,
2508
                       option.t[generic_info] generic,
2509 2510 2511 2512 2513
                       option.t[ValueRef] llobj);

fn lval_mem(@block_ctxt cx, ValueRef val) -> lval_result {
    ret rec(res=res(cx, val),
            is_mem=true,
2514
            generic=none[generic_info],
2515 2516 2517 2518 2519 2520
            llobj=none[ValueRef]);
}

fn lval_val(@block_ctxt cx, ValueRef val) -> lval_result {
    ret rec(res=res(cx, val),
            is_mem=false,
2521
            generic=none[generic_info],
2522 2523
            llobj=none[ValueRef]);
}
2524

2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552
fn lval_generic_fn(@block_ctxt cx,
                   ty.ty_params_and_ty tpt,
                   ast.def_id fn_id,
                   &ast.ann ann)
    -> lval_result {

    check (cx.fcx.ccx.fn_pairs.contains_key(fn_id));
    auto lv = lval_val(cx, cx.fcx.ccx.fn_pairs.get(fn_id));
    auto monoty = node_ann_type(cx.fcx.ccx, ann);
    auto tys = ty.resolve_ty_params(tpt, monoty);

    if (_vec.len[@ty.t](tys) != 0u) {
        auto bcx = cx;
        let vec[ValueRef] tydescs = vec();
        for (@ty.t t in tys) {
            auto td = get_tydesc(bcx, t);
            bcx = td.bcx;
            append[ValueRef](tydescs, td.val);
        }
        auto gen = rec( item_type = tpt._1,
                        tydescs = tydescs );
        lv = rec(res = res(bcx, lv.res.val),
                 generic = some[generic_info](gen)
                 with lv);
    }
    ret lv;
}

2553
fn trans_path(@block_ctxt cx, &ast.path p, &option.t[ast.def] dopt,
G
Graydon Hoare 已提交
2554
              &ast.ann ann) -> lval_result {
2555 2556 2557 2558 2559
    alt (dopt) {
        case (some[ast.def](?def)) {
            alt (def) {
                case (ast.def_arg(?did)) {
                    check (cx.fcx.llargs.contains_key(did));
2560
                    ret lval_mem(cx, cx.fcx.llargs.get(did));
2561 2562 2563
                }
                case (ast.def_local(?did)) {
                    check (cx.fcx.lllocals.contains_key(did));
2564
                    ret lval_mem(cx, cx.fcx.lllocals.get(did));
G
Graydon Hoare 已提交
2565
                }
P
Patrick Walton 已提交
2566 2567
                case (ast.def_binding(?did)) {
                    check (cx.fcx.lllocals.contains_key(did));
2568
                    ret lval_mem(cx, cx.fcx.lllocals.get(did));
P
Patrick Walton 已提交
2569
                }
2570 2571 2572 2573
                case (ast.def_obj_field(?did)) {
                    check (cx.fcx.llobjfields.contains_key(did));
                    ret lval_mem(cx, cx.fcx.llobjfields.get(did));
                }
2574
                case (ast.def_fn(?did)) {
2575
                    check (cx.fcx.ccx.items.contains_key(did));
2576
                    auto fn_item = cx.fcx.ccx.items.get(did);
2577
                    ret lval_generic_fn(cx, ty.item_ty(fn_item), did, ann);
2578
                }
2579
                case (ast.def_obj(?did)) {
2580 2581 2582
                    check (cx.fcx.ccx.items.contains_key(did));
                    auto fn_item = cx.fcx.ccx.items.get(did);
                    ret lval_generic_fn(cx, ty.item_ty(fn_item), did, ann);
2583
                }
2584 2585
                case (ast.def_variant(?tid, ?vid)) {
                    check (cx.fcx.ccx.tags.contains_key(tid));
2586
                    if (cx.fcx.ccx.fn_pairs.contains_key(vid)) {
2587 2588 2589
                        check (cx.fcx.ccx.items.contains_key(tid));
                        auto tag_item = cx.fcx.ccx.items.get(tid);
                        auto params = ty.item_ty(tag_item)._0;
2590
                        auto fty = plain_ty(ty.ty_nil);
2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601
                        alt (tag_item.node) {
                            case (ast.item_tag(_, ?variants, _, _)) {
                                for (ast.variant v in variants) {
                                    if (v.id == vid) {
                                        fty = node_ann_type(cx.fcx.ccx,
                                                            v.ann);
                                    }
                                }
                            }
                        }
                        ret lval_generic_fn(cx, tup(params, fty), vid, ann);
2602 2603 2604 2605 2606
                    } else {
                        // Nullary variants are just scalar constants.
                        check (cx.fcx.ccx.item_ids.contains_key(vid));
                        ret lval_val(cx, cx.fcx.ccx.item_ids.get(vid));
                    }
2607
                }
2608 2609 2610 2611
                case (ast.def_const(?did)) {
                    check (cx.fcx.ccx.consts.contains_key(did));
                    ret lval_mem(cx, cx.fcx.ccx.consts.get(did));
                }
2612 2613 2614 2615 2616 2617
                case (ast.def_native_fn(?did)) {
                    check (cx.fcx.ccx.native_items.contains_key(did));
                    auto fn_item = cx.fcx.ccx.native_items.get(did);
                    ret lval_generic_fn(cx, ty.native_item_ty(fn_item),
                                        did, ann);
                }
2618 2619
                case (_) {
                    cx.fcx.ccx.sess.unimpl("def variant in trans");
G
Graydon Hoare 已提交
2620 2621 2622
                }
            }
        }
2623
        case (none[ast.def]) {
2624
            cx.fcx.ccx.sess.err("unresolved expr_path in trans");
2625 2626 2627 2628 2629
        }
    }
    fail;
}

2630 2631
fn trans_field(@block_ctxt cx, &ast.span sp, @ast.expr base,
               &ast.ident field, &ast.ann ann) -> lval_result {
2632
    auto r = trans_expr(cx, base);
2633
    r = autoderef(r.bcx, r.val, ty.expr_ty(base));
2634 2635 2636 2637
    auto t = ty.expr_ty(base);
    alt (t.struct) {
        case (ty.ty_tup(?fields)) {
            let uint ix = ty.field_num(cx.fcx.ccx.sess, sp, field);
2638
            auto v = GEP_tup_like(r.bcx, t, r.val, vec(0, ix as int));
2639
            ret lval_mem(v.bcx, v.val);
2640
        }
2641 2642
        case (ty.ty_rec(?fields)) {
            let uint ix = ty.field_idx(cx.fcx.ccx.sess, sp, field, fields);
2643
            auto v = GEP_tup_like(r.bcx, t, r.val, vec(0, ix as int));
2644
            ret lval_mem(v.bcx, v.val);
2645
        }
2646 2647
        case (ty.ty_obj(?methods)) {
            let uint ix = ty.method_idx(cx.fcx.ccx.sess, sp, field, methods);
2648 2649 2650 2651 2652 2653
            auto vtbl = r.bcx.build.GEP(r.val,
                                        vec(C_int(0),
                                            C_int(abi.obj_field_vtbl)));
            vtbl = r.bcx.build.Load(vtbl);
            auto v =  r.bcx.build.GEP(vtbl, vec(C_int(0),
                                                C_int(ix as int)));
2654 2655 2656

            auto lvo = lval_mem(r.bcx, v);
            ret rec(llobj = some[ValueRef](r.val) with lvo);
2657
        }
2658
        case (_) { cx.fcx.ccx.sess.unimpl("field variant in trans_field"); }
2659 2660 2661 2662
    }
    fail;
}

2663 2664
fn trans_index(@block_ctxt cx, &ast.span sp, @ast.expr base,
               @ast.expr idx, &ast.ann ann) -> lval_result {
2665

G
Graydon Hoare 已提交
2666
    auto lv = trans_expr(cx, base);
2667
    lv = autoderef(lv.bcx, lv.val, ty.expr_ty(base));
G
Graydon Hoare 已提交
2668 2669
    auto ix = trans_expr(lv.bcx, idx);
    auto v = lv.val;
2670
    auto bcx = ix.bcx;
2671 2672

    auto llunit_ty = node_type(cx.fcx.ccx, ann);
2673 2674 2675
    auto unit_sz = size_of(bcx, node_ann_type(cx.fcx.ccx, ann));
    bcx = unit_sz.bcx;
    auto scaled_ix = bcx.build.Mul(ix.val, unit_sz.val);
2676

2677 2678
    auto lim = bcx.build.GEP(v, vec(C_int(0), C_int(abi.vec_elt_fill)));
    lim = bcx.build.Load(lim);
2679

2680 2681
    auto bounds_check = bcx.build.ICmp(lib.llvm.LLVMIntULT,
                                       scaled_ix, lim);
2682

2683 2684 2685
    auto fail_cx = new_sub_block_ctxt(bcx, "fail");
    auto next_cx = new_sub_block_ctxt(bcx, "next");
    bcx.build.CondBr(bounds_check, next_cx.llbb, fail_cx.llbb);
2686 2687

    // fail: bad bounds check.
B
Brian Anderson 已提交
2688
    auto fail_res = trans_fail(fail_cx, sp, "bounds check");
2689 2690 2691 2692
    fail_res.bcx.build.Br(next_cx.llbb);

    auto body = next_cx.build.GEP(v, vec(C_int(0), C_int(abi.vec_elt_data)));
    auto elt = next_cx.build.GEP(body, vec(C_int(0), ix.val));
2693
    ret lval_mem(next_cx, elt);
2694 2695
}

2696 2697 2698 2699
// The additional bool returned indicates whether it's mem (that is
// represented as an alloca or heap, hence needs a 'load' to be used as an
// immediate).

2700
fn trans_lval(@block_ctxt cx, @ast.expr e) -> lval_result {
2701
    alt (e.node) {
2702 2703
        case (ast.expr_path(?p, ?dopt, ?ann)) {
            ret trans_path(cx, p, dopt, ann);
2704 2705 2706 2707
        }
        case (ast.expr_field(?base, ?ident, ?ann)) {
            ret trans_field(cx, e.span, base, ident, ann);
        }
2708 2709 2710
        case (ast.expr_index(?base, ?idx, ?ann)) {
            ret trans_index(cx, e.span, base, idx, ann);
        }
2711
        case (_) { cx.fcx.ccx.sess.unimpl("expr variant in trans_lval"); }
G
Graydon Hoare 已提交
2712 2713 2714 2715
    }
    fail;
}

2716
fn trans_cast(@block_ctxt cx, @ast.expr e, &ast.ann ann) -> result {
2717 2718 2719 2720
    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);
2721
    if (!ty.type_is_fp(t)) {
2722 2723
        if (llvm.LLVMGetIntTypeWidth(lldsttype) >
            llvm.LLVMGetIntTypeWidth(llsrctype)) {
2724
            if (ty.type_is_signed(t)) {
2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746
                // 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;
}

2747 2748 2749 2750 2751
fn trans_bind_thunk(@crate_ctxt cx,
                    @ty.t incoming_fty,
                    @ty.t outgoing_fty,
                    vec[option.t[@ast.expr]] args,
                    TypeRef llclosure_ty,
2752 2753
                    vec[@ty.t] bound_tys,
                    uint ty_param_count) -> ValueRef {
2754 2755 2756
    // Construct a thunk-call with signature incoming_fty, and that copies
    // args forward into a call to outgoing_fty.

2757
    let str s = cx.names.next("_rust_thunk") + sep() + cx.path;
2758 2759 2760 2761 2762 2763
    let TypeRef llthunk_ty = get_pair_fn_ty(type_of(cx, incoming_fty));
    let ValueRef llthunk = decl_fastcall_fn(cx.llmod, s, llthunk_ty);

    auto fcx = new_fn_ctxt(cx, s, llthunk);
    auto bcx = new_top_block_ctxt(fcx);

2764
    auto llclosure = bcx.build.PointerCast(fcx.llenv, llclosure_ty);
2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781

    auto llbody = bcx.build.GEP(llclosure,
                                vec(C_int(0),
                                    C_int(abi.box_rc_field_body)));

    auto lltarget = bcx.build.GEP(llbody,
                                  vec(C_int(0),
                                      C_int(abi.closure_elt_target)));

    auto llbound = bcx.build.GEP(llbody,
                                 vec(C_int(0),
                                     C_int(abi.closure_elt_bindings)));

    auto lltargetclosure = bcx.build.GEP(lltarget,
                                         vec(C_int(0),
                                             C_int(abi.fn_field_box)));
    lltargetclosure = bcx.build.Load(lltargetclosure);
2782 2783 2784 2785 2786 2787 2788 2789 2790 2791

    auto outgoing_ret_ty = ty.ty_fn_ret(outgoing_fty);
    auto outgoing_arg_tys = ty.ty_fn_args(outgoing_fty);

    auto llretptr = fcx.llretptr;
    if (ty.type_has_dynamic_size(outgoing_ret_ty)) {
        llretptr = bcx.build.PointerCast(llretptr, T_typaram_ptr(cx.tn));
    }

    let vec[ValueRef] llargs = vec(llretptr,
2792
                                   fcx.lltaskptr,
2793
                                   lltargetclosure);
2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806

    // Copy in the type parameters.
    let uint i = 0u;
    while (i < ty_param_count) {
        auto lltyparam_ptr =
            bcx.build.GEP(llbody, vec(C_int(0),
                                      C_int(abi.closure_elt_ty_params),
                                      C_int(i as int)));
        llargs += vec(bcx.build.Load(lltyparam_ptr));
        i += 1u;
    }

    let uint a = 2u + i;    // retptr, task ptr, env come first
2807
    let int b = 0;
2808
    let uint outgoing_arg_index = 0u;
2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824
    for (option.t[@ast.expr] arg in args) {
        alt (arg) {

            // Arg provided at binding time; thunk copies it from closure.
            case (some[@ast.expr](_)) {
                let ValueRef bound_arg = bcx.build.GEP(llbound,
                                                       vec(C_int(0),
                                                           C_int(b)));
                // FIXME: possibly support passing aliases someday.
                llargs += bcx.build.Load(bound_arg);
                b += 1;
            }

            // Arg will be provided when the thunk is invoked.
            case (none[@ast.expr]) {
                let ValueRef passed_arg = llvm.LLVMGetParam(llthunk, a);
2825 2826 2827 2828 2829 2830 2831
                if (ty.type_has_dynamic_size(outgoing_arg_tys.
                        (outgoing_arg_index).ty)) {
                    // Cast to a generic typaram pointer in order to make a
                    // type-compatible call.
                    passed_arg = bcx.build.PointerCast(passed_arg,
                                                       T_typaram_ptr(cx.tn));
                }
2832 2833 2834 2835
                llargs += passed_arg;
                a += 1u;
            }
        }
2836 2837

        outgoing_arg_index += 0u;
2838 2839 2840 2841 2842 2843 2844
    }

    // FIXME: turn this call + ret into a tail call.
    auto lltargetfn = bcx.build.GEP(lltarget,
                                    vec(C_int(0),
                                        C_int(abi.fn_field_code)));
    lltargetfn = bcx.build.Load(lltargetfn);
2845

2846
    auto r = bcx.build.FastCall(lltargetfn, llargs);
2847
    bcx.build.RetVoid();
2848 2849 2850 2851

    ret llthunk;
}

2852 2853 2854
fn trans_bind(@block_ctxt cx, @ast.expr f,
              vec[option.t[@ast.expr]] args,
              &ast.ann ann) -> result {
2855 2856 2857 2858
    auto f_res = trans_lval(cx, f);
    if (f_res.is_mem) {
        cx.fcx.ccx.sess.unimpl("re-binding existing function");
    } else {
2859 2860
        let vec[@ast.expr] bound = vec();

2861 2862 2863 2864 2865
        for (option.t[@ast.expr] argopt in args) {
            alt (argopt) {
                case (none[@ast.expr]) {
                }
                case (some[@ast.expr](?e)) {
2866
                    append[@ast.expr](bound, e);
2867 2868 2869
                }
            }
        }
2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886

        // Figure out which tydescs we need to pass, if any.
        // FIXME: typestate botch
        let @ty.t outgoing_fty = ty.plain_ty(ty.ty_nil);
        let vec[ValueRef] lltydescs = vec();
        alt (f_res.generic) {
            case (none[generic_info]) {
                outgoing_fty = ty.expr_ty(f);
            }
            case (some[generic_info](?ginfo)) {
                outgoing_fty = ginfo.item_type;
                lltydescs = ginfo.tydescs;
            }
        }
        auto ty_param_count = _vec.len[ValueRef](lltydescs);

        if (_vec.len[@ast.expr](bound) == 0u && ty_param_count == 0u) {
2887 2888 2889 2890 2891 2892
            // Trivial 'binding': just return the static pair-ptr.
            ret f_res.res;
        } else {
            auto bcx = f_res.res.bcx;
            auto pair_t = node_type(cx.fcx.ccx, ann);
            auto pair_v = bcx.build.Alloca(pair_t);
2893 2894 2895 2896

            // Translate the bound expressions.
            let vec[@ty.t] bound_tys = vec();
            let vec[ValueRef] bound_vals = vec();
2897
            auto i = 0u;
2898 2899 2900
            for (@ast.expr e in bound) {
                auto arg = trans_expr(bcx, e);
                bcx = arg.bcx;
2901

2902 2903
                append[ValueRef](bound_vals, arg.val);
                append[@ty.t](bound_tys, ty.expr_ty(e));
2904 2905

                i += 1u;
2906 2907
            }

2908 2909 2910
            // Get the type of the bound function.
            let TypeRef lltarget_ty = type_of(bcx.fcx.ccx, outgoing_fty);

2911
            // Synthesize a closure type.
2912
            let @ty.t bindings_ty = plain_ty(ty.ty_tup(bound_tys));
2913
            let TypeRef llbindings_ty = type_of(bcx.fcx.ccx, bindings_ty);
2914 2915
            let TypeRef llclosure_ty = T_closure_ptr(cx.fcx.ccx.tn,
                                                     lltarget_ty,
2916 2917
                                                     llbindings_ty,
                                                     ty_param_count);
2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937

            // Malloc a box for the body.
            auto r = trans_malloc_inner(bcx, llclosure_ty);
            auto box = r.val;
            bcx = r.bcx;
            auto rc = bcx.build.GEP(box,
                                    vec(C_int(0),
                                        C_int(abi.box_rc_field_refcnt)));
            auto closure =
                bcx.build.GEP(box,
                              vec(C_int(0),
                                  C_int(abi.box_rc_field_body)));
            bcx.build.Store(C_int(1), rc);

            // Store bindings tydesc.
            auto bound_tydesc =
                bcx.build.GEP(closure,
                              vec(C_int(0),
                                  C_int(abi.closure_elt_tydesc)));
            auto bindings_tydesc = get_tydesc(bcx, bindings_ty);
2938 2939
            bcx = bindings_tydesc.bcx;
            bcx.build.Store(bindings_tydesc.val, bound_tydesc);
2940

2941 2942
            // Store thunk-target.
            auto bound_target =
2943 2944
                bcx.build.GEP(closure,
                              vec(C_int(0),
2945
                                  C_int(abi.closure_elt_target)));
2946 2947
            auto src = bcx.build.Load(f_res.res.val);
            bcx.build.Store(src, bound_target);
2948

2949
            // Copy expr values into boxed bindings.
2950
            i = 0u;
2951 2952 2953 2954
            auto bindings =
                bcx.build.GEP(closure,
                              vec(C_int(0),
                                  C_int(abi.closure_elt_bindings)));
2955 2956
            for (ValueRef v in bound_vals) {
                auto bound = bcx.build.GEP(bindings,
2957
                                           vec(C_int(0), C_int(i as int)));
2958
                bcx = copy_ty(r.bcx, INIT, bound, v, bound_tys.(i)).bcx;
2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979
                i += 1u;
            }

            // If necessary, copy tydescs describing type parameters into the
            // appropriate slot in the closure.
            alt (f_res.generic) {
                case (none[generic_info]) { /* nothing to do */ }
                case (some[generic_info](?ginfo)) {
                    auto ty_params_slot =
                        bcx.build.GEP(closure,
                                      vec(C_int(0),
                                          C_int(abi.closure_elt_ty_params)));
                    auto i = 0;
                    for (ValueRef td in ginfo.tydescs) {
                        auto ty_param_slot = bcx.build.GEP(ty_params_slot,
                                                           vec(C_int(0),
                                                               C_int(i)));
                        bcx.build.Store(td, ty_param_slot);
                        i += 1;
                    }
                }
2980 2981
            }

2982 2983 2984 2985
            // Make thunk and store thunk-ptr in outer pair's code slot.
            auto pair_code = bcx.build.GEP(pair_v,
                                           vec(C_int(0),
                                               C_int(abi.fn_field_code)));
2986 2987

            let @ty.t pair_ty = node_ann_type(cx.fcx.ccx, ann);
2988
            let ValueRef llthunk =
2989 2990 2991
                trans_bind_thunk(cx.fcx.ccx, pair_ty, outgoing_fty,
                                 args, llclosure_ty, bound_tys,
                                 ty_param_count);
2992 2993 2994 2995 2996 2997 2998

            bcx.build.Store(llthunk, pair_code);

            // Store box ptr in outer pair's box slot.
            auto pair_box = bcx.build.GEP(pair_v,
                                          vec(C_int(0),
                                              C_int(abi.fn_field_box)));
2999 3000 3001 3002 3003
            bcx.build.Store
                (bcx.build.PointerCast
                 (box,
                  T_opaque_closure_ptr(bcx.fcx.ccx.tn)),
                 pair_box);
3004

3005 3006 3007
            find_scope_cx(cx).cleanups +=
                clean(bind drop_slot(_, pair_v, pair_ty));

3008 3009
            ret res(bcx, pair_v);
        }
3010 3011 3012
    }
}

3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023
// NB: must keep 4 fns in sync:
//
//  - type_of_fn_full
//  - create_llargs_for_fn_args.
//  - new_fn_ctxt
//  - trans_args

fn trans_args(@block_ctxt cx,
              ValueRef llenv,
              option.t[ValueRef] llobj,
              option.t[generic_info] gen,
3024
              option.t[ValueRef] lliterbody,
3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036
              &vec[@ast.expr] es,
              @ty.t fn_ty)
    -> tup(@block_ctxt, vec[ValueRef], ValueRef) {

    let vec[ty.arg] args = ty.ty_fn_args(fn_ty);
    let vec[ValueRef] llargs = vec();
    let vec[ValueRef] lltydescs = vec();
    let @block_ctxt bcx = cx;


    // Arg 0: Output pointer.
    auto retty = ty.ty_fn_ret(fn_ty);
3037 3038 3039 3040
    auto llretslot_res = alloc_ty(bcx, retty);
    bcx = llretslot_res.bcx;
    auto llretslot = llretslot_res.val;

3041 3042 3043 3044 3045 3046 3047 3048 3049 3050
    alt (gen) {
        case (some[generic_info](?g)) {
            lltydescs = g.tydescs;
            args = ty.ty_fn_args(g.item_type);
            retty = ty.ty_fn_ret(g.item_type);
        }
        case (_) {
        }
    }
    if (ty.type_has_dynamic_size(retty)) {
3051 3052
        llargs += bcx.build.PointerCast(llretslot,
                                        T_typaram_ptr(cx.fcx.ccx.tn));
3053 3054 3055 3056 3057 3058 3059
    } else if (ty.count_ty_params(retty) != 0u) {
        // It's possible that the callee has some generic-ness somewhere in
        // its return value -- say a method signature within an obj or a fn
        // type deep in a structure -- which the caller has a concrete view
        // of. If so, cast the caller's view of the restlot to the callee's
        // view, for the sake of making a type-compatible call.
        llargs += cx.build.PointerCast(llretslot,
3060
                                       T_ptr(type_of(bcx.fcx.ccx, retty)));
3061 3062 3063 3064 3065 3066
    } else {
        llargs += llretslot;
    }


    // Arg 1: Task pointer.
3067
    llargs += bcx.fcx.lltaskptr;
3068 3069 3070 3071 3072 3073 3074

    // Arg 2: Env (closure-bindings / self-obj)
    alt (llobj) {
        case (some[ValueRef](?ob)) {
            // Every object is always found in memory,
            // and not-yet-loaded (as part of an lval x.y
            // doted method-call).
3075
            llargs += bcx.build.Load(ob);
3076 3077 3078 3079 3080 3081 3082 3083 3084
        }
        case (_) {
            llargs += llenv;
        }
    }

    // Args >3: ty_params ...
    llargs += lltydescs;

3085 3086 3087 3088 3089 3090 3091 3092
    // ... then possibly an lliterbody argument.
    alt (lliterbody) {
        case (none[ValueRef]) {}
        case (some[ValueRef](?lli)) {
            llargs += lli;
        }
    }

3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134
    // ... then explicit args.
    auto i = 0u;
    for (@ast.expr e in es) {
        auto mode = args.(i).mode;

        auto val;
        if (ty.type_is_structural(ty.expr_ty(e))) {
            auto re = trans_expr(bcx, e);
            val = re.val;
            bcx = re.bcx;
            if (mode == ast.val) {
                // Until here we've been treating structures by pointer;
                // we are now passing it as an arg, so need to load it.
                val = bcx.build.Load(val);
            }
        } else if (mode == ast.alias) {
            let lval_result lv;
            if (ty.is_lval(e)) {
                lv = trans_lval(bcx, e);
            } else {
                auto r = trans_expr(bcx, e);
                lv = lval_val(r.bcx, r.val);
            }
            bcx = lv.res.bcx;

            if (lv.is_mem) {
                val = lv.res.val;
            } else {
                // Non-mem but we're trying to alias; synthesize an
                // alloca, spill to it and pass its address.
                auto llty = val_ty(lv.res.val);
                auto llptr = lv.res.bcx.build.Alloca(llty);
                lv.res.bcx.build.Store(lv.res.val, llptr);
                val = llptr;
            }

        } else {
            auto re = trans_expr(bcx, e);
            val = re.val;
            bcx = re.bcx;
        }

3135 3136 3137
        if (ty.type_has_dynamic_size(args.(i).ty)) {
            val = bcx.build.PointerCast(val,
                                        T_typaram_ptr(cx.fcx.ccx.tn));
3138 3139 3140 3141 3142 3143 3144 3145 3146
        }

        llargs += val;
        i += 1u;
    }

    ret tup(bcx, llargs, llretslot);
}

3147
fn trans_call(@block_ctxt cx, @ast.expr f,
3148 3149 3150
              option.t[ValueRef] lliterbody,
              vec[@ast.expr] args,
              &ast.ann ann) -> result {
3151
    auto f_res = trans_lval(cx, f);
3152
    auto faddr = f_res.res.val;
3153
    auto llenv = C_null(T_opaque_closure_ptr(cx.fcx.ccx.tn));
3154 3155 3156 3157 3158 3159 3160 3161 3162

    alt (f_res.llobj) {
        case (some[ValueRef](_)) {
            // It's a vtbl entry.
            faddr = f_res.res.bcx.build.Load(faddr);
        }
        case (none[ValueRef]) {
            // It's a closure.
            auto bcx = f_res.res.bcx;
3163 3164
            auto pair = faddr;
            faddr = bcx.build.GEP(pair, vec(C_int(0),
G
Graydon Hoare 已提交
3165
                                            C_int(abi.fn_field_code)));
3166
            faddr = bcx.build.Load(faddr);
3167

3168 3169 3170 3171
            auto llclosure = bcx.build.GEP(pair,
                                           vec(C_int(0),
                                               C_int(abi.fn_field_box)));
            llenv = bcx.build.Load(llclosure);
3172
        }
3173
    }
3174 3175
    auto fn_ty = ty.expr_ty(f);
    auto ret_ty = ty.ann_to_type(ann);
G
Graydon Hoare 已提交
3176
    auto args_res = trans_args(f_res.res.bcx,
3177
                               llenv, f_res.llobj,
3178
                               f_res.generic,
3179
                               lliterbody,
3180
                               args, fn_ty);
G
Graydon Hoare 已提交
3181

3182
    auto bcx = args_res._0;
3183 3184 3185
    auto llargs = args_res._1;
    auto llretslot = args_res._2;

3186 3187 3188 3189 3190 3191 3192 3193
    /*
    log "calling: " + val_str(cx.fcx.ccx.tn, faddr);

    for (ValueRef arg in llargs) {
        log "arg: " + val_str(cx.fcx.ccx.tn, arg);
    }
    */

3194 3195 3196 3197 3198 3199 3200 3201 3202
    bcx.build.FastCall(faddr, llargs);
    auto retval = C_nil();

    if (!ty.type_is_nil(ret_ty)) {
        retval = load_scalar_or_boxed(bcx, llretslot, ret_ty);
        // Retval doesn't correspond to anything really tangible in the frame,
        // but it's a ref all the same, so we put a note here to drop it when
        // we're done in this scope.
        find_scope_cx(cx).cleanups += clean(bind drop_ty(_, retval, ret_ty));
3203
    }
G
Graydon Hoare 已提交
3204

3205
    ret res(bcx, retval);
3206 3207
}

3208 3209
fn trans_tup(@block_ctxt cx, vec[ast.elt] elts,
             &ast.ann ann) -> result {
3210 3211 3212 3213 3214 3215 3216
    auto bcx = cx;
    auto t = node_ann_type(bcx.fcx.ccx, ann);
    auto llty = type_of(bcx.fcx.ccx, t);
    auto tup_res = alloc_ty(bcx, t);
    auto tup_val = tup_res.val;
    bcx = tup_res.bcx;

3217
    find_scope_cx(cx).cleanups += clean(bind drop_ty(_, tup_val, t));
G
Graydon Hoare 已提交
3218
    let int i = 0;
3219

3220
    for (ast.elt e in elts) {
3221 3222 3223 3224 3225 3226
        auto e_ty = ty.expr_ty(e.expr);
        auto src_res = trans_expr(bcx, e.expr);
        bcx = src_res.bcx;
        auto dst_res = GEP_tup_like(bcx, t, tup_val, vec(0, i));
        bcx = dst_res.bcx;
        bcx = copy_ty(src_res.bcx, INIT, dst_res.val, src_res.val, e_ty).bcx;
G
Graydon Hoare 已提交
3227 3228
        i += 1;
    }
3229
    ret res(bcx, tup_val);
G
Graydon Hoare 已提交
3230 3231
}

3232 3233
fn trans_vec(@block_ctxt cx, vec[@ast.expr] args,
             &ast.ann ann) -> result {
3234 3235 3236 3237
    auto t = node_ann_type(cx.fcx.ccx, ann);
    auto unit_ty = t;
    alt (t.struct) {
        case (ty.ty_vec(?t)) {
G
Graydon Hoare 已提交
3238 3239 3240 3241 3242 3243 3244 3245
            unit_ty = t;
        }
        case (_) {
            cx.fcx.ccx.sess.bug("non-vec type in trans_vec");
        }
    }

    auto llunit_ty = type_of(cx.fcx.ccx, unit_ty);
3246 3247 3248
    auto bcx = cx;
    auto unit_sz = size_of(bcx, unit_ty);
    bcx = unit_sz.bcx;
G
Graydon Hoare 已提交
3249
    auto data_sz = llvm.LLVMConstMul(C_int(_vec.len[@ast.expr](args) as int),
3250
                                     unit_sz.val);
G
Graydon Hoare 已提交
3251 3252

    // FIXME: pass tydesc properly.
3253
    auto sub = trans_upcall(bcx, "upcall_new_vec", vec(data_sz, C_int(0)));
3254
    bcx = sub.bcx;
G
Graydon Hoare 已提交
3255

3256
    auto llty = type_of(bcx.fcx.ccx, t);
3257
    auto vec_val = bcx.build.IntToPtr(sub.val, llty);
3258
    find_scope_cx(bcx).cleanups += clean(bind drop_ty(_, vec_val, t));
G
Graydon Hoare 已提交
3259

3260 3261 3262 3263 3264 3265
    auto body = bcx.build.GEP(vec_val, vec(C_int(0),
                                           C_int(abi.vec_elt_data)));

    auto pseudo_tup_ty =
        plain_ty(ty.ty_tup(_vec.init_elt[@ty.t](unit_ty,
                                                _vec.len[@ast.expr](args))));
G
Graydon Hoare 已提交
3266
    let int i = 0;
3267

G
Graydon Hoare 已提交
3268
    for (@ast.expr e in args) {
3269 3270 3271 3272 3273
        auto src_res = trans_expr(bcx, e);
        bcx = src_res.bcx;
        auto dst_res = GEP_tup_like(bcx, pseudo_tup_ty, body, vec(0, i));
        bcx = dst_res.bcx;
        bcx = copy_ty(bcx, INIT, dst_res.val, src_res.val, unit_ty).bcx;
G
Graydon Hoare 已提交
3274 3275
        i += 1;
    }
3276 3277 3278
    auto fill = bcx.build.GEP(vec_val,
                              vec(C_int(0), C_int(abi.vec_elt_fill)));
    bcx.build.Store(data_sz, fill);
3279

3280
    ret res(bcx, vec_val);
G
Graydon Hoare 已提交
3281 3282
}

3283
fn trans_rec(@block_ctxt cx, vec[ast.field] fields,
3284 3285
             option.t[@ast.expr] base, &ast.ann ann) -> result {

3286 3287 3288 3289 3290 3291 3292
    auto bcx = cx;
    auto t = node_ann_type(bcx.fcx.ccx, ann);
    auto llty = type_of(bcx.fcx.ccx, t);
    auto rec_res = alloc_ty(bcx, t);
    auto rec_val = rec_res.val;
    bcx = rec_res.bcx;

3293
    find_scope_cx(cx).cleanups += clean(bind drop_ty(_, rec_val, t));
3294
    let int i = 0;
3295

G
Graydon Hoare 已提交
3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313
    auto base_val = C_nil();

    alt (base) {
        case (none[@ast.expr]) { }
        case (some[@ast.expr](?bexp)) {
            auto base_res = trans_expr(bcx, bexp);
            bcx = base_res.bcx;
            base_val = base_res.val;
        }
    }

    let vec[ty.field] ty_fields = vec();
    alt (t.struct) {
        case (ty.ty_rec(?flds)) { ty_fields = flds; }
    }

    for (ty.field tf in ty_fields) {
        auto e_ty = tf.ty;
3314 3315
        auto dst_res = GEP_tup_like(bcx, t, rec_val, vec(0, i));
        bcx = dst_res.bcx;
G
Graydon Hoare 已提交
3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333

        auto expr_provided = false;
        auto src_res = res(bcx, C_nil());

        for (ast.field f in fields) {
            if (_str.eq(f.ident, tf.ident)) {
                expr_provided = true;
                src_res = trans_expr(bcx, f.expr);
            }
        }
        if (!expr_provided) {
            src_res = GEP_tup_like(bcx, t, base_val, vec(0, i));
            src_res = res(src_res.bcx,
                          load_scalar_or_boxed(bcx, src_res.val, e_ty));
        }

        bcx = src_res.bcx;
        bcx = copy_ty(bcx, INIT, dst_res.val, src_res.val, e_ty).bcx;
3334 3335
        i += 1;
    }
3336
    ret res(bcx, rec_val);
3337 3338
}

G
Graydon Hoare 已提交
3339

G
Graydon Hoare 已提交
3340

3341
fn trans_expr(@block_ctxt cx, @ast.expr e) -> result {
3342
    alt (e.node) {
3343
        case (ast.expr_lit(?lit, ?ann)) {
3344
            ret res(cx, trans_lit(cx.fcx.ccx, *lit, ann));
3345 3346
        }

3347
        case (ast.expr_unary(?op, ?x, ?ann)) {
3348
            ret trans_unary(cx, op, x, ann);
3349 3350
        }

P
Patrick Walton 已提交
3351
        case (ast.expr_binary(?op, ?x, ?y, _)) {
3352
            ret trans_binary(cx, op, x, y);
3353
        }
3354

G
Graydon Hoare 已提交
3355 3356
        case (ast.expr_if(?cond, ?thn, ?elifs, ?els, _)) {
            ret trans_if(cx, cond, thn, elifs, els);
3357 3358
        }

G
Graydon Hoare 已提交
3359 3360 3361 3362
        case (ast.expr_for(?decl, ?seq, ?body, _)) {
            ret trans_for(cx, decl, seq, body);
        }

3363 3364 3365 3366
        case (ast.expr_for_each(?decl, ?seq, ?body, _)) {
            ret trans_for_each(cx, decl, seq, body);
        }

3367
        case (ast.expr_while(?cond, ?body, _)) {
3368
            ret trans_while(cx, cond, body);
3369 3370
        }

3371
        case (ast.expr_do_while(?body, ?cond, _)) {
3372
            ret trans_do_while(cx, body, cond);
3373 3374
        }

P
Patrick Walton 已提交
3375 3376 3377 3378
        case (ast.expr_alt(?expr, ?arms, _)) {
            ret trans_alt(cx, expr, arms);
        }

P
Patrick Walton 已提交
3379
        case (ast.expr_block(?blk, _)) {
3380
            auto sub_cx = new_scope_block_ctxt(cx, "block-expr body");
3381
            auto next_cx = new_sub_block_ctxt(cx, "next");
3382 3383 3384 3385 3386 3387 3388
            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);
        }
3389

3390
        case (ast.expr_assign(?dst, ?src, ?ann)) {
3391
            auto lhs_res = trans_lval(cx, dst);
3392 3393
            check (lhs_res.is_mem);
            auto rhs_res = trans_expr(lhs_res.res.bcx, src);
3394
            auto t = node_ann_type(cx.fcx.ccx, ann);
G
Graydon Hoare 已提交
3395
            // FIXME: calculate copy init-ness in typestate.
3396 3397
            ret copy_ty(rhs_res.bcx, DROP_EXISTING,
                        lhs_res.res.val, rhs_res.val, t);
3398
        }
G
Graydon Hoare 已提交
3399

3400 3401 3402
        case (ast.expr_assign_op(?op, ?dst, ?src, ?ann)) {
            auto t = node_ann_type(cx.fcx.ccx, ann);
            auto lhs_res = trans_lval(cx, dst);
3403
            check (lhs_res.is_mem);
3404
            auto lhs_val = load_scalar_or_boxed(lhs_res.res.bcx,
G
Graydon Hoare 已提交
3405
                                                lhs_res.res.val, t);
3406
            auto rhs_res = trans_expr(lhs_res.res.bcx, src);
3407 3408
            auto v = trans_eager_binop(rhs_res.bcx, op, t,
                                       lhs_val, rhs_res.val);
3409
            // FIXME: calculate copy init-ness in typestate.
3410 3411
            ret copy_ty(rhs_res.bcx, DROP_EXISTING,
                        lhs_res.res.val, v, t);
3412 3413
        }

3414 3415 3416 3417
        case (ast.expr_bind(?f, ?args, ?ann)) {
            ret trans_bind(cx, f, args, ann);
        }

G
Graydon Hoare 已提交
3418
        case (ast.expr_call(?f, ?args, ?ann)) {
3419
            ret trans_call(cx, f, none[ValueRef], args, ann);
3420 3421
        }

3422
        case (ast.expr_cast(?e, _, ?ann)) {
3423
            ret trans_cast(cx, e, ann);
3424
        }
G
Graydon Hoare 已提交
3425

G
Graydon Hoare 已提交
3426 3427 3428 3429
        case (ast.expr_vec(?args, ?ann)) {
            ret trans_vec(cx, args, ann);
        }

G
Graydon Hoare 已提交
3430 3431 3432
        case (ast.expr_tup(?args, ?ann)) {
            ret trans_tup(cx, args, ann);
        }
G
Graydon Hoare 已提交
3433

3434 3435
        case (ast.expr_rec(?args, ?base, ?ann)) {
            ret trans_rec(cx, args, base, ann);
3436 3437
        }

3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453
        case (ast.expr_fail) {
            ret trans_fail(cx, e.span, "explicit failure");
        }

        case (ast.expr_log(?a)) {
            ret trans_log(cx, a);
        }

        case (ast.expr_check_expr(?a)) {
            ret trans_check_expr(cx, a);
        }

        case (ast.expr_ret(?e)) {
            ret trans_ret(cx, e);
        }

3454
        case (ast.expr_put(?e)) {
3455 3456 3457
            ret trans_put(cx, e);
        }

3458 3459 3460 3461
        case (ast.expr_be(?e)) {
            ret trans_be(cx, e);
        }

3462 3463
        // lval cases fall through to trans_lval and then
        // possibly load the result (if it's non-structural).
G
Graydon Hoare 已提交
3464

3465
        case (_) {
3466
            auto t = ty.expr_ty(e);
3467
            auto sub = trans_lval(cx, e);
3468
            ret res(sub.res.bcx,
3469
                    load_scalar_or_boxed(sub.res.bcx, sub.res.val, t));
3470
        }
3471
    }
3472
    cx.fcx.ccx.sess.unimpl("expr variant in trans_expr");
3473 3474 3475
    fail;
}

3476
// We pass structural values around the compiler "by pointer" and
3477 3478
// non-structural values (scalars and boxes) "by value". This function selects
// whether to load a pointer or pass it.
3479

3480 3481 3482 3483
fn load_scalar_or_boxed(@block_ctxt cx,
                        ValueRef v,
                        @ty.t t) -> ValueRef {
    if (ty.type_is_scalar(t) || ty.type_is_boxed(t)) {
3484
        ret cx.build.Load(v);
3485 3486
    } else {
        ret v;
3487 3488 3489
    }
}

3490
fn trans_log(@block_ctxt cx, @ast.expr e) -> result {
3491

3492
    auto sub = trans_expr(cx, e);
3493
    auto e_ty = ty.expr_ty(e);
3494
    alt (e_ty.struct) {
3495
        case (ty.ty_str) {
3496 3497 3498 3499
            auto v = sub.bcx.build.PtrToInt(sub.val, T_int());
            ret trans_upcall(sub.bcx,
                             "upcall_log_str",
                             vec(v));
3500 3501
        }
        case (_) {
3502 3503 3504
            ret trans_upcall(sub.bcx,
                             "upcall_log_int",
                             vec(sub.val));
3505 3506
        }
    }
3507
    fail;
3508 3509
}

3510
fn trans_check_expr(@block_ctxt cx, @ast.expr e) -> result {
3511 3512 3513
    auto cond_res = trans_expr(cx, e);

    // FIXME: need pretty-printer.
B
Brian Anderson 已提交
3514
    auto expr_str = "<expr>";
3515
    auto fail_cx = new_sub_block_ctxt(cx, "fail");
B
Brian Anderson 已提交
3516
    auto fail_res = trans_fail(fail_cx, e.span, expr_str);
3517

3518
    auto next_cx = new_sub_block_ctxt(cx, "next");
3519 3520 3521 3522 3523 3524 3525
    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());
}

B
Brian Anderson 已提交
3526 3527 3528 3529 3530 3531 3532 3533 3534
fn trans_fail(@block_ctxt cx, common.span sp, str fail_str) -> result {
    auto V_fail_str = p2i(C_cstr(cx.fcx.ccx, fail_str));
    auto V_filename = p2i(C_cstr(cx.fcx.ccx, sp.filename));
    auto V_line = sp.lo.line as int;
    auto args = vec(V_fail_str, V_filename, C_int(V_line));

    ret trans_upcall(cx, "upcall_fail", args);
}

3535
fn trans_put(@block_ctxt cx, &option.t[@ast.expr] e) -> result {
3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564
    auto llcallee = C_nil();
    auto llenv = C_nil();

    alt (cx.fcx.lliterbody) {
        case (some[ValueRef](?lli)) {
            auto slot = cx.build.Alloca(val_ty(lli));
            cx.build.Store(lli, slot);

            llcallee = cx.build.GEP(slot, vec(C_int(0),
                                              C_int(abi.fn_field_code)));
            llcallee = cx.build.Load(llcallee);

            llenv = cx.build.GEP(slot, vec(C_int(0),
                                           C_int(abi.fn_field_box)));
            llenv = cx.build.Load(llenv);
        }
    }
    auto bcx = cx;
    auto dummy_retslot = bcx.build.Alloca(T_nil());
    let vec[ValueRef] llargs = vec(dummy_retslot, cx.fcx.lltaskptr, llenv);
    alt (e) {
        case (none[@ast.expr]) { }
        case (some[@ast.expr](?x)) {
            auto r = trans_expr(bcx, x);
            llargs += r.val;
            bcx = r.bcx;
        }
    }
    ret res(bcx, bcx.build.FastCall(llcallee, llargs));
3565 3566
}

3567 3568 3569 3570
fn trans_ret(@block_ctxt cx, &option.t[@ast.expr] e) -> result {
    auto bcx = cx;
    auto val = C_nil();

3571 3572
    alt (e) {
        case (some[@ast.expr](?x)) {
3573
            auto t = ty.expr_ty(x);
3574 3575 3576
            auto r = trans_expr(cx, x);
            bcx = r.bcx;
            val = r.val;
3577
            bcx = copy_ty(bcx, INIT, cx.fcx.llretptr, val, t).bcx;
3578
        }
3579
        case (_) { /* fall through */  }
3580 3581
    }

3582 3583
    // Run all cleanups and back out.
    let bool more_cleanups = true;
3584
    auto cleanup_cx = cx;
3585
    while (more_cleanups) {
3586
        bcx = trans_block_cleanups(bcx, cleanup_cx);
3587
        alt (cleanup_cx.parent) {
3588
            case (parent_some(?b)) {
3589
                cleanup_cx = b;
3590 3591 3592 3593 3594 3595 3596
            }
            case (parent_none) {
                more_cleanups = false;
            }
        }
    }

3597 3598
    bcx.build.RetVoid();
    ret res(bcx, C_nil());
3599 3600
}

3601
fn trans_be(@block_ctxt cx, @ast.expr e) -> result {
3602
    // FIXME: This should be a typestate precondition
3603
    check (ast.is_call_expr(e));
3604 3605
    // FIXME: Turn this into a real tail call once
    // calling convention issues are settled
3606 3607 3608
    ret trans_ret(cx, some(e));
}

3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622
fn init_local(@block_ctxt cx, @ast.local local) -> result {

    // Make a note to drop this slot on the way out.
    check (cx.fcx.lllocals.contains_key(local.id));
    auto llptr = cx.fcx.lllocals.get(local.id);
    auto ty = node_ann_type(cx.fcx.ccx, local.ann);
    auto bcx = cx;

    find_scope_cx(cx).cleanups +=
        clean(bind drop_slot(_, llptr, ty));

    alt (local.init) {
        case (some[@ast.expr](?e)) {
            auto sub = trans_expr(bcx, e);
3623
            bcx = copy_ty(sub.bcx, INIT, llptr, sub.val, ty).bcx;
3624 3625 3626
        }
        case (_) {
            if (middle.ty.type_has_dynamic_size(ty)) {
3627 3628
                auto llsz = size_of(bcx, ty);
                bcx = call_bzero(llsz.bcx, llptr, llsz.val).bcx;
3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641

            } else {
                auto llty = type_of(bcx.fcx.ccx, ty);
                auto null = lib.llvm.llvm.LLVMConstNull(llty);
                bcx.build.Store(null, llptr);
            }
        }
    }
    ret res(bcx, llptr);
}

fn trans_stmt(@block_ctxt cx, &ast.stmt s) -> result {
    auto bcx = cx;
3642
    alt (s.node) {
3643
        case (ast.stmt_expr(?e)) {
3644
            bcx = trans_expr(cx, e).bcx;
3645
        }
3646

3647 3648 3649
        case (ast.stmt_decl(?d)) {
            alt (d.node) {
                case (ast.decl_local(?local)) {
3650
                    bcx = init_local(bcx, local).bcx;
3651
                }
G
Graydon Hoare 已提交
3652 3653 3654
                case (ast.decl_item(?i)) {
                    trans_item(cx.fcx.ccx, *i);
                }
3655 3656
            }
        }
3657
        case (_) {
3658
            cx.fcx.ccx.sess.unimpl("stmt variant");
3659 3660
        }
    }
3661
    ret res(bcx, C_nil());
3662 3663
}

3664
fn new_builder(BasicBlockRef llbb) -> builder {
3665 3666 3667 3668 3669
    let BuilderRef llbuild = llvm.LLVMCreateBuilder();
    llvm.LLVMPositionBuilderAtEnd(llbuild, llbb);
    ret builder(llbuild);
}

3670 3671
// You probably don't want to use this one. See the
// next three functions instead.
3672
fn new_block_ctxt(@fn_ctxt cx, block_parent parent,
3673
                  block_kind kind,
3674
                  str name) -> @block_ctxt {
3675
    let vec[cleanup] cleanups = vec();
3676
    let BasicBlockRef llbb =
3677
        llvm.LLVMAppendBasicBlock(cx.llfn,
3678
                                  _str.buf(cx.ccx.names.next(name)));
3679

3680
    ret @rec(llbb=llbb,
3681
             build=new_builder(llbb),
3682
             parent=parent,
3683
             kind=kind,
3684
             mutable cleanups=cleanups,
3685 3686 3687
             fcx=cx);
}

3688 3689
// 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 {
3690 3691 3692 3693 3694 3695 3696
    auto cx = new_block_ctxt(fcx, parent_none, SCOPE_BLOCK,
                             "function top level");

    // FIXME: hack to give us some spill room to make up for an LLVM
    // bug where it destroys its own callee-saves.
    cx.build.Alloca(T_array(T_int(), 10u));
    ret cx;
3697
}
3698

3699 3700
// Use this when you're at a curly-brace or similar lexical scope.
fn new_scope_block_ctxt(@block_ctxt bcx, str n) -> @block_ctxt {
3701
    ret new_block_ctxt(bcx.fcx, parent_some(bcx), SCOPE_BLOCK, n);
3702 3703
}

3704
// Use this when you're making a general CFG BB within a scope.
3705
fn new_sub_block_ctxt(@block_ctxt bcx, str n) -> @block_ctxt {
3706
    ret new_block_ctxt(bcx.fcx, parent_some(bcx), NON_SCOPE_BLOCK, n);
3707
}
3708

3709

3710 3711
fn trans_block_cleanups(@block_ctxt cx,
                        @block_ctxt cleanup_cx) -> @block_ctxt {
3712
    auto bcx = cx;
3713

3714
    if (cleanup_cx.kind != SCOPE_BLOCK) {
3715 3716 3717
        check (_vec.len[cleanup](cleanup_cx.cleanups) == 0u);
    }

3718 3719 3720 3721
    auto i = _vec.len[cleanup](cleanup_cx.cleanups);
    while (i > 0u) {
        i -= 1u;
        auto c = cleanup_cx.cleanups.(i);
3722
        alt (c) {
3723
            case (clean(?cfn)) {
3724
                bcx = cfn(bcx).bcx;
3725 3726 3727
            }
        }
    }
3728 3729 3730
    ret bcx;
}

3731 3732 3733 3734 3735 3736 3737 3738 3739 3740
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;
                    }
3741
                    case (_) { /* fall through */ }
3742 3743
                }
            }
3744
            case (_) { /* fall through */ }
3745 3746 3747 3748
        }
    }
}

3749
fn alloc_ty(@block_ctxt cx, @ty.t t) -> result {
3750
    auto val = C_int(0);
3751
    auto bcx = cx;
3752
    if (ty.type_has_dynamic_size(t)) {
3753 3754 3755
        auto n = size_of(bcx, t);
        bcx = n.bcx;
        val = bcx.build.ArrayAlloca(T_i8(), n.val);
3756
    } else {
3757
        val = bcx.build.Alloca(type_of(cx.fcx.ccx, t));
3758
    }
3759
    ret res(bcx, val);
3760 3761
}

3762 3763 3764 3765 3766 3767 3768
fn alloc_local(@block_ctxt cx, @ast.local local) -> result {
    auto t = node_ann_type(cx.fcx.ccx, local.ann);
    auto r = alloc_ty(cx, t);
    r.bcx.fcx.lllocals.insert(local.id, r.val);
    ret r;
}

3769
fn trans_block(@block_ctxt cx, &ast.block b) -> result {
3770 3771
    auto bcx = cx;

3772
    for each (@ast.local local in block_locals(b)) {
3773
        bcx = alloc_local(bcx, local).bcx;
3774
    }
3775
    auto r = res(bcx, C_nil());
3776

3777
    for (@ast.stmt s in b.node.stmts) {
3778 3779
        r = trans_stmt(bcx, *s);
        bcx = r.bcx;
3780 3781 3782 3783 3784
        // 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;
        }
3785
    }
3786

3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799
    alt (b.node.expr) {
        case (some[@ast.expr](?e)) {
            r = trans_expr(bcx, e);
            bcx = r.bcx;
            if (is_terminated(bcx)) {
                ret r;
            }
        }
        case (none[@ast.expr]) {
            r = res(bcx, C_nil());
        }
    }

3800
    bcx = trans_block_cleanups(bcx, find_scope_cx(bcx));
3801
    ret res(bcx, r.val);
3802 3803
}

3804 3805 3806 3807 3808 3809 3810
// NB: must keep 4 fns in sync:
//
//  - type_of_fn_full
//  - create_llargs_for_fn_args.
//  - new_fn_ctxt
//  - trans_args

3811
fn new_fn_ctxt(@crate_ctxt cx,
3812
               str name,
3813
               ValueRef llfndecl) -> @fn_ctxt {
3814

3815 3816 3817
    let ValueRef llretptr = llvm.LLVMGetParam(llfndecl, 0u);
    let ValueRef lltaskptr = llvm.LLVMGetParam(llfndecl, 1u);
    let ValueRef llenv = llvm.LLVMGetParam(llfndecl, 2u);
3818 3819

    let hashmap[ast.def_id, ValueRef] llargs = new_def_hash[ValueRef]();
3820 3821
    let hashmap[ast.def_id, ValueRef] llobjfields = new_def_hash[ValueRef]();
    let hashmap[ast.def_id, ValueRef] lllocals = new_def_hash[ValueRef]();
3822
    let hashmap[ast.def_id, ValueRef] lltydescs = new_def_hash[ValueRef]();
3823

3824
    ret @rec(llfn=llfndecl,
3825
             lltaskptr=lltaskptr,
3826 3827
             llenv=llenv,
             llretptr=llretptr,
3828
             mutable llself=none[ValueRef],
3829
             mutable lliterbody=none[ValueRef],
3830
             llargs=llargs,
3831
             llobjfields=llobjfields,
3832
             lllocals=lllocals,
3833
             lltydescs=lltydescs,
3834
             ccx=cx);
3835 3836
}

3837 3838 3839 3840 3841 3842 3843
// NB: must keep 4 fns in sync:
//
//  - type_of_fn_full
//  - create_llargs_for_fn_args.
//  - new_fn_ctxt
//  - trans_args

3844
fn create_llargs_for_fn_args(&@fn_ctxt cx,
3845
                             ast.proto proto,
3846
                             option.t[TypeRef] ty_self,
3847
                             @ty.t ret_ty,
3848
                             &vec[ast.arg] args,
3849
                             &vec[ast.ty_param] ty_params) {
3850 3851 3852 3853 3854 3855 3856 3857 3858 3859

    alt (ty_self) {
        case (some[TypeRef](_)) {
            cx.llself = some[ValueRef](cx.llenv);
        }
        case (_) {
        }
    }

    auto arg_n = 3u;
3860

3861 3862 3863 3864 3865 3866 3867
    if (ty_self == none[TypeRef]) {
        for (ast.ty_param tp in ty_params) {
            auto llarg = llvm.LLVMGetParam(cx.llfn, arg_n);
            check (llarg as int != 0);
            cx.lltydescs.insert(tp.id, llarg);
            arg_n += 1u;
        }
3868 3869
    }

3870
    if (proto == ast.proto_iter) {
3871 3872 3873 3874 3875
        auto llarg = llvm.LLVMGetParam(cx.llfn, arg_n);
        check (llarg as int != 0);
        cx.lliterbody = some[ValueRef](llarg);
        arg_n += 1u;
    }
3876

3877 3878 3879 3880 3881 3882 3883 3884
    for (ast.arg arg in args) {
        auto llarg = llvm.LLVMGetParam(cx.llfn, arg_n);
        check (llarg as int != 0);
        cx.llargs.insert(arg.id, llarg);
        arg_n += 1u;
    }
}

3885 3886 3887 3888
// Recommended LLVM style, strange though this is, is to copy from args to
// allocas immediately upon entry; this permits us to GEP into structures we
// were passed and whatnot. Apparently mem2reg will mop up.

3889 3890 3891 3892
fn copy_args_to_allocas(@block_ctxt cx,
                        option.t[TypeRef] ty_self,
                        vec[ast.arg] args,
                        vec[ty.arg] arg_tys) {
3893 3894 3895

    let uint arg_n = 0u;

3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909
    alt (cx.fcx.llself) {
        case (some[ValueRef](?self_v)) {
            alt (ty_self) {
                case (some[TypeRef](?self_t)) {
                    auto alloca = cx.build.Alloca(self_t);
                    cx.build.Store(self_v, alloca);
                    cx.fcx.llself = some[ValueRef](alloca);
                }
            }
        }
        case (_) {
        }
    }

3910
    for (ast.arg aarg in args) {
3911 3912 3913 3914 3915 3916 3917 3918 3919
        if (aarg.mode != ast.alias) {
            auto arg_t = type_of_arg(cx.fcx.ccx, arg_tys.(arg_n));
            auto alloca = cx.build.Alloca(arg_t);
            auto argval = cx.fcx.llargs.get(aarg.id);
            cx.build.Store(argval, alloca);
            // Overwrite the llargs entry for this arg with its alloca.
            cx.fcx.llargs.insert(aarg.id, alloca);
        }

3920 3921 3922 3923
        arg_n += 1u;
    }
}

3924 3925 3926 3927 3928
fn is_terminated(@block_ctxt cx) -> bool {
    auto inst = llvm.LLVMGetLastInstruction(cx.llbb);
    ret llvm.LLVMIsATerminatorInst(inst) as int != 0;
}

3929 3930
fn arg_tys_of_fn(ast.ann ann) -> vec[ty.arg] {
    alt (ty.ann_to_type(ann).struct) {
3931
        case (ty.ty_fn(_, ?arg_tys, _)) {
3932 3933 3934 3935 3936 3937
            ret arg_tys;
        }
    }
    fail;
}

3938 3939
fn ret_ty_of_fn_ty(@ty.t t) -> @ty.t {
    alt (t.struct) {
3940
        case (ty.ty_fn(_, _, ?ret_ty)) {
3941 3942 3943 3944 3945 3946
            ret ret_ty;
        }
    }
    fail;
}

3947 3948 3949 3950 3951

fn ret_ty_of_fn(ast.ann ann) -> @ty.t {
    ret ret_ty_of_fn_ty(ty.ann_to_type(ann));
}

3952
fn populate_fn_ctxt_from_llself(@block_ctxt cx, ValueRef llself) {
3953 3954 3955 3956 3957 3958 3959

    let vec[TypeRef] llfield_tys = vec();

    for (ast.obj_field f in cx.fcx.ccx.obj_fields) {
        llfield_tys += node_type(cx.fcx.ccx, f.ann);
    }

3960
    auto n_typarams = _vec.len[ast.ty_param](cx.fcx.ccx.obj_typarams);
3961
    let TypeRef llobj_box_ty = T_obj_ptr(cx.fcx.ccx.tn, n_typarams,
3962
                                         T_struct(llfield_tys));
3963 3964 3965 3966 3967 3968 3969 3970 3971 3972

    auto box_cell =
        cx.build.GEP(llself,
                     vec(C_int(0),
                         C_int(abi.obj_field_box)));

    auto box_ptr = cx.build.Load(box_cell);

    box_ptr = cx.build.PointerCast(box_ptr, llobj_box_ty);

3973 3974 3975 3976 3977
    auto obj_typarams = cx.build.GEP(box_ptr,
                                     vec(C_int(0),
                                         C_int(abi.box_rc_field_body),
                                         C_int(abi.obj_body_elt_typarams)));

3978 3979 3980 3981 3982 3983
    auto obj_fields = cx.build.GEP(box_ptr,
                                   vec(C_int(0),
                                       C_int(abi.box_rc_field_body),
                                       C_int(abi.obj_body_elt_fields)));

    let int i = 0;
3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994

    for (ast.ty_param p in cx.fcx.ccx.obj_typarams) {
        let ValueRef lltyparam = cx.build.GEP(obj_typarams,
                                              vec(C_int(0),
                                                  C_int(i)));
        lltyparam = cx.build.Load(lltyparam);
        cx.fcx.lltydescs.insert(p.id, lltyparam);
        i += 1;
    }

    i = 0;
3995 3996 3997 3998 3999 4000 4001 4002 4003
    for (ast.obj_field f in cx.fcx.ccx.obj_fields) {
        let ValueRef llfield = cx.build.GEP(obj_fields,
                                            vec(C_int(0),
                                                C_int(i)));
        cx.fcx.llobjfields.insert(f.id, llfield);
        i += 1;
    }
}

4004 4005 4006
fn trans_fn(@crate_ctxt cx, &ast._fn f, ast.def_id fid,
            option.t[TypeRef] ty_self,
            &vec[ast.ty_param] ty_params, &ast.ann ann) {
4007

4008 4009 4010
    auto llfndecl = cx.item_ids.get(fid);
    cx.item_names.insert(cx.path, llfndecl);

4011
    auto fcx = new_fn_ctxt(cx, cx.path, llfndecl);
4012
    create_llargs_for_fn_args(fcx, f.decl.proto,
4013
                              ty_self, ret_ty_of_fn(ann),
4014
                              f.decl.inputs, ty_params);
4015
    auto bcx = new_top_block_ctxt(fcx);
4016

4017
    copy_args_to_allocas(bcx, ty_self, f.decl.inputs,
4018 4019 4020 4021
                         arg_tys_of_fn(ann));

    alt (fcx.llself) {
        case (some[ValueRef](?llself)) {
4022
            populate_fn_ctxt_from_llself(bcx, llself);
4023 4024 4025 4026
        }
        case (_) {
        }
    }
4027

4028 4029
    auto res = trans_block(bcx, f.body);
    if (!is_terminated(res.bcx)) {
4030 4031
        // FIXME: until LLVM has a unit type, we are moving around
        // C_nil values rather than their void type.
4032
        res.bcx.build.RetVoid();
4033
    }
4034 4035
}

4036 4037 4038
fn trans_vtbl(@crate_ctxt cx, TypeRef self_ty,
              &ast._obj ob,
              &vec[ast.ty_param] ty_params) -> ValueRef {
G
Graydon Hoare 已提交
4039
    let vec[ValueRef] methods = vec();
4040 4041 4042 4043 4044 4045 4046 4047 4048

    fn meth_lteq(&@ast.method a, &@ast.method b) -> bool {
        ret _str.lteq(a.node.ident, b.node.ident);
    }

    auto meths = std.sort.merge_sort[@ast.method](bind meth_lteq(_,_),
                                                  ob.methods);

    for (@ast.method m in meths) {
4049

4050 4051
        auto llfnty = T_nil();
        alt (node_ann_type(cx, m.node.ann).struct) {
4052 4053
            case (ty.ty_fn(?proto, ?inputs, ?output)) {
                llfnty = type_of_fn_full(cx, proto,
4054 4055 4056 4057 4058
                                         some[TypeRef](self_ty),
                                         inputs, output);
            }
        }

4059
        let @crate_ctxt mcx = @rec(path=cx.path + sep() + m.node.ident
4060 4061
                                   with *cx);

4062
        let str s = cx.names.next("_rust_method") + sep() + mcx.path;
4063 4064 4065
        let ValueRef llfn = decl_fastcall_fn(cx.llmod, s, llfnty);
        cx.item_ids.insert(m.node.id, llfn);

4066 4067
        trans_fn(mcx, m.node.meth, m.node.id, some[TypeRef](self_ty),
                 ty_params, m.node.ann);
4068
        methods += llfn;
G
Graydon Hoare 已提交
4069
    }
4070 4071 4072
    auto vtbl = C_struct(methods);
    auto gvar = llvm.LLVMAddGlobal(cx.llmod,
                                   val_ty(vtbl),
4073
                                   _str.buf("_rust_vtbl" + sep() + cx.path));
4074 4075
    llvm.LLVMSetInitializer(gvar, vtbl);
    llvm.LLVMSetGlobalConstant(gvar, True);
4076 4077
    llvm.LLVMSetLinkage(gvar, lib.llvm.LLVMPrivateLinkage
                        as llvm.Linkage);
4078
    ret gvar;
G
Graydon Hoare 已提交
4079 4080
}

4081 4082
fn trans_obj(@crate_ctxt cx, &ast._obj ob, ast.def_id oid,
             &vec[ast.ty_param] ty_params, &ast.ann ann) {
4083 4084 4085 4086

    auto llctor_decl = cx.item_ids.get(oid);
    cx.item_names.insert(cx.path, llctor_decl);

4087
    // Translate obj ctor args to function arguments.
4088 4089 4090 4091 4092 4093 4094 4095 4096
    let vec[ast.arg] fn_args = vec();
    for (ast.obj_field f in ob.fields) {
        fn_args += vec(rec(mode=ast.alias,
                           ty=f.ty,
                           ident=f.ident,
                           id=f.id));
    }

    auto fcx = new_fn_ctxt(cx, cx.path, llctor_decl);
4097
    create_llargs_for_fn_args(fcx, ast.proto_fn,
4098
                              none[TypeRef], ret_ty_of_fn(ann),
4099
                              fn_args, ty_params);
4100 4101 4102

    auto bcx = new_top_block_ctxt(fcx);

4103
    let vec[ty.arg] arg_tys = arg_tys_of_fn(ann);
4104
    copy_args_to_allocas(bcx, none[TypeRef], fn_args, arg_tys);
4105

4106
    auto llself_ty = type_of(cx, ret_ty_of_fn(ann));
4107
    auto pair = bcx.fcx.llretptr;
4108
    auto vtbl = trans_vtbl(cx, llself_ty, ob, ty_params);
4109 4110 4111
    auto pair_vtbl = bcx.build.GEP(pair,
                                   vec(C_int(0),
                                       C_int(abi.obj_field_vtbl)));
4112 4113 4114
    auto pair_box = bcx.build.GEP(pair,
                                  vec(C_int(0),
                                      C_int(abi.obj_field_box)));
4115
    bcx.build.Store(vtbl, pair_vtbl);
4116

4117
    let TypeRef llbox_ty = T_opaque_obj_ptr(cx.tn);
4118 4119 4120 4121

    if (_vec.len[ast.ty_param](ty_params) == 0u &&
        _vec.len[ty.arg](arg_tys) == 0u) {
        // Store null into pair, if no args or typarams.
4122 4123 4124 4125 4126 4127 4128
        bcx.build.Store(C_null(llbox_ty), pair_box);
    } else {
        // Malloc a box for the body and copy args in.
        let vec[@ty.t] obj_fields = vec();
        for (ty.arg a in arg_tys) {
            append[@ty.t](obj_fields, a.ty);
        }
4129 4130

        // Synthesize an obj body type.
4131 4132 4133 4134 4135 4136 4137
        auto tydesc_ty = plain_ty(ty.ty_type);
        let vec[@ty.t] tps = vec();
        for (ast.ty_param tp in ty_params) {
            append[@ty.t](tps, tydesc_ty);
        }

        let @ty.t typarams_ty = plain_ty(ty.ty_tup(tps));
4138
        let @ty.t fields_ty = plain_ty(ty.ty_tup(obj_fields));
4139 4140
        let @ty.t body_ty = plain_ty(ty.ty_tup(vec(tydesc_ty,
                                                   typarams_ty,
4141 4142 4143 4144
                                                   fields_ty)));
        let @ty.t boxed_body_ty = plain_ty(ty.ty_box(body_ty));

        let TypeRef llboxed_body_ty = type_of(cx, boxed_body_ty);
4145 4146

        // Malloc a box for the body.
4147 4148 4149 4150 4151 4152 4153 4154 4155
        auto box = trans_malloc_inner(bcx, llboxed_body_ty);
        bcx = box.bcx;
        auto rc = GEP_tup_like(bcx, boxed_body_ty, box.val,
                               vec(0, abi.box_rc_field_refcnt));
        bcx = rc.bcx;
        auto body = GEP_tup_like(bcx, boxed_body_ty, box.val,
                                 vec(0, abi.box_rc_field_body));
        bcx = body.bcx;
        bcx.build.Store(C_int(1), rc.val);
4156

4157 4158
        // Store body tydesc.
        auto body_tydesc =
4159 4160 4161
            GEP_tup_like(bcx, body_ty, body.val,
                         vec(0, abi.obj_body_elt_tydesc));
        bcx = body_tydesc.bcx;
4162

4163 4164 4165
        auto body_td = get_tydesc(bcx, body_ty);
        bcx = body_td.bcx;
        bcx.build.Store(body_td.val, body_tydesc.val);
4166

4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181
        // Copy typarams into captured typarams.
        auto body_typarams =
            GEP_tup_like(bcx, body_ty, body.val,
                         vec(0, abi.obj_body_elt_typarams));
        bcx = body_typarams.bcx;
        let int i = 0;
        for (ast.ty_param tp in ty_params) {
            auto typaram = bcx.fcx.lltydescs.get(tp.id);
            auto capture = GEP_tup_like(bcx, typarams_ty, body_typarams.val,
                                        vec(0, i));
            bcx = capture.bcx;
            bcx = copy_ty(bcx, INIT, capture.val, typaram, tydesc_ty).bcx;
            i += 1;
        }

4182 4183
        // Copy args into body fields.
        auto body_fields =
4184 4185 4186
            GEP_tup_like(bcx, body_ty, body.val,
                         vec(0, abi.obj_body_elt_fields));
        bcx = body_fields.bcx;
4187

4188
        i = 0;
4189
        for (ast.obj_field f in ob.fields) {
4190 4191
            auto arg = bcx.fcx.llargs.get(f.id);
            arg = load_scalar_or_boxed(bcx, arg, arg_tys.(i).ty);
4192 4193 4194 4195
            auto field = GEP_tup_like(bcx, fields_ty, body_fields.val,
                                      vec(0, i));
            bcx = field.bcx;
            bcx = copy_ty(bcx, INIT, field.val, arg, arg_tys.(i).ty).bcx;
4196 4197 4198
            i += 1;
        }
        // Store box ptr in outer pair.
4199
        auto p = bcx.build.PointerCast(box.val, llbox_ty);
4200
        bcx.build.Store(p, pair_box);
4201
    }
4202
    bcx.build.RetVoid();
4203 4204
}

4205
fn trans_tag_variant(@crate_ctxt cx, ast.def_id tag_id,
4206 4207
                     &ast.variant variant, int index,
                     &vec[ast.ty_param] ty_params) {
4208
    if (_vec.len[ast.variant_arg](variant.args) == 0u) {
4209 4210 4211
        ret;    // nullary constructors are just constants
    }

4212 4213 4214 4215 4216 4217 4218 4219 4220 4221
    // Translate variant arguments to function arguments.
    let vec[ast.arg] fn_args = vec();
    auto i = 0u;
    for (ast.variant_arg varg in variant.args) {
        fn_args += vec(rec(mode=ast.alias,
                           ty=varg.ty,
                           ident="arg" + _uint.to_str(i, 10u),
                           id=varg.id));
    }

4222
    check (cx.item_ids.contains_key(variant.id));
4223 4224
    let ValueRef llfndecl = cx.item_ids.get(variant.id);

4225
    auto fcx = new_fn_ctxt(cx, cx.path, llfndecl);
4226
    create_llargs_for_fn_args(fcx, ast.proto_fn,
4227
                              none[TypeRef], ret_ty_of_fn(variant.ann),
4228
                              fn_args, ty_params);
4229

4230 4231 4232
    auto bcx = new_top_block_ctxt(fcx);

    auto arg_tys = arg_tys_of_fn(variant.ann);
4233
    copy_args_to_allocas(bcx, none[TypeRef], fn_args, arg_tys);
4234 4235 4236 4237 4238 4239 4240 4241

    auto info = cx.tags.get(tag_id);

    auto lltagty = T_struct(vec(T_int(), T_array(T_i8(), info.size)));

    // FIXME: better name.
    llvm.LLVMAddTypeName(cx.llmod, _str.buf("tag"), lltagty);

4242 4243
    auto lldiscrimptr = bcx.build.GEP(fcx.llretptr,
                                      vec(C_int(0), C_int(0)));
4244 4245
    bcx.build.Store(C_int(index), lldiscrimptr);

4246 4247
    auto llblobptr = bcx.build.GEP(fcx.llretptr,
                                   vec(C_int(0), C_int(1)));
4248 4249 4250

    // First, generate the union type.
    let vec[TypeRef] llargtys = vec();
4251
    for (ty.arg arg in arg_tys) {
4252 4253 4254 4255 4256 4257 4258 4259
        llargtys += vec(type_of(cx, arg.ty));
    }

    auto llunionty = T_struct(llargtys);
    auto llunionptr = bcx.build.TruncOrBitCast(llblobptr, T_ptr(llunionty));

    i = 0u;
    for (ast.variant_arg va in variant.args) {
4260
        auto llargval = bcx.build.Load(fcx.llargs.get(va.id));
4261 4262 4263 4264 4265 4266 4267 4268
        auto lldestptr = bcx.build.GEP(llunionptr,
                                       vec(C_int(0), C_int(i as int)));

        bcx.build.Store(llargval, lldestptr);
        i += 1u;
    }

    bcx = trans_block_cleanups(bcx, find_scope_cx(bcx));
4269
    bcx.build.RetVoid();
4270 4271
}

4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302
// FIXME: this should do some structural hash-consing to avoid
// duplicate constants. I think. Maybe LLVM has a magical mode
// that does so later on?

fn trans_const_expr(@crate_ctxt cx, @ast.expr e) -> ValueRef {
    alt (e.node) {
        case (ast.expr_lit(?lit, ?ann)) {
            ret trans_lit(cx, *lit, ann);
        }
    }
}

fn trans_const(@crate_ctxt cx, @ast.expr e,
               &ast.def_id cid, &ast.ann ann) {
    auto t = node_ann_type(cx, ann);
    auto v = trans_const_expr(cx, e);
    if (ty.type_is_scalar(t)) {
        // The scalars come back as 1st class LLVM vals
        // which we have to stick into global constants.
        auto g = llvm.LLVMAddGlobal(cx.llmod, val_ty(v),
                                    _str.buf(cx.names.next(cx.path)));
        llvm.LLVMSetInitializer(g, v);
        llvm.LLVMSetGlobalConstant(g, True);
        llvm.LLVMSetLinkage(g, lib.llvm.LLVMPrivateLinkage
                            as llvm.Linkage);
        cx.consts.insert(cid, g);
    } else {
        cx.consts.insert(cid, v);
    }
}

4303
fn trans_item(@crate_ctxt cx, &ast.item item) {
4304
    alt (item.node) {
4305
        case (ast.item_fn(?name, ?f, ?tps, ?fid, ?ann)) {
4306
            auto sub_cx = @rec(path=cx.path + sep() + name with *cx);
4307
            trans_fn(sub_cx, f, fid, none[TypeRef], tps, ann);
4308
        }
4309
        case (ast.item_obj(?name, ?ob, ?tps, ?oid, ?ann)) {
4310
            auto sub_cx = @rec(path=cx.path + sep() + name,
4311
                               obj_typarams=tps,
4312
                               obj_fields=ob.fields with *cx);
4313
            trans_obj(sub_cx, ob, oid, tps, ann);
4314
        }
4315
        case (ast.item_mod(?name, ?m, _)) {
4316
            auto sub_cx = @rec(path=cx.path + sep() + name with *cx);
4317
            trans_mod(sub_cx, m);
4318
        }
4319
        case (ast.item_tag(?name, ?variants, ?tps, ?tag_id)) {
4320
            auto sub_cx = @rec(path=cx.path + sep() + name with *cx);
4321
            auto i = 0;
4322
            for (ast.variant variant in variants) {
4323
                trans_tag_variant(sub_cx, tag_id, variant, i, tps);
4324
                i += 1;
4325 4326
            }
        }
4327
        case (ast.item_const(?name, _, ?expr, ?cid, ?ann)) {
4328
            auto sub_cx = @rec(path=cx.path + sep() + name with *cx);
4329 4330
            trans_const(sub_cx, expr, cid, ann);
        }
4331
        case (_) { /* fall through */ }
4332 4333 4334
    }
}

4335
fn trans_mod(@crate_ctxt cx, &ast._mod m) {
4336 4337
    for (@ast.item item in m.items) {
        trans_item(cx, *item);
4338 4339 4340
    }
}

4341 4342 4343 4344 4345 4346 4347 4348
fn get_pair_fn_ty(TypeRef llpairty) -> TypeRef {
    // Bit of a kludge: pick the fn typeref out of the pair.
    let vec[TypeRef] pair_tys = vec(T_nil(), T_nil());
    llvm.LLVMGetStructElementTypes(llpairty,
                                   _vec.buf[TypeRef](pair_tys));
    ret llvm.LLVMGetElementType(pair_tys.(0));
}

4349 4350 4351 4352 4353 4354 4355
fn decl_fn_and_pair(@crate_ctxt cx,
                    str kind,
                    str name,
                    &ast.ann ann,
                    ast.def_id id) {

    auto llpairty = node_type(cx, ann);
4356
    auto llfty = get_pair_fn_ty(llpairty);
4357 4358

    // Declare the function itself.
4359
    let str s = cx.names.next("_rust_" + kind) + sep() + name;
4360 4361 4362
    let ValueRef llfn = decl_fastcall_fn(cx.llmod, s, llfty);

    // Declare the global constant pair that points to it.
4363
    let str ps = cx.names.next("_rust_" + kind + "_pair") + sep() + name;
4364 4365 4366
    let ValueRef gvar = llvm.LLVMAddGlobal(cx.llmod, llpairty,
                                           _str.buf(ps));
    auto pair = C_struct(vec(llfn,
4367
                             C_null(T_opaque_closure_ptr(cx.tn))));
4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378

    llvm.LLVMSetInitializer(gvar, pair);
    llvm.LLVMSetGlobalConstant(gvar, True);
    llvm.LLVMSetLinkage(gvar,
                        lib.llvm.LLVMPrivateLinkage
                        as llvm.Linkage);

    cx.item_ids.insert(id, llfn);
    cx.fn_pairs.insert(id, gvar);
}

4379 4380 4381 4382 4383 4384 4385 4386
fn decl_native_fn_and_pair(@crate_ctxt cx,
                           str name,
                           &ast.ann ann,
                           ast.def_id id) {

    auto llpairty = node_type(cx, ann);
    auto llfty = get_pair_fn_ty(llpairty);

4387
    let ValueRef llfn = decl_cdecl_fn(cx.llmod, name, llfty);
4388 4389 4390
    cx.item_ids.insert(id, llfn);
}

4391 4392 4393 4394 4395
fn collect_native_item(&@crate_ctxt cx, @ast.native_item i) -> @crate_ctxt {
    alt (i.node) {
        case (ast.native_item_fn(?name, _, _, ?fid, ?ann)) {
            cx.native_items.insert(fid, i);
            if (! cx.obj_methods.contains_key(fid)) {
4396
                decl_native_fn_and_pair(cx, name, ann, fid);
4397 4398 4399 4400 4401 4402
            }
        }
        case (_) { /* fall through */ }
    }
    ret cx;
}
4403

4404
fn collect_item(&@crate_ctxt cx, @ast.item i) -> @crate_ctxt {
4405

4406
    alt (i.node) {
4407
        case (ast.item_fn(?name, ?f, _, ?fid, ?ann)) {
4408
            cx.items.insert(fid, i);
4409 4410 4411
            if (! cx.obj_methods.contains_key(fid)) {
                decl_fn_and_pair(cx, "fn", name, ann, fid);
            }
4412 4413
        }

4414 4415
        case (ast.item_obj(?name, ?ob, _, ?oid, ?ann)) {
            cx.items.insert(oid, i);
4416 4417 4418 4419
            decl_fn_and_pair(cx, "obj_ctor", name, ann, oid);
            for (@ast.method m in ob.methods) {
                cx.obj_methods.insert(m.node.id, ());
            }
4420 4421
        }

4422 4423 4424 4425
        case (ast.item_const(?name, _, _, ?cid, _)) {
            cx.items.insert(cid, i);
        }

4426 4427 4428
        case (ast.item_mod(?name, ?m, ?mid)) {
            cx.items.insert(mid, i);
        }
4429 4430 4431 4432

        case (ast.item_tag(_, ?variants, _, ?tag_id)) {
            auto vi = new_def_hash[uint]();
            auto navi = new_def_hash[uint]();
4433 4434
            let vec[tup(ast.def_id,arity)] variant_info = vec();
            cx.tags.insert(tag_id, @rec(th=mk_type_handle(),
4435 4436
                                        mutable variants=variant_info,
                                        mutable size=0u));
4437
            cx.items.insert(tag_id, i);
4438 4439
        }

4440
        case (_) { /* fall through */ }
4441 4442 4443 4444 4445
    }
    ret cx;
}


4446
fn collect_items(@crate_ctxt cx, @ast.crate crate) {
4447

4448 4449
    let fold.ast_fold[@crate_ctxt] fld =
        fold.new_identity_fold[@crate_ctxt]();
4450

4451 4452
    fld = @rec( update_env_for_item = bind collect_item(_,_),
                update_env_for_native_item = bind collect_native_item(_,_)
4453 4454
                with *fld );

4455
    fold.fold_crate[@crate_ctxt](cx, fld, crate);
4456 4457
}

4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487
fn collect_tag_ctor(&@crate_ctxt cx, @ast.item i) -> @crate_ctxt {

    alt (i.node) {

        case (ast.item_tag(_, ?variants, _, _)) {
            for (ast.variant variant in variants) {
                if (_vec.len[ast.variant_arg](variant.args) != 0u) {
                    decl_fn_and_pair(cx, "tag", variant.name,
                                     variant.ann, variant.id);
                }
            }
        }

        case (_) { /* fall through */ }
    }
    ret cx;
}

fn collect_tag_ctors(@crate_ctxt cx, @ast.crate crate) {

    let fold.ast_fold[@crate_ctxt] fld =
        fold.new_identity_fold[@crate_ctxt]();

    fld = @rec( update_env_for_item = bind collect_tag_ctor(_,_)
                with *fld );

    fold.fold_crate[@crate_ctxt](cx, fld, crate);
}


4488 4489 4490 4491 4492 4493
// The tag type resolution pass, which determines all the LLVM types that
// correspond to each tag type in the crate.

fn resolve_tag_types_for_item(&@crate_ctxt cx, @ast.item i) -> @crate_ctxt {
    alt (i.node) {
        case (ast.item_tag(_, ?variants, _, ?tag_id)) {
4494 4495
            auto max_align = 0u;
            auto max_size = 0u;
4496 4497 4498 4499 4500 4501

            auto info = cx.tags.get(tag_id);
            let vec[tup(ast.def_id,arity)] variant_info = vec();

            for (ast.variant variant in variants) {
                auto arity_info;
4502
                if (_vec.len[ast.variant_arg](variant.args) > 0u) {
4503
                    auto llvariantty = type_of_variant(cx, variant);
G
Graydon Hoare 已提交
4504 4505 4506 4507 4508 4509
                    auto align =
                        llvm.LLVMPreferredAlignmentOfType(cx.td.lltd,
                                                          llvariantty);
                    auto size =
                        llvm.LLVMStoreSizeOfType(cx.td.lltd,
                                                 llvariantty) as uint;
4510 4511
                    if (max_align < align) { max_align = align; }
                    if (max_size < size) { max_size = size; }
4512 4513 4514 4515 4516 4517 4518 4519 4520 4521

                    arity_info = n_ary;
                } else {
                    arity_info = nullary;
                }

                variant_info += vec(tup(variant.id, arity_info));
            }

            info.variants = variant_info;
4522
            info.size = max_size;
4523

4524 4525 4526
            // FIXME: alignment is wrong here, manually insert padding I
            // guess :(
            auto tag_ty = T_struct(vec(T_int(), T_array(T_i8(), max_size)));
4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537
            auto th = cx.tags.get(tag_id).th.llth;
            llvm.LLVMRefineType(llvm.LLVMResolveTypeHandle(th), tag_ty);
        }
        case (_) {
            // fall through
        }
    }

    ret cx;
}

4538 4539 4540 4541 4542 4543 4544 4545 4546 4547
fn resolve_tag_types(@crate_ctxt cx, @ast.crate crate) {
    let fold.ast_fold[@crate_ctxt] fld =
        fold.new_identity_fold[@crate_ctxt]();

    fld = @rec( update_env_for_item = bind resolve_tag_types_for_item(_,_)
                with *fld );

    fold.fold_crate[@crate_ctxt](cx, fld, crate);
}

4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566
// The constant translation pass.

fn trans_constant(&@crate_ctxt cx, @ast.item it) -> @crate_ctxt {
    alt (it.node) {
        case (ast.item_tag(_, ?variants, _, ?tag_id)) {
            auto info = cx.tags.get(tag_id);

            auto tag_ty = llvm.LLVMResolveTypeHandle(info.th.llth);
            check (llvm.LLVMCountStructElementTypes(tag_ty) == 2u);
            auto elts = vec(0 as TypeRef, 0 as TypeRef);
            llvm.LLVMGetStructElementTypes(tag_ty, _vec.buf[TypeRef](elts));
            auto union_ty = elts.(1);

            auto i = 0u;
            while (i < _vec.len[tup(ast.def_id,arity)](info.variants)) {
                auto variant_info = info.variants.(i);
                alt (variant_info._1) {
                    case (nullary) {
                        // Nullary tags become constants.
4567
                        auto union_val = C_zero_byte_arr(info.size as uint);
4568
                        auto val = C_struct(vec(C_int(i as int), union_val));
G
Graydon Hoare 已提交
4569

4570 4571 4572 4573 4574
                        // FIXME: better name
                        auto gvar = llvm.LLVMAddGlobal(cx.llmod, val_ty(val),
                                                       _str.buf("tag"));
                        llvm.LLVMSetInitializer(gvar, val);
                        llvm.LLVMSetGlobalConstant(gvar, True);
4575 4576 4577
                        llvm.LLVMSetLinkage(gvar,
                                            lib.llvm.LLVMPrivateLinkage
                                            as llvm.Linkage);
4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588
                        cx.item_ids.insert(variant_info._0, gvar);
                    }
                    case (n_ary) {
                        // N-ary tags are treated as functions and generated
                        // later.
                    }
                }

                i += 1u;
            }
        }
4589 4590 4591 4592 4593 4594 4595 4596

        case (ast.item_const(?name, _, ?expr, ?cid, ?ann)) {
            // FIXME: The whole expr-translation system needs cloning to deal
            // with consts.
            auto v = C_int(1);
            cx.item_ids.insert(cid, v);
        }

4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613
        case (_) {
            // empty
        }
    }

    ret cx;
}

fn trans_constants(@crate_ctxt cx, @ast.crate crate) {
    let fold.ast_fold[@crate_ctxt] fld =
        fold.new_identity_fold[@crate_ctxt]();

    fld = @rec(update_env_for_item = bind trans_constant(_,_) with *fld);

    fold.fold_crate[@crate_ctxt](cx, fld, crate);
}

4614 4615 4616 4617
fn p2i(ValueRef v) -> ValueRef {
    ret llvm.LLVMConstPtrToInt(v, T_int());
}

4618 4619 4620 4621
fn i2p(ValueRef v, TypeRef t) -> ValueRef {
    ret llvm.LLVMConstIntToPtr(v, t);
}

4622
fn trans_exit_task_glue(@crate_ctxt cx) {
4623 4624 4625 4626
    let vec[TypeRef] T_args = vec();
    let vec[ValueRef] V_args = vec();

    auto llfn = cx.glues.exit_task_glue;
4627
    let ValueRef lltaskptr = llvm.LLVMGetParam(llfn, 3u);
4628 4629
    auto fcx = @rec(llfn=llfn,
                    lltaskptr=lltaskptr,
4630
                    llenv=C_null(T_opaque_closure_ptr(cx.tn)),
4631
                    llretptr=C_null(T_ptr(T_nil())),
4632
                    mutable llself=none[ValueRef],
4633
                    mutable lliterbody=none[ValueRef],
4634
                    llargs=new_def_hash[ValueRef](),
4635
                    llobjfields=new_def_hash[ValueRef](),
4636
                    lllocals=new_def_hash[ValueRef](),
4637
                    lltydescs=new_def_hash[ValueRef](),
4638
                    ccx=cx);
4639

4640
    auto bcx = new_top_block_ctxt(fcx);
4641
    trans_upcall(bcx, "upcall_exit", V_args);
4642
    bcx.build.RetVoid();
4643 4644
}

4645
fn create_typedefs(@crate_ctxt cx) {
4646 4647 4648
    llvm.LLVMAddTypeName(cx.llmod, _str.buf("crate"), T_crate(cx.tn));
    llvm.LLVMAddTypeName(cx.llmod, _str.buf("task"), T_task(cx.tn));
    llvm.LLVMAddTypeName(cx.llmod, _str.buf("tydesc"), T_tydesc(cx.tn));
4649 4650
}

4651
fn create_crate_constant(@crate_ctxt cx) {
4652

4653
    let ValueRef crate_addr = p2i(cx.crate_ptr);
4654 4655 4656 4657 4658 4659 4660

    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);

4661 4662
    let ValueRef exit_task_glue_off =
        llvm.LLVMConstSub(p2i(cx.glues.exit_task_glue), crate_addr);
4663 4664 4665

    let ValueRef crate_val =
        C_struct(vec(C_null(T_int()),     // ptrdiff_t image_base_off
4666
                     p2i(cx.crate_ptr),   // uintptr_t self_addr
4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677
                     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
4678 4679
                     C_null(T_int()),     // int n_libs
                     C_int(abi.abi_x86_rustc_fastcall) // uintptr_t abi_tag
4680 4681
                     ));

4682
    llvm.LLVMSetInitializer(cx.crate_ptr, crate_val);
4683 4684
}

4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708
fn find_main_fn(@crate_ctxt cx) -> ValueRef {
    auto e = sep() + "main";
    let ValueRef v = C_nil();
    let uint n = 0u;
    for each (tup(str,ValueRef) i in cx.item_names.items()) {
        if (_str.ends_with(i._0, e)) {
            n += 1u;
            v = i._1;
        }
    }
    alt (n) {
        case (0u) {
            cx.sess.err("main fn not found");
        }
        case (1u) {
            ret v;
        }
        case (_) {
            cx.sess.err("multiple main fns found");
        }
    }
    fail;
}

4709
fn trans_main_fn(@crate_ctxt cx, ValueRef llcrate) {
4710 4711 4712
    auto T_main_args = vec(T_int(), T_int());
    auto T_rust_start_args = vec(T_int(), T_int(), T_int(), T_int());

4713 4714 4715 4716 4717 4718 4719
    auto main_name;
    if (_str.eq(std.os.target_os(), "win32")) {
        main_name = "WinMain@16";
    } else {
        main_name = "main";
    }

4720
    auto llmain =
4721
        decl_cdecl_fn(cx.llmod, main_name, T_fn(T_main_args, T_int()));
4722

4723 4724
    auto llrust_start = decl_cdecl_fn(cx.llmod, "rust_start",
                                      T_fn(T_rust_start_args, T_int()));
4725 4726 4727

    auto llargc = llvm.LLVMGetParam(llmain, 0u);
    auto llargv = llvm.LLVMGetParam(llmain, 1u);
4728
    auto llrust_main = find_main_fn(cx);
4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739

    //
    // 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(""));
4740
    auto b = new_builder(llbb);
4741 4742 4743 4744 4745 4746

    auto start_args = vec(p2i(llrust_main), p2i(llcrate), llargc, llargv);

    b.Ret(b.Call(llrust_start, start_args));
}

4747 4748
fn declare_intrinsics(ModuleRef llmod) -> hashmap[str,ValueRef] {

4749
    let vec[TypeRef] T_trap_args = vec();
4750 4751 4752 4753 4754 4755
    auto trap = decl_cdecl_fn(llmod, "llvm.trap",
                              T_fn(T_trap_args, T_void()));

    auto intrinsics = new_str_hash[ValueRef]();
    intrinsics.insert("llvm.trap", trap);
    ret intrinsics;
4756 4757
}

4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775

fn trace_str(@block_ctxt cx, str s) {
    trans_upcall(cx, "upcall_trace_str", vec(p2i(C_cstr(cx.fcx.ccx, s))));
}

fn trace_word(@block_ctxt cx, ValueRef v) {
    trans_upcall(cx, "upcall_trace_word", vec(v));
}

fn trace_ptr(@block_ctxt cx, ValueRef v) {
    trace_word(cx, cx.build.PtrToInt(v, T_int()));
}

fn trap(@block_ctxt bcx) {
    let vec[ValueRef] v = vec();
    bcx.build.Call(bcx.fcx.ccx.intrinsics.get("llvm.trap"), v);
}

4776 4777 4778 4779 4780 4781 4782 4783
fn check_module(ModuleRef llmod) {
    auto pm = mk_pass_manager();
    llvm.LLVMAddVerifierPass(pm.llpm);
    llvm.LLVMRunPassManager(pm.llpm, llmod);

    // TODO: run the linter here also, once there are llvm-c bindings for it.
}

4784 4785
fn make_no_op_type_glue(ModuleRef llmod, type_names tn) -> ValueRef {
    auto ty = T_fn(vec(T_taskptr(tn), T_ptr(T_i8())), T_void());
4786
    auto fun = decl_fastcall_fn(llmod, abi.no_op_type_glue_name(), ty);
4787 4788
    auto bb_name = _str.buf("_rust_no_op_type_glue_bb");
    auto llbb = llvm.LLVMAppendBasicBlock(fun, bb_name);
4789
    new_builder(llbb).RetVoid();
4790 4791 4792
    ret fun;
}

4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837
fn make_memcpy_glue(ModuleRef llmod) -> ValueRef {

    // We're not using the LLVM memcpy intrinsic. It appears to call through
    // to the platform memcpy in some cases, which is not terribly safe to run
    // on a rust stack.

    auto p8 = T_ptr(T_i8());

    auto ty = T_fn(vec(p8, p8, T_int()), T_void());
    auto fun = decl_fastcall_fn(llmod, abi.memcpy_glue_name(), ty);

    auto initbb = llvm.LLVMAppendBasicBlock(fun, _str.buf("init"));
    auto hdrbb = llvm.LLVMAppendBasicBlock(fun, _str.buf("hdr"));
    auto loopbb = llvm.LLVMAppendBasicBlock(fun, _str.buf("loop"));
    auto endbb = llvm.LLVMAppendBasicBlock(fun, _str.buf("end"));

    auto dst = llvm.LLVMGetParam(fun, 0u);
    auto src = llvm.LLVMGetParam(fun, 1u);
    auto count = llvm.LLVMGetParam(fun, 2u);

    // Init block.
    auto ib = new_builder(initbb);
    auto ip = ib.Alloca(T_int());
    ib.Store(C_int(0), ip);
    ib.Br(hdrbb);

    // Loop-header block
    auto hb = new_builder(hdrbb);
    auto i = hb.Load(ip);
    hb.CondBr(hb.ICmp(lib.llvm.LLVMIntEQ, count, i), endbb, loopbb);

    // Loop-body block
    auto lb = new_builder(loopbb);
    i = lb.Load(ip);
    lb.Store(lb.Load(lb.GEP(src, vec(i))),
             lb.GEP(dst, vec(i)));
    lb.Store(lb.Add(i, C_int(1)), ip);
    lb.Br(hdrbb);

    // End block
    auto eb = new_builder(endbb);
    eb.RetVoid();
    ret fun;
}

4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878
fn make_bzero_glue(ModuleRef llmod) -> ValueRef {

    // We're not using the LLVM memset intrinsic. Same as with memcpy.

    auto p8 = T_ptr(T_i8());

    auto ty = T_fn(vec(p8, T_int()), T_void());
    auto fun = decl_fastcall_fn(llmod, abi.bzero_glue_name(), ty);

    auto initbb = llvm.LLVMAppendBasicBlock(fun, _str.buf("init"));
    auto hdrbb = llvm.LLVMAppendBasicBlock(fun, _str.buf("hdr"));
    auto loopbb = llvm.LLVMAppendBasicBlock(fun, _str.buf("loop"));
    auto endbb = llvm.LLVMAppendBasicBlock(fun, _str.buf("end"));

    auto dst = llvm.LLVMGetParam(fun, 0u);
    auto count = llvm.LLVMGetParam(fun, 1u);

    // Init block.
    auto ib = new_builder(initbb);
    auto ip = ib.Alloca(T_int());
    ib.Store(C_int(0), ip);
    ib.Br(hdrbb);

    // Loop-header block
    auto hb = new_builder(hdrbb);
    auto i = hb.Load(ip);
    hb.CondBr(hb.ICmp(lib.llvm.LLVMIntEQ, count, i), endbb, loopbb);

    // Loop-body block
    auto lb = new_builder(loopbb);
    i = lb.Load(ip);
    lb.Store(C_integral(0, T_i8()), lb.GEP(dst, vec(i)));
    lb.Store(lb.Add(i, C_int(1)), ip);
    lb.Br(hdrbb);

    // End block
    auto eb = new_builder(endbb);
    eb.RetVoid();
    ret fun;
}

4879 4880 4881
fn make_glues(ModuleRef llmod, type_names tn) -> @glue_fns {
    ret @rec(activate_glue = decl_glue(llmod, tn, abi.activate_glue_name()),
             yield_glue = decl_glue(llmod, tn, abi.yield_glue_name()),
4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892
             /*
              * 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(),
4893 4894 4895 4896
                                            T_fn(vec(T_int(),
                                                     T_int(),
                                                     T_int(),
                                                     T_taskptr(tn)),
4897
                                                 T_void())),
4898 4899

             upcall_glues =
4900
             _vec.init_fn[ValueRef](bind decl_upcall_glue(llmod, tn, _),
G
Graydon Hoare 已提交
4901
                                    abi.n_upcall_glues as uint),
4902
             no_op_type_glue = make_no_op_type_glue(llmod, tn),
4903 4904
             memcpy_glue = make_memcpy_glue(llmod),
             bzero_glue = make_bzero_glue(llmod));
4905 4906
}

4907 4908
fn trans_crate(session.session sess, @ast.crate crate, str output,
               bool shared) {
4909 4910 4911 4912
    auto llmod =
        llvm.LLVMModuleCreateWithNameInContext(_str.buf("rust_out"),
                                               llvm.LLVMGetGlobalContext());

4913 4914
    llvm.LLVMSetDataLayout(llmod, _str.buf(x86.get_data_layout()));
    llvm.LLVMSetTarget(llmod, _str.buf(x86.get_target_triple()));
4915
    auto td = mk_target_data(x86.get_data_layout());
4916
    auto tn = mk_type_names();
4917
    let ValueRef crate_ptr =
4918
        llvm.LLVMAddGlobal(llmod, T_crate(tn), _str.buf("rust_crate"));
4919

4920 4921
    llvm.LLVMSetModuleInlineAsm(llmod, _str.buf(x86.get_module_asm()));

4922
    auto intrinsics = declare_intrinsics(llmod);
4923

4924
    auto glues = make_glues(llmod, tn);
4925 4926 4927
    auto hasher = ty.hash_ty;
    auto eqer = ty.eq_ty;
    auto tydescs = map.mk_hashmap[@ty.t,ValueRef](hasher, eqer);
4928
    let vec[ast.ty_param] obj_typarams = vec();
4929
    let vec[ast.obj_field] obj_fields = vec();
4930

4931 4932
    auto cx = @rec(sess = sess,
                   llmod = llmod,
4933
                   td = td,
4934
                   tn = tn,
4935
                   crate_ptr = crate_ptr,
4936
                   upcalls = new_str_hash[ValueRef](),
4937
                   intrinsics = intrinsics,
4938 4939
                   item_names = new_str_hash[ValueRef](),
                   item_ids = new_def_hash[ValueRef](),
4940
                   items = new_def_hash[@ast.item](),
4941
                   native_items = new_def_hash[@ast.native_item](),
4942
                   tags = new_def_hash[@tag_info](),
4943
                   fn_pairs = new_def_hash[ValueRef](),
4944
                   consts = new_def_hash[ValueRef](),
4945
                   obj_methods = new_def_hash[()](),
4946
                   tydescs = tydescs,
4947
                   obj_typarams = obj_typarams,
4948
                   obj_fields = obj_fields,
4949
                   glues = glues,
4950
                   names = namegen(0),
4951
                   path = "_rust");
4952

4953 4954
    create_typedefs(cx);

4955
    collect_items(cx, crate);
4956
    resolve_tag_types(cx, crate);
4957
    collect_tag_ctors(cx, crate);
4958
    trans_constants(cx, crate);
4959

4960
    trans_mod(cx, crate.node.module);
4961
    trans_exit_task_glue(cx);
4962
    create_crate_constant(cx);
4963
    if (!shared) {
4964
        trans_main_fn(cx, cx.crate_ptr);
4965
    }
4966

4967 4968
    check_module(llmod);

4969
    llvm.LLVMWriteBitcodeToFile(llmod, _str.buf(output));
4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982
    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:
//