2012-12-03 18:48:01 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-08-28 17:54:45 -05:00
|
|
|
use lib::llvm::ValueRef;
|
2012-12-13 15:05:22 -06:00
|
|
|
use middle::trans::base::*;
|
|
|
|
use middle::trans::common::*;
|
|
|
|
use middle::trans::datum::*;
|
2012-08-28 17:54:45 -05:00
|
|
|
|
|
|
|
fn macros() { include!("macros.rs"); } // FIXME(#3114): Macro import/export.
|
|
|
|
|
|
|
|
fn trans_block(bcx: block, b: ast::blk, dest: expr::Dest) -> block {
|
|
|
|
let _icx = bcx.insn_ctxt("trans_block");
|
|
|
|
let mut bcx = bcx;
|
|
|
|
do block_locals(b) |local| {
|
|
|
|
bcx = alloc_local(bcx, local);
|
|
|
|
};
|
2012-09-18 23:41:13 -05:00
|
|
|
for vec::each(b.node.stmts) |s| {
|
2012-08-28 17:54:45 -05:00
|
|
|
debuginfo::update_source_pos(bcx, b.span);
|
2012-09-18 23:41:37 -05:00
|
|
|
bcx = trans_stmt(bcx, **s);
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
match b.node.expr {
|
|
|
|
Some(e) => {
|
|
|
|
debuginfo::update_source_pos(bcx, e.span);
|
|
|
|
bcx = expr::trans_into(bcx, e, dest);
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
assert dest == expr::Ignore || bcx.unreachable;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return bcx;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_if(bcx: block,
|
|
|
|
cond: @ast::expr,
|
|
|
|
thn: ast::blk,
|
|
|
|
els: Option<@ast::expr>,
|
|
|
|
dest: expr::Dest)
|
|
|
|
-> block
|
|
|
|
{
|
|
|
|
debug!("trans_if(bcx=%s, cond=%s, thn=%?, dest=%s)",
|
|
|
|
bcx.to_str(), bcx.expr_to_str(cond), thn.node.id,
|
|
|
|
dest.to_str(bcx.ccx()));
|
|
|
|
let _indenter = indenter();
|
|
|
|
|
|
|
|
let _icx = bcx.insn_ctxt("trans_if");
|
|
|
|
let Result {bcx, val: cond_val} =
|
2012-09-11 23:25:01 -05:00
|
|
|
expr::trans_to_datum(bcx, cond).to_result();
|
2012-08-28 17:54:45 -05:00
|
|
|
|
|
|
|
let then_bcx_in = scope_block(bcx, thn.info(), ~"then");
|
|
|
|
let else_bcx_in = scope_block(bcx, els.info(), ~"else");
|
|
|
|
CondBr(bcx, cond_val, then_bcx_in.llbb, else_bcx_in.llbb);
|
|
|
|
|
|
|
|
debug!("then_bcx_in=%s, else_bcx_in=%s",
|
|
|
|
then_bcx_in.to_str(), else_bcx_in.to_str());
|
|
|
|
|
|
|
|
let then_bcx_out = trans_block(then_bcx_in, thn, dest);
|
|
|
|
let then_bcx_out = trans_block_cleanups(then_bcx_out,
|
|
|
|
block_cleanups(then_bcx_in));
|
|
|
|
|
|
|
|
// Calling trans_block directly instead of trans_expr
|
|
|
|
// because trans_expr will create another scope block
|
|
|
|
// context for the block, but we've already got the
|
|
|
|
// 'else' context
|
|
|
|
let else_bcx_out = match els {
|
|
|
|
Some(elexpr) => {
|
|
|
|
match elexpr.node {
|
|
|
|
ast::expr_if(_, _, _) => {
|
|
|
|
let elseif_blk = ast_util::block_from_expr(elexpr);
|
|
|
|
trans_block(else_bcx_in, elseif_blk, dest)
|
|
|
|
}
|
2012-12-04 12:50:00 -06:00
|
|
|
ast::expr_block(ref blk) => {
|
|
|
|
trans_block(else_bcx_in, (*blk), dest)
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
// would be nice to have a constraint on ifs
|
|
|
|
_ => bcx.tcx().sess.bug(~"strange alternative in if")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => else_bcx_in
|
|
|
|
};
|
|
|
|
let else_bcx_out = trans_block_cleanups(else_bcx_out,
|
|
|
|
block_cleanups(else_bcx_in));
|
|
|
|
return join_blocks(bcx, ~[then_bcx_out, else_bcx_out]);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
fn join_blocks(parent_bcx: block, in_cxs: ~[block]) -> block {
|
|
|
|
let out = sub_block(parent_bcx, ~"join");
|
|
|
|
let mut reachable = false;
|
2012-09-18 23:41:13 -05:00
|
|
|
for vec::each(in_cxs) |bcx| {
|
2012-08-28 17:54:45 -05:00
|
|
|
if !bcx.unreachable {
|
2012-09-18 23:41:37 -05:00
|
|
|
Br(*bcx, out.llbb);
|
2012-08-28 17:54:45 -05:00
|
|
|
reachable = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !reachable {
|
|
|
|
Unreachable(out);
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_while(bcx: block, cond: @ast::expr, body: ast::blk)
|
|
|
|
-> block {
|
|
|
|
let _icx = bcx.insn_ctxt("trans_while");
|
|
|
|
let next_bcx = sub_block(bcx, ~"while next");
|
|
|
|
|
|
|
|
// bcx
|
|
|
|
// |
|
|
|
|
// loop_bcx
|
|
|
|
// |
|
|
|
|
// cond_bcx_in <--------+
|
|
|
|
// | |
|
|
|
|
// cond_bcx_out |
|
|
|
|
// | | |
|
|
|
|
// | body_bcx_in |
|
|
|
|
// +------+ | |
|
|
|
|
// | body_bcx_out --+
|
|
|
|
// next_bcx
|
|
|
|
|
2012-10-18 14:20:18 -05:00
|
|
|
let loop_bcx = loop_scope_block(bcx, next_bcx, None, ~"`while`",
|
|
|
|
body.info());
|
2012-08-28 17:54:45 -05:00
|
|
|
let cond_bcx_in = scope_block(loop_bcx, cond.info(), ~"while loop cond");
|
|
|
|
let body_bcx_in = scope_block(loop_bcx, body.info(), ~"while loop body");
|
|
|
|
Br(bcx, loop_bcx.llbb);
|
|
|
|
Br(loop_bcx, cond_bcx_in.llbb);
|
|
|
|
|
|
|
|
// compile the condition
|
|
|
|
let Result {bcx: cond_bcx_out, val: cond_val} =
|
2012-09-11 23:25:01 -05:00
|
|
|
expr::trans_to_datum(cond_bcx_in, cond).to_result();
|
2012-08-28 17:54:45 -05:00
|
|
|
let cond_bcx_out =
|
|
|
|
trans_block_cleanups(cond_bcx_out, block_cleanups(cond_bcx_in));
|
|
|
|
CondBr(cond_bcx_out, cond_val, body_bcx_in.llbb, next_bcx.llbb);
|
|
|
|
|
|
|
|
// loop body:
|
|
|
|
let body_bcx_out = trans_block(body_bcx_in, body, expr::Ignore);
|
|
|
|
cleanup_and_Br(body_bcx_out, body_bcx_in, cond_bcx_in.llbb);
|
|
|
|
|
|
|
|
return next_bcx;
|
|
|
|
}
|
|
|
|
|
2012-10-18 14:20:18 -05:00
|
|
|
fn trans_loop(bcx:block, body: ast::blk, opt_label: Option<ident>) -> block {
|
2012-08-28 17:54:45 -05:00
|
|
|
let _icx = bcx.insn_ctxt("trans_loop");
|
|
|
|
let next_bcx = sub_block(bcx, ~"next");
|
2012-10-18 14:20:18 -05:00
|
|
|
let body_bcx_in = loop_scope_block(bcx, next_bcx, opt_label, ~"`loop`",
|
|
|
|
body.info());
|
2012-08-28 17:54:45 -05:00
|
|
|
Br(bcx, body_bcx_in.llbb);
|
|
|
|
let body_bcx_out = trans_block(body_bcx_in, body, expr::Ignore);
|
|
|
|
cleanup_and_Br(body_bcx_out, body_bcx_in, body_bcx_in.llbb);
|
|
|
|
return next_bcx;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_log(log_ex: @ast::expr,
|
|
|
|
lvl: @ast::expr,
|
|
|
|
bcx: block,
|
|
|
|
e: @ast::expr) -> block
|
|
|
|
{
|
|
|
|
let _icx = bcx.insn_ctxt("trans_log");
|
|
|
|
let ccx = bcx.ccx();
|
|
|
|
let mut bcx = bcx;
|
|
|
|
if ty::type_is_bot(expr_ty(bcx, lvl)) {
|
|
|
|
return expr::trans_into(bcx, lvl, expr::Ignore);
|
|
|
|
}
|
|
|
|
|
|
|
|
let modpath = vec::append(
|
|
|
|
~[path_mod(ccx.sess.ident_of(ccx.link_meta.name))],
|
|
|
|
vec::filter(bcx.fcx.path, |e|
|
2012-09-28 00:20:47 -05:00
|
|
|
match *e { path_mod(_) => true, _ => false }
|
2012-08-28 17:54:45 -05:00
|
|
|
));
|
|
|
|
let modname = path_str(ccx.sess, modpath);
|
|
|
|
|
|
|
|
let global = if ccx.module_data.contains_key(modname) {
|
|
|
|
ccx.module_data.get(modname)
|
|
|
|
} else {
|
2012-09-18 13:46:39 -05:00
|
|
|
let s = link::mangle_internal_name_by_path_and_seq(
|
2012-08-28 17:54:45 -05:00
|
|
|
ccx, modpath, ~"loglevel");
|
|
|
|
let global = str::as_c_str(s, |buf| {
|
|
|
|
llvm::LLVMAddGlobal(ccx.llmod, T_i32(), buf)
|
|
|
|
});
|
|
|
|
llvm::LLVMSetGlobalConstant(global, False);
|
|
|
|
llvm::LLVMSetInitializer(global, C_null(T_i32()));
|
|
|
|
lib::llvm::SetLinkage(global, lib::llvm::InternalLinkage);
|
|
|
|
ccx.module_data.insert(modname, global);
|
|
|
|
global
|
|
|
|
};
|
|
|
|
let current_level = Load(bcx, global);
|
|
|
|
let level = unpack_result!(bcx, {
|
|
|
|
do with_scope_result(bcx, lvl.info(), ~"level") |bcx| {
|
2012-09-11 23:25:01 -05:00
|
|
|
expr::trans_to_datum(bcx, lvl).to_result()
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
let llenabled = ICmp(bcx, lib::llvm::IntUGE, current_level, level);
|
|
|
|
do with_cond(bcx, llenabled) |bcx| {
|
|
|
|
do with_scope(bcx, log_ex.info(), ~"log") |bcx| {
|
|
|
|
let mut bcx = bcx;
|
|
|
|
|
|
|
|
// Translate the value to be logged
|
|
|
|
let val_datum = unpack_datum!(bcx, expr::trans_to_datum(bcx, e));
|
|
|
|
|
|
|
|
// Call the polymorphic log function
|
|
|
|
let val = val_datum.to_ref_llval(bcx);
|
2012-09-25 14:17:20 -05:00
|
|
|
let did = bcx.tcx().lang_items.log_type_fn.get();
|
|
|
|
let bcx = callee::trans_rtcall_or_lang_call_with_type_params(
|
|
|
|
bcx, did, ~[level, val], ~[val_datum.ty], expr::Ignore);
|
2012-08-28 17:54:45 -05:00
|
|
|
bcx
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-18 14:20:18 -05:00
|
|
|
fn trans_break_cont(bcx: block, opt_label: Option<ident>, to_end: bool)
|
2012-08-28 17:54:45 -05:00
|
|
|
-> block {
|
|
|
|
let _icx = bcx.insn_ctxt("trans_break_cont");
|
|
|
|
// Locate closest loop block, outputting cleanup as we go.
|
|
|
|
let mut unwind = bcx;
|
|
|
|
let mut target;
|
|
|
|
loop {
|
|
|
|
match unwind.kind {
|
2012-10-18 14:20:18 -05:00
|
|
|
block_scope({loop_break: Some(brk), loop_label: l, _}) => {
|
|
|
|
// If we're looking for a labeled loop, check the label...
|
2012-10-22 11:44:56 -05:00
|
|
|
target = if to_end {
|
|
|
|
brk
|
|
|
|
} else {
|
|
|
|
unwind
|
|
|
|
};
|
2012-10-18 14:20:18 -05:00
|
|
|
match opt_label {
|
|
|
|
Some(desired) => match l {
|
|
|
|
Some(actual) if actual == desired => break,
|
|
|
|
// If it doesn't match the one we want,
|
|
|
|
// don't break
|
|
|
|
_ => ()
|
|
|
|
},
|
|
|
|
None => break
|
|
|
|
}
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
unwind = match unwind.parent {
|
|
|
|
Some(bcx) => bcx,
|
|
|
|
// This is a return from a loop body block
|
|
|
|
None => {
|
|
|
|
Store(bcx, C_bool(!to_end), bcx.fcx.llretptr);
|
|
|
|
cleanup_and_leave(bcx, None, Some(bcx.fcx.llreturn));
|
|
|
|
Unreachable(bcx);
|
|
|
|
return bcx;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
cleanup_and_Br(bcx, unwind, target.llbb);
|
|
|
|
Unreachable(bcx);
|
|
|
|
return bcx;
|
|
|
|
}
|
|
|
|
|
2012-10-18 14:20:18 -05:00
|
|
|
fn trans_break(bcx: block, label_opt: Option<ident>) -> block {
|
|
|
|
return trans_break_cont(bcx, label_opt, true);
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
|
2012-10-18 14:20:18 -05:00
|
|
|
fn trans_cont(bcx: block, label_opt: Option<ident>) -> block {
|
|
|
|
return trans_break_cont(bcx, label_opt, false);
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_ret(bcx: block, e: Option<@ast::expr>) -> block {
|
|
|
|
let _icx = bcx.insn_ctxt("trans_ret");
|
|
|
|
let mut bcx = bcx;
|
|
|
|
let retptr = match copy bcx.fcx.loop_ret {
|
|
|
|
Some({flagptr, retptr}) => {
|
|
|
|
// This is a loop body return. Must set continue flag (our retptr)
|
|
|
|
// to false, return flag to true, and then store the value in the
|
|
|
|
// parent's retptr.
|
|
|
|
Store(bcx, C_bool(true), flagptr);
|
|
|
|
Store(bcx, C_bool(false), bcx.fcx.llretptr);
|
|
|
|
match e {
|
|
|
|
Some(x) => PointerCast(bcx, retptr,
|
|
|
|
T_ptr(type_of(bcx.ccx(), expr_ty(bcx, x)))),
|
|
|
|
None => retptr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => bcx.fcx.llretptr
|
|
|
|
};
|
|
|
|
match e {
|
|
|
|
Some(x) => {
|
|
|
|
bcx = expr::trans_into(bcx, x, expr::SaveIn(retptr));
|
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
cleanup_and_leave(bcx, None, Some(bcx.fcx.llreturn));
|
|
|
|
Unreachable(bcx);
|
|
|
|
return bcx;
|
|
|
|
}
|
|
|
|
fn trans_check_expr(bcx: block, chk_expr: @ast::expr,
|
|
|
|
pred_expr: @ast::expr, s: ~str) -> block {
|
|
|
|
let _icx = bcx.insn_ctxt("trans_check_expr");
|
|
|
|
let expr_str = s + ~" " + expr_to_str(pred_expr, bcx.ccx().sess.intr())
|
|
|
|
+ ~" failed";
|
|
|
|
let Result {bcx, val} = {
|
|
|
|
do with_scope_result(bcx, chk_expr.info(), ~"check") |bcx| {
|
2012-09-11 23:25:01 -05:00
|
|
|
expr::trans_to_datum(bcx, pred_expr).to_result()
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
do with_cond(bcx, Not(bcx, val)) |bcx| {
|
|
|
|
trans_fail(bcx, Some(pred_expr.span), expr_str)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_fail_expr(bcx: block,
|
|
|
|
sp_opt: Option<span>,
|
|
|
|
fail_expr: Option<@ast::expr>) -> block {
|
|
|
|
let _icx = bcx.insn_ctxt("trans_fail_expr");
|
|
|
|
let mut bcx = bcx;
|
|
|
|
match fail_expr {
|
|
|
|
Some(arg_expr) => {
|
|
|
|
let ccx = bcx.ccx(), tcx = ccx.tcx;
|
|
|
|
let arg_datum = unpack_datum!(
|
|
|
|
bcx, expr::trans_to_datum(bcx, arg_expr));
|
|
|
|
|
|
|
|
if ty::type_is_str(arg_datum.ty) {
|
|
|
|
let (lldata, _lllen) = arg_datum.get_base_and_len(bcx);
|
|
|
|
return trans_fail_value(bcx, sp_opt, lldata);
|
|
|
|
} else if bcx.unreachable || ty::type_is_bot(arg_datum.ty) {
|
|
|
|
return bcx;
|
|
|
|
} else {
|
|
|
|
bcx.sess().span_bug(
|
|
|
|
arg_expr.span, ~"fail called with unsupported type " +
|
|
|
|
ppaux::ty_to_str(tcx, arg_datum.ty));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => return trans_fail(bcx, sp_opt, ~"explicit failure")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_fail(bcx: block, sp_opt: Option<span>, fail_str: ~str)
|
|
|
|
-> block
|
|
|
|
{
|
|
|
|
let _icx = bcx.insn_ctxt("trans_fail");
|
|
|
|
let V_fail_str = C_cstr(bcx.ccx(), fail_str);
|
|
|
|
return trans_fail_value(bcx, sp_opt, V_fail_str);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_fail_value(bcx: block, sp_opt: Option<span>, V_fail_str: ValueRef)
|
|
|
|
-> block
|
|
|
|
{
|
|
|
|
let _icx = bcx.insn_ctxt("trans_fail_value");
|
|
|
|
let ccx = bcx.ccx();
|
|
|
|
let {V_filename, V_line} = match sp_opt {
|
|
|
|
Some(sp) => {
|
|
|
|
let sess = bcx.sess();
|
2012-11-12 20:24:56 -06:00
|
|
|
let loc = sess.parse_sess.cm.lookup_char_pos(sp.lo);
|
2012-08-28 17:54:45 -05:00
|
|
|
{V_filename: C_cstr(bcx.ccx(), loc.file.name),
|
|
|
|
V_line: loc.line as int}
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
{V_filename: C_cstr(bcx.ccx(), ~"<runtime>"),
|
|
|
|
V_line: 0}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let V_str = PointerCast(bcx, V_fail_str, T_ptr(T_i8()));
|
|
|
|
let V_filename = PointerCast(bcx, V_filename, T_ptr(T_i8()));
|
|
|
|
let args = ~[V_str, V_filename, C_int(ccx, V_line)];
|
2012-09-12 17:04:40 -05:00
|
|
|
let bcx = callee::trans_rtcall(bcx, ~"fail_", args, expr::Ignore);
|
2012-08-28 17:54:45 -05:00
|
|
|
Unreachable(bcx);
|
|
|
|
return bcx;
|
|
|
|
}
|
2012-09-29 06:34:11 -05:00
|
|
|
|
|
|
|
fn trans_fail_bounds_check(bcx: block, sp: span,
|
|
|
|
index: ValueRef, len: ValueRef) -> block {
|
|
|
|
let _icx = bcx.insn_ctxt("trans_fail_bounds_check");
|
|
|
|
let ccx = bcx.ccx();
|
|
|
|
|
2012-11-12 20:24:56 -06:00
|
|
|
let loc = bcx.sess().parse_sess.cm.lookup_char_pos(sp.lo);
|
2012-09-29 06:34:11 -05:00
|
|
|
let line = C_int(ccx, loc.line as int);
|
|
|
|
let filename_cstr = C_cstr(bcx.ccx(), loc.file.name);
|
|
|
|
let filename = PointerCast(bcx, filename_cstr, T_ptr(T_i8()));
|
|
|
|
|
|
|
|
let args = ~[filename, line, index, len];
|
|
|
|
let bcx = callee::trans_rtcall(bcx, ~"fail_bounds_check", args,
|
|
|
|
expr::Ignore);
|
|
|
|
Unreachable(bcx);
|
|
|
|
return bcx;
|
|
|
|
}
|
|
|
|
|