2012-08-28 17:54:45 -05:00
|
|
|
/*!
|
|
|
|
|
|
|
|
# Translation of expressions.
|
|
|
|
|
|
|
|
## User's guide
|
|
|
|
|
|
|
|
If you wish to translate an expression, there are two basic modes:
|
|
|
|
|
|
|
|
1. `trans_into(block, expr, Dest) -> block`
|
|
|
|
2. `trans_to_datum(block, expr) -> DatumBlock`
|
|
|
|
|
|
|
|
`trans_into()` is the preferred form to use whenever possible. It
|
|
|
|
evaluates the expression and stores its result into `Dest`, which
|
|
|
|
must either be the special flag ignore (throw the result away) or
|
|
|
|
be a pointer to memory of the same type/size as the expression.
|
|
|
|
|
|
|
|
Sometimes, though, you just want to evaluate the expression into
|
|
|
|
some memory location so you can go and inspect it (e.g., a `match`
|
|
|
|
expression). In that case, `trans_to_datum()` is your friend. It
|
|
|
|
will evaluate the expression and return a `Datum` describing where
|
|
|
|
the result is to be found. This function tries to return its
|
|
|
|
result in the most efficient way possible, without introducing
|
|
|
|
extra copies or sacrificing information. Therefore, for lvalue
|
|
|
|
expressions, you always get a by-ref `Datum` in return that points
|
|
|
|
at the memory for this lvalue (almost, see [1]). For rvalue
|
|
|
|
expressions, we will return a by-value `Datum` whenever possible,
|
|
|
|
but it is often necessary to allocate a stack slot, store the
|
|
|
|
result of the rvalue in there, and then return a pointer to the
|
|
|
|
slot (see the discussion later on about the different kinds of
|
|
|
|
rvalues).
|
|
|
|
|
|
|
|
## More specific functions
|
|
|
|
|
|
|
|
The two functions above are the most general and can handle any
|
|
|
|
situation, but there are a few other functions that are useful
|
|
|
|
in specific scenarios:
|
|
|
|
|
|
|
|
- `trans_lvalue()` is exactly like `trans_to_datum()` but it only
|
|
|
|
works on lvalues. This is mostly used as an assertion for those
|
|
|
|
places where only an lvalue is expected. It also guarantees that
|
|
|
|
you will get a by-ref Datum back (almost, see [1]).
|
|
|
|
- `trans_local_var()` can be used to trans a ref to a local variable
|
|
|
|
that is not an expression.
|
|
|
|
|
|
|
|
## Ownership and cleanups
|
|
|
|
|
|
|
|
The current system for cleanups associates required cleanups with
|
|
|
|
block contexts. Block contexts are structured into a tree that
|
|
|
|
resembles the code itself. Not every block context has cleanups
|
|
|
|
associated with it, only those blocks that have a kind of
|
|
|
|
`block_scope`. See `common::block_kind` for more details.
|
|
|
|
|
|
|
|
If you invoke `trans_into()`, no cleanup is scheduled for you. The
|
|
|
|
value is written into the given destination and is assumed to be owned
|
|
|
|
by that destination.
|
|
|
|
|
2012-09-11 23:25:01 -05:00
|
|
|
When you invoke `trans_to_datum()` on an rvalue, the resulting
|
|
|
|
datum/value will have an appropriate cleanup scheduled for the
|
|
|
|
innermost cleanup scope. If you later use `move_to()` or
|
|
|
|
`drop_val()`, this cleanup will be canceled.
|
2012-08-28 17:54:45 -05:00
|
|
|
|
|
|
|
During the evaluation of an expression, temporary cleanups are created
|
|
|
|
and later canceled. These represent intermediate or partial results
|
|
|
|
which must be cleaned up in the event of task failure.
|
|
|
|
|
|
|
|
## Implementation details
|
|
|
|
|
|
|
|
We divide expressions into three categories, based on how they are most
|
|
|
|
naturally implemented:
|
|
|
|
|
|
|
|
1. Lvalues
|
|
|
|
2. Datum rvalues
|
|
|
|
3. DPS rvalues
|
|
|
|
4. Statement rvalues
|
|
|
|
|
|
|
|
Lvalues always refer to user-assignable memory locations.
|
|
|
|
Translating those always results in a by-ref datum; this introduces
|
|
|
|
no inefficiencies into the generated code, because all lvalues are
|
|
|
|
naturally addressable.
|
|
|
|
|
|
|
|
Datum rvalues are rvalues that always generate datums as a result.
|
|
|
|
These are generally scalar results, such as `a+b` where `a` and `b`
|
|
|
|
are integers.
|
|
|
|
|
|
|
|
DPS rvalues are rvalues that, when translated, must be given a
|
|
|
|
memory location to write into (or the Ignore flag). These are
|
|
|
|
generally expressions that produce structural results that are
|
|
|
|
larger than one word (e.g., a struct literal), but also expressions
|
|
|
|
(like `if`) that involve control flow (otherwise we'd have to
|
|
|
|
generate phi nodes).
|
|
|
|
|
|
|
|
Finally, statement rvalues are rvalues that always produce a nil
|
|
|
|
return type, such as `while` loops or assignments (`a = b`).
|
|
|
|
|
|
|
|
## Caveats
|
|
|
|
|
|
|
|
[1] Actually, some lvalues are only stored by value and not by
|
|
|
|
reference. An example (as of this writing) would be immutable
|
|
|
|
arguments or pattern bindings of immediate type. However, mutable
|
|
|
|
lvalues are *never* stored by value.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
use ty::class_items_as_mutable_fields;
|
|
|
|
use lib::llvm::ValueRef;
|
|
|
|
use common::*;
|
|
|
|
use datum::*;
|
|
|
|
use base::*;
|
|
|
|
use syntax::print::pprust::{expr_to_str};
|
|
|
|
use util::ppaux::ty_to_str;
|
|
|
|
use util::common::indenter;
|
2012-09-11 23:25:01 -05:00
|
|
|
use ty::{AutoPtr, AutoSlice};
|
2012-09-19 20:00:26 -05:00
|
|
|
use callee::{AutorefArg, DoAutorefArg, DontAutorefArg};
|
2012-08-28 17:54:45 -05:00
|
|
|
|
|
|
|
// The primary two functions for translating expressions:
|
|
|
|
export trans_to_datum, trans_into;
|
|
|
|
|
|
|
|
// More specific variants than trans_to_datum/trans_into that are useful
|
|
|
|
// in some scenarios:
|
2012-09-11 23:25:01 -05:00
|
|
|
export trans_local_var;
|
2012-08-28 17:54:45 -05:00
|
|
|
|
2012-09-11 23:25:01 -05:00
|
|
|
// Other helpers, types, and so forth:
|
2012-08-28 17:54:45 -05:00
|
|
|
export with_field_tys;
|
2012-09-11 23:25:01 -05:00
|
|
|
export Dest, SaveIn, Ignore;
|
|
|
|
export cast_type_kind;
|
|
|
|
export cast_kind, cast_pointer, cast_integral, cast_float;
|
|
|
|
export cast_enum, cast_other;
|
2012-08-28 17:54:45 -05:00
|
|
|
|
|
|
|
// Destinations
|
|
|
|
|
|
|
|
// These are passed around by the code generating functions to track the
|
|
|
|
// destination of a computation's value.
|
|
|
|
|
|
|
|
fn macros() { include!("macros.rs"); } // FIXME(#3114): Macro import/export.
|
|
|
|
|
|
|
|
enum Dest {
|
|
|
|
SaveIn(ValueRef),
|
|
|
|
Ignore,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Dest {
|
|
|
|
fn to_str(ccx: @crate_ctxt) -> ~str {
|
|
|
|
match self {
|
|
|
|
SaveIn(v) => fmt!("SaveIn(%s)", val_str(ccx.tn, v)),
|
|
|
|
Ignore => ~"Ignore"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-19 20:00:26 -05:00
|
|
|
impl Dest : cmp::Eq {
|
|
|
|
pure fn eq(other: &Dest) -> bool {
|
|
|
|
match (self, (*other)) {
|
|
|
|
(SaveIn(e0a), SaveIn(e0b)) => e0a == e0b,
|
|
|
|
(Ignore, Ignore) => true,
|
|
|
|
(SaveIn(*), _) => false,
|
|
|
|
(Ignore, _) => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pure fn ne(other: &Dest) -> bool { !self.eq(other) }
|
|
|
|
}
|
2012-08-28 17:54:45 -05:00
|
|
|
|
2012-09-11 23:25:01 -05:00
|
|
|
fn trans_to_datum(bcx: block, expr: @ast::expr) -> DatumBlock {
|
|
|
|
debug!("trans_to_datum(expr=%s)", bcx.expr_to_str(expr));
|
|
|
|
|
|
|
|
return match bcx.tcx().adjustments.find(expr.id) {
|
|
|
|
None => {
|
|
|
|
trans_to_datum_unadjusted(bcx, expr)
|
|
|
|
}
|
|
|
|
Some(adj) => {
|
|
|
|
let mut bcx = bcx;
|
|
|
|
let mut datum = unpack_datum!(bcx, {
|
|
|
|
trans_to_datum_unadjusted(bcx, expr)
|
|
|
|
});
|
|
|
|
|
|
|
|
if adj.autoderefs > 0 {
|
|
|
|
datum = datum.autoderef(bcx, expr.id, adj.autoderefs);
|
|
|
|
}
|
|
|
|
|
|
|
|
datum = match adj.autoref {
|
|
|
|
None => datum,
|
|
|
|
Some(ref autoref) => {
|
|
|
|
match autoref.kind {
|
|
|
|
AutoPtr => {
|
|
|
|
unpack_datum!(bcx, auto_ref(bcx, datum))
|
|
|
|
}
|
|
|
|
AutoSlice => {
|
|
|
|
unpack_datum!(bcx, auto_slice(bcx, datum))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
debug!("after adjustments, datum=%s", datum.to_str(bcx.ccx()));
|
|
|
|
|
|
|
|
return DatumBlock {bcx: bcx, datum: datum};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
fn auto_ref(bcx: block, datum: Datum) -> DatumBlock {
|
|
|
|
DatumBlock {bcx: bcx, datum: datum.to_rptr(bcx)}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn auto_slice(bcx: block, datum: Datum) -> DatumBlock {
|
|
|
|
// This is not the most efficient thing possible; since slices
|
|
|
|
// are two words it'd be better if this were compiled in
|
|
|
|
// 'dest' mode, but I can't find a nice way to structure the
|
|
|
|
// code and keep it DRY that accommodates that use case at the
|
|
|
|
// moment.
|
|
|
|
|
|
|
|
let tcx = bcx.tcx();
|
|
|
|
let unit_ty = ty::sequence_element_type(tcx, datum.ty);
|
|
|
|
let (base, len) = datum.get_base_and_len(bcx);
|
|
|
|
|
|
|
|
// this type may have a different region/mutability than the
|
|
|
|
// real one, but it will have the same runtime representation
|
|
|
|
let slice_ty = ty::mk_evec(tcx, {ty: unit_ty, mutbl: ast::m_imm},
|
|
|
|
ty::vstore_slice(ty::re_static));
|
|
|
|
|
|
|
|
let scratch = scratch_datum(bcx, slice_ty, false);
|
|
|
|
Store(bcx, base, GEPi(bcx, scratch.val, [0u, abi::slice_elt_base]));
|
|
|
|
Store(bcx, len, GEPi(bcx, scratch.val, [0u, abi::slice_elt_len]));
|
|
|
|
DatumBlock {bcx: bcx, datum: scratch}
|
|
|
|
}
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
|
2012-09-11 23:25:01 -05:00
|
|
|
fn trans_into(bcx: block, expr: @ast::expr, dest: Dest) -> block {
|
|
|
|
return match bcx.tcx().adjustments.find(expr.id) {
|
|
|
|
None => trans_into_unadjusted(bcx, expr, dest),
|
|
|
|
Some(_) => {
|
|
|
|
// use trans_to_datum, which is mildly less efficient but
|
|
|
|
// which will perform the adjustments:
|
|
|
|
let datumblock = trans_to_datum(bcx, expr);
|
|
|
|
match dest {
|
|
|
|
Ignore => datumblock.bcx,
|
|
|
|
SaveIn(lldest) => datumblock.store_to(INIT, lldest)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_lvalue(bcx: block, expr: @ast::expr) -> DatumBlock {
|
|
|
|
return match bcx.tcx().adjustments.find(expr.id) {
|
|
|
|
None => trans_lvalue_unadjusted(bcx, expr),
|
|
|
|
Some(_) => {
|
|
|
|
bcx.sess().span_bug(
|
|
|
|
expr.span,
|
|
|
|
fmt!("trans_lvalue() called on an expression \
|
|
|
|
with adjustments"));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_to_datum_unadjusted(bcx: block, expr: @ast::expr) -> DatumBlock {
|
2012-08-28 17:54:45 -05:00
|
|
|
/*!
|
|
|
|
*
|
|
|
|
* Translates an expression into a datum. If this expression
|
|
|
|
* is an rvalue, this will result in a temporary value being
|
|
|
|
* created. If you already know where the result should be stored,
|
|
|
|
* you should use `trans_into()` instead. */
|
|
|
|
|
|
|
|
let mut bcx = bcx;
|
|
|
|
|
2012-09-11 23:25:01 -05:00
|
|
|
debug!("trans_to_datum_unadjusted(expr=%s)", bcx.expr_to_str(expr));
|
2012-08-28 17:54:45 -05:00
|
|
|
let _indenter = indenter();
|
|
|
|
|
|
|
|
debuginfo::update_source_pos(bcx, expr.span);
|
|
|
|
|
|
|
|
match ty::expr_kind(bcx.tcx(), bcx.ccx().maps.method_map, expr) {
|
|
|
|
ty::LvalueExpr => {
|
2012-09-11 23:25:01 -05:00
|
|
|
return trans_lvalue_unadjusted(bcx, expr);
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ty::RvalueDatumExpr => {
|
2012-09-11 23:25:01 -05:00
|
|
|
let datum = unpack_datum!(bcx, {
|
|
|
|
trans_rvalue_datum_unadjusted(bcx, expr)
|
|
|
|
});
|
2012-08-28 17:54:45 -05:00
|
|
|
datum.add_clean(bcx);
|
|
|
|
return DatumBlock {bcx: bcx, datum: datum};
|
|
|
|
}
|
|
|
|
|
|
|
|
ty::RvalueStmtExpr => {
|
2012-09-11 23:25:01 -05:00
|
|
|
bcx = trans_rvalue_stmt_unadjusted(bcx, expr);
|
2012-08-28 17:54:45 -05:00
|
|
|
return nil(bcx, expr_ty(bcx, expr));
|
|
|
|
}
|
|
|
|
|
|
|
|
ty::RvalueDpsExpr => {
|
|
|
|
let ty = expr_ty(bcx, expr);
|
|
|
|
if ty::type_is_nil(ty) || ty::type_is_bot(ty) {
|
2012-09-11 23:25:01 -05:00
|
|
|
bcx = trans_rvalue_dps_unadjusted(bcx, expr, Ignore);
|
2012-08-28 17:54:45 -05:00
|
|
|
return nil(bcx, ty);
|
|
|
|
} else {
|
|
|
|
let scratch = scratch_datum(bcx, ty, false);
|
2012-09-11 23:25:01 -05:00
|
|
|
bcx = trans_rvalue_dps_unadjusted(
|
|
|
|
bcx, expr, SaveIn(scratch.val));
|
2012-09-06 17:21:42 -05:00
|
|
|
|
|
|
|
// Note: this is not obviously a good idea. It causes
|
|
|
|
// immediate values to be loaded immediately after a
|
|
|
|
// return from a call or other similar expression,
|
|
|
|
// which in turn leads to alloca's having shorter
|
|
|
|
// lifetimes and hence larger stack frames. However,
|
|
|
|
// in turn it can lead to more register pressure.
|
|
|
|
// Still, in practice it seems to increase
|
|
|
|
// performance, since we have fewer problems with
|
|
|
|
// morestack churn.
|
|
|
|
let scratch = scratch.to_appropriate_datum(bcx);
|
|
|
|
|
2012-08-28 17:54:45 -05:00
|
|
|
scratch.add_clean(bcx);
|
|
|
|
return DatumBlock {bcx: bcx, datum: scratch};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn nil(bcx: block, ty: ty::t) -> DatumBlock {
|
|
|
|
let datum = immediate_rvalue(C_nil(), ty);
|
|
|
|
DatumBlock {bcx: bcx, datum: datum}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-11 23:25:01 -05:00
|
|
|
fn trans_into_unadjusted(bcx: block, expr: @ast::expr, dest: Dest) -> block {
|
2012-08-28 17:54:45 -05:00
|
|
|
let ty = expr_ty(bcx, expr);
|
|
|
|
|
2012-09-11 23:25:01 -05:00
|
|
|
debug!("trans_into_unadjusted(expr=%s, dest=%s)",
|
2012-08-28 17:54:45 -05:00
|
|
|
bcx.expr_to_str(expr),
|
|
|
|
dest.to_str(bcx.ccx()));
|
|
|
|
let _indenter = indenter();
|
|
|
|
|
|
|
|
debuginfo::update_source_pos(bcx, expr.span);
|
|
|
|
|
|
|
|
let dest = {
|
|
|
|
if ty::type_is_nil(ty) || ty::type_is_bot(ty) {
|
|
|
|
Ignore
|
|
|
|
} else {
|
|
|
|
dest
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let kind = bcx.expr_kind(expr);
|
|
|
|
debug!("expr kind = %?", kind);
|
|
|
|
match kind {
|
|
|
|
ty::LvalueExpr => {
|
2012-09-11 23:25:01 -05:00
|
|
|
let datumblock = trans_lvalue_unadjusted(bcx, expr);
|
2012-08-28 17:54:45 -05:00
|
|
|
match dest {
|
|
|
|
Ignore => datumblock.bcx,
|
|
|
|
SaveIn(lldest) => datumblock.store_to(INIT, lldest)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ty::RvalueDatumExpr => {
|
2012-09-11 23:25:01 -05:00
|
|
|
let datumblock = trans_rvalue_datum_unadjusted(bcx, expr);
|
2012-08-28 17:54:45 -05:00
|
|
|
match dest {
|
|
|
|
Ignore => datumblock.drop_val(),
|
|
|
|
SaveIn(lldest) => datumblock.store_to(INIT, lldest)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ty::RvalueDpsExpr => {
|
2012-09-11 23:25:01 -05:00
|
|
|
return trans_rvalue_dps_unadjusted(bcx, expr, dest);
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
ty::RvalueStmtExpr => {
|
2012-09-11 23:25:01 -05:00
|
|
|
return trans_rvalue_stmt_unadjusted(bcx, expr);
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-11 23:25:01 -05:00
|
|
|
fn trans_rvalue_datum_unadjusted(bcx: block, expr: @ast::expr) -> DatumBlock {
|
|
|
|
let _icx = bcx.insn_ctxt("trans_rvalue_datum_unadjusted");
|
2012-08-28 17:54:45 -05:00
|
|
|
|
|
|
|
trace_span!(bcx, expr.span, shorten(bcx.expr_to_str(expr)));
|
|
|
|
|
|
|
|
match expr.node {
|
2012-09-11 23:25:01 -05:00
|
|
|
ast::expr_vstore(contents, ast::expr_vstore_box) => {
|
2012-08-28 17:54:45 -05:00
|
|
|
return tvec::trans_uniq_or_managed_vstore(bcx, heap_shared,
|
|
|
|
expr, contents);
|
|
|
|
}
|
2012-09-11 23:25:01 -05:00
|
|
|
ast::expr_vstore(contents, ast::expr_vstore_uniq) => {
|
2012-08-28 17:54:45 -05:00
|
|
|
return tvec::trans_uniq_or_managed_vstore(bcx, heap_exchange,
|
|
|
|
expr, contents);
|
|
|
|
}
|
|
|
|
ast::expr_lit(lit) => {
|
|
|
|
return trans_immediate_lit(bcx, expr, *lit);
|
|
|
|
}
|
|
|
|
ast::expr_binary(op, lhs, rhs) => {
|
|
|
|
// if overloaded, would be RvalueDpsExpr
|
|
|
|
assert !bcx.ccx().maps.method_map.contains_key(expr.id);
|
|
|
|
|
|
|
|
return trans_binary(bcx, expr, op, lhs, rhs);
|
|
|
|
}
|
|
|
|
ast::expr_unary(op, x) => {
|
|
|
|
return trans_unary_datum(bcx, expr, op, x);
|
|
|
|
}
|
|
|
|
ast::expr_addr_of(_, x) => {
|
|
|
|
return trans_addr_of(bcx, expr, x);
|
|
|
|
}
|
|
|
|
ast::expr_cast(val, _) => {
|
|
|
|
return trans_imm_cast(bcx, val, expr.id);
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
bcx.tcx().sess.span_bug(
|
|
|
|
expr.span,
|
2012-09-11 23:25:01 -05:00
|
|
|
fmt!("trans_rvalue_datum_unadjusted reached \
|
|
|
|
fall-through case: %?",
|
2012-08-28 17:54:45 -05:00
|
|
|
expr.node));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-11 23:25:01 -05:00
|
|
|
fn trans_rvalue_stmt_unadjusted(bcx: block, expr: @ast::expr) -> block {
|
2012-08-28 17:54:45 -05:00
|
|
|
let mut bcx = bcx;
|
|
|
|
let _icx = bcx.insn_ctxt("trans_rvalue_stmt");
|
|
|
|
|
|
|
|
trace_span!(bcx, expr.span, shorten(bcx.expr_to_str(expr)));
|
|
|
|
|
|
|
|
match expr.node {
|
|
|
|
ast::expr_break(label_opt) => {
|
|
|
|
if label_opt.is_some() {
|
|
|
|
bcx.tcx().sess.span_unimpl(expr.span, ~"labeled break");
|
|
|
|
}
|
|
|
|
return controlflow::trans_break(bcx);
|
|
|
|
}
|
|
|
|
ast::expr_again(label_opt) => {
|
|
|
|
if label_opt.is_some() {
|
|
|
|
bcx.tcx().sess.span_unimpl(expr.span, ~"labeled again");
|
|
|
|
}
|
|
|
|
return controlflow::trans_cont(bcx);
|
|
|
|
}
|
|
|
|
ast::expr_ret(ex) => {
|
|
|
|
return controlflow::trans_ret(bcx, ex);
|
|
|
|
}
|
|
|
|
ast::expr_fail(why) => {
|
|
|
|
return controlflow::trans_fail_expr(bcx, Some(expr.span), why);
|
|
|
|
}
|
|
|
|
ast::expr_log(_, lvl, a) => {
|
|
|
|
return controlflow::trans_log(expr, lvl, bcx, a);
|
|
|
|
}
|
|
|
|
ast::expr_assert(a) => {
|
|
|
|
return controlflow::trans_check_expr(bcx, expr, a, ~"Assertion");
|
|
|
|
}
|
|
|
|
ast::expr_while(cond, body) => {
|
|
|
|
return controlflow::trans_while(bcx, cond, body);
|
|
|
|
}
|
|
|
|
ast::expr_loop(body, _) => {
|
|
|
|
return controlflow::trans_loop(bcx, body);
|
|
|
|
}
|
|
|
|
ast::expr_assign(dst, src) => {
|
|
|
|
let src_datum = unpack_datum!(bcx, trans_to_datum(bcx, src));
|
|
|
|
let dst_datum = unpack_datum!(bcx, trans_lvalue(bcx, dst));
|
|
|
|
return src_datum.store_to_datum(bcx, DROP_EXISTING, dst_datum);
|
|
|
|
}
|
|
|
|
ast::expr_move(dst, src) => {
|
|
|
|
let src_datum = unpack_datum!(bcx, trans_to_datum(bcx, src));
|
|
|
|
let dst_datum = unpack_datum!(bcx, trans_lvalue(bcx, dst));
|
|
|
|
return src_datum.move_to_datum(bcx, DROP_EXISTING, dst_datum);
|
|
|
|
}
|
|
|
|
ast::expr_swap(dst, src) => {
|
|
|
|
let dst_datum = unpack_datum!(bcx, trans_lvalue(bcx, dst));
|
|
|
|
let src_datum = unpack_datum!(bcx, trans_lvalue(bcx, src));
|
|
|
|
let scratch = scratch_datum(bcx, dst_datum.ty, false);
|
|
|
|
|
|
|
|
let bcx = dst_datum.move_to_datum(bcx, INIT, scratch);
|
|
|
|
let bcx = src_datum.move_to_datum(bcx, INIT, dst_datum);
|
|
|
|
return scratch.move_to_datum(bcx, INIT, src_datum);
|
|
|
|
}
|
|
|
|
ast::expr_assign_op(op, dst, src) => {
|
|
|
|
return trans_assign_op(bcx, expr, op, dst, src);
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
bcx.tcx().sess.span_bug(
|
|
|
|
expr.span,
|
2012-09-11 23:25:01 -05:00
|
|
|
fmt!("trans_rvalue_stmt_unadjusted reached \
|
|
|
|
fall-through case: %?",
|
2012-08-28 17:54:45 -05:00
|
|
|
expr.node));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2012-09-11 23:25:01 -05:00
|
|
|
fn trans_rvalue_dps_unadjusted(bcx: block, expr: @ast::expr,
|
|
|
|
dest: Dest) -> block {
|
2012-08-28 17:54:45 -05:00
|
|
|
let mut bcx = bcx;
|
2012-09-11 23:25:01 -05:00
|
|
|
let _icx = bcx.insn_ctxt("trans_rvalue_dps_unadjusted");
|
2012-08-28 17:54:45 -05:00
|
|
|
let tcx = bcx.tcx();
|
|
|
|
|
|
|
|
trace_span!(bcx, expr.span, shorten(bcx.expr_to_str(expr)));
|
|
|
|
|
|
|
|
match expr.node {
|
|
|
|
ast::expr_path(_) => {
|
2012-09-11 23:25:01 -05:00
|
|
|
return trans_def_dps_unadjusted(bcx, expr,
|
|
|
|
bcx.def(expr.id), dest);
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
ast::expr_if(cond, thn, els) => {
|
|
|
|
return controlflow::trans_if(bcx, cond, thn, els, dest);
|
|
|
|
}
|
|
|
|
ast::expr_match(discr, arms) => {
|
|
|
|
return alt::trans_alt(bcx, expr, discr, arms, dest);
|
|
|
|
}
|
|
|
|
ast::expr_block(blk) => {
|
|
|
|
return do base::with_scope(bcx, blk.info(),
|
|
|
|
~"block-expr body") |bcx| {
|
|
|
|
controlflow::trans_block(bcx, blk, dest)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
ast::expr_rec(fields, base) | ast::expr_struct(_, fields, base) => {
|
|
|
|
return trans_rec_or_struct(bcx, fields, base, expr.id, dest);
|
|
|
|
}
|
|
|
|
ast::expr_tup(args) => {
|
|
|
|
return trans_tup(bcx, args, dest);
|
|
|
|
}
|
|
|
|
ast::expr_lit(@{node: ast::lit_str(s), _}) => {
|
|
|
|
return tvec::trans_lit_str(bcx, expr, s, dest);
|
|
|
|
}
|
2012-09-11 23:25:01 -05:00
|
|
|
ast::expr_vstore(contents, ast::expr_vstore_slice) => {
|
2012-08-28 17:54:45 -05:00
|
|
|
return tvec::trans_slice_vstore(bcx, expr, contents, dest);
|
|
|
|
}
|
2012-09-11 23:25:01 -05:00
|
|
|
ast::expr_vstore(contents, ast::expr_vstore_fixed(_)) => {
|
2012-08-28 17:54:45 -05:00
|
|
|
return tvec::trans_fixed_vstore(bcx, expr, contents, dest);
|
|
|
|
}
|
|
|
|
ast::expr_vec(*) | ast::expr_repeat(*) => {
|
|
|
|
return tvec::trans_fixed_vstore(bcx, expr, expr, dest);
|
|
|
|
}
|
|
|
|
ast::expr_fn(proto, decl, body, cap_clause) => {
|
|
|
|
// Don't use this function for anything real. Use the one in
|
|
|
|
// astconv instead.
|
|
|
|
fn ast_proto_to_proto_simple(ast_proto: ast::proto)
|
|
|
|
-> ty::fn_proto {
|
|
|
|
match ast_proto {
|
|
|
|
ast::proto_bare => ty::proto_bare,
|
|
|
|
ast::proto_uniq => ty::proto_vstore(ty::vstore_uniq),
|
|
|
|
ast::proto_box => ty::proto_vstore(ty::vstore_box),
|
|
|
|
ast::proto_block => {
|
|
|
|
ty::proto_vstore(ty::vstore_slice(ty::re_static))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return closure::trans_expr_fn(bcx,
|
|
|
|
ast_proto_to_proto_simple(proto),
|
|
|
|
decl, body, expr.id, cap_clause,
|
|
|
|
None, dest);
|
|
|
|
}
|
|
|
|
ast::expr_fn_block(decl, body, cap_clause) => {
|
|
|
|
let expr_ty = expr_ty(bcx, expr);
|
2012-09-11 18:20:31 -05:00
|
|
|
match ty::get(expr_ty).sty {
|
2012-09-07 09:37:19 -05:00
|
|
|
ty::ty_fn(ref fn_ty) => {
|
2012-08-28 17:54:45 -05:00
|
|
|
debug!("translating fn_block %s with type %s",
|
|
|
|
expr_to_str(expr, tcx.sess.intr()),
|
|
|
|
ty_to_str(tcx, expr_ty));
|
2012-09-07 09:37:19 -05:00
|
|
|
return closure::trans_expr_fn(
|
|
|
|
bcx, fn_ty.meta.proto, decl, body,
|
|
|
|
expr.id, cap_clause, None,
|
|
|
|
dest);
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
bcx.sess().impossible_case(
|
|
|
|
expr.span, "fn_block has body with a non-fn type");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ast::expr_loop_body(blk) => {
|
2012-09-11 18:20:31 -05:00
|
|
|
match ty::get(expr_ty(bcx, expr)).sty {
|
2012-09-07 09:37:19 -05:00
|
|
|
ty::ty_fn(ref fn_ty) => {
|
2012-08-28 17:54:45 -05:00
|
|
|
match blk.node {
|
|
|
|
ast::expr_fn_block(decl, body, cap) => {
|
|
|
|
return closure::trans_expr_fn(
|
2012-09-07 09:37:19 -05:00
|
|
|
bcx, fn_ty.meta.proto, decl, body, blk.id,
|
2012-08-28 17:54:45 -05:00
|
|
|
cap, Some(None), dest);
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
bcx.sess().impossible_case(
|
|
|
|
expr.span,
|
|
|
|
"loop_body has the wrong kind of contents")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
bcx.sess().impossible_case(
|
|
|
|
expr.span, "loop_body has body with a non-fn type")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ast::expr_do_body(blk) => {
|
|
|
|
return trans_into(bcx, blk, dest);
|
|
|
|
}
|
|
|
|
ast::expr_copy(a) => {
|
|
|
|
return trans_into(bcx, a, dest);
|
|
|
|
}
|
|
|
|
ast::expr_unary_move(a) => {
|
|
|
|
if bcx.expr_is_lval(a) {
|
|
|
|
let datum = unpack_datum!(bcx, trans_to_datum(bcx, a));
|
|
|
|
return match dest {
|
|
|
|
Ignore => datum.drop_val(bcx),
|
|
|
|
SaveIn(addr) => datum.move_to(bcx, INIT, addr)
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
return trans_into(bcx, a, dest);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ast::expr_call(f, args, _) => {
|
|
|
|
return callee::trans_call(
|
|
|
|
bcx, expr, f, callee::ArgExprs(args), expr.id, dest);
|
|
|
|
}
|
|
|
|
ast::expr_binary(_, lhs, rhs) => {
|
|
|
|
// if not overloaded, would be RvalueDatumExpr
|
2012-09-19 20:00:26 -05:00
|
|
|
return trans_overloaded_op(bcx, expr, lhs, ~[rhs], dest,
|
|
|
|
DoAutorefArg);
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
ast::expr_unary(_, subexpr) => {
|
|
|
|
// if not overloaded, would be RvalueDatumExpr
|
2012-09-19 20:00:26 -05:00
|
|
|
return trans_overloaded_op(bcx, expr, subexpr, ~[], dest,
|
|
|
|
DontAutorefArg);
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
ast::expr_index(base, idx) => {
|
|
|
|
// if not overloaded, would be RvalueDatumExpr
|
2012-09-19 20:00:26 -05:00
|
|
|
return trans_overloaded_op(bcx, expr, base, ~[idx], dest,
|
|
|
|
DontAutorefArg);
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
ast::expr_cast(val, _) => {
|
2012-09-11 21:28:14 -05:00
|
|
|
return meth::trans_trait_cast(bcx, val, expr.id, dest);
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
ast::expr_assign_op(op, dst, src) => {
|
|
|
|
return trans_assign_op(bcx, expr, op, dst, src);
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
bcx.tcx().sess.span_bug(
|
|
|
|
expr.span,
|
2012-09-11 23:25:01 -05:00
|
|
|
fmt!("trans_rvalue_dps_unadjusted reached \
|
|
|
|
fall-through case: %?",
|
2012-08-28 17:54:45 -05:00
|
|
|
expr.node));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-11 23:25:01 -05:00
|
|
|
fn trans_def_dps_unadjusted(bcx: block, ref_expr: @ast::expr,
|
|
|
|
def: ast::def, dest: Dest) -> block {
|
|
|
|
let _icx = bcx.insn_ctxt("trans_def_dps_unadjusted");
|
2012-08-28 17:54:45 -05:00
|
|
|
let ccx = bcx.ccx();
|
|
|
|
|
|
|
|
let lldest = match dest {
|
|
|
|
SaveIn(lldest) => lldest,
|
|
|
|
Ignore => { return bcx; }
|
|
|
|
};
|
|
|
|
|
|
|
|
match def {
|
|
|
|
ast::def_fn(did, _) => {
|
|
|
|
let fn_data = callee::trans_fn_ref(bcx, did, ref_expr.id);
|
|
|
|
return fn_data_to_datum(bcx, did, fn_data, lldest);
|
|
|
|
}
|
2012-10-12 19:00:08 -05:00
|
|
|
ast::def_static_method(impl_did, trait_did, _) => {
|
|
|
|
let fn_data = meth::trans_static_method_callee(bcx, impl_did,
|
|
|
|
trait_did,
|
2012-08-28 17:54:45 -05:00
|
|
|
ref_expr.id);
|
2012-10-12 19:00:08 -05:00
|
|
|
return fn_data_to_datum(bcx, impl_did, fn_data, lldest);
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
ast::def_variant(tid, vid) => {
|
|
|
|
if ty::enum_variant_with_id(ccx.tcx, tid, vid).args.len() > 0u {
|
|
|
|
// N-ary variant.
|
|
|
|
let fn_data = callee::trans_fn_ref(bcx, vid, ref_expr.id);
|
|
|
|
return fn_data_to_datum(bcx, vid, fn_data, lldest);
|
|
|
|
} else {
|
|
|
|
// Nullary variant.
|
|
|
|
let lldiscrimptr = GEPi(bcx, lldest, [0u, 0u]);
|
|
|
|
let lldiscrim_gv = base::lookup_discriminant(ccx, vid);
|
|
|
|
let lldiscrim = Load(bcx, lldiscrim_gv);
|
|
|
|
Store(bcx, lldiscrim, lldiscrimptr);
|
|
|
|
return bcx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
bcx.tcx().sess.span_bug(ref_expr.span, fmt!(
|
|
|
|
"Non-DPS def %? referened by %s",
|
|
|
|
def, bcx.node_id_to_str(ref_expr.id)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-11 23:25:01 -05:00
|
|
|
fn trans_lvalue_unadjusted(bcx: block, expr: @ast::expr) -> DatumBlock {
|
|
|
|
/*!
|
|
|
|
*
|
|
|
|
* Translates an lvalue expression, always yielding a by-ref
|
|
|
|
* datum. Generally speaking you should call trans_to_datum()
|
|
|
|
* instead, but sometimes we call trans_lvalue() directly as a
|
|
|
|
* means of asserting that a particular expression is an lvalue. */
|
2012-08-28 17:54:45 -05:00
|
|
|
|
|
|
|
let _icx = bcx.insn_ctxt("trans_lval");
|
|
|
|
let mut bcx = bcx;
|
|
|
|
|
|
|
|
debug!("trans_lvalue(expr=%s)", bcx.expr_to_str(expr));
|
|
|
|
let _indenter = indenter();
|
|
|
|
|
|
|
|
trace_span!(bcx, expr.span, shorten(bcx.expr_to_str(expr)));
|
|
|
|
|
|
|
|
let unrooted_datum = unpack_datum!(bcx, unrooted(bcx, expr));
|
|
|
|
|
|
|
|
// If the lvalue must remain rooted, create a scratch datum, copy
|
|
|
|
// the lvalue in there, and then arrange for it to be cleaned up
|
|
|
|
// at the end of the scope with id `scope_id`:
|
|
|
|
let root_key = {id:expr.id, derefs:0u};
|
|
|
|
for bcx.ccx().maps.root_map.find(root_key).each |scope_id| {
|
2012-09-19 18:55:01 -05:00
|
|
|
unrooted_datum.root(bcx, *scope_id);
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return DatumBlock {bcx: bcx, datum: unrooted_datum};
|
|
|
|
|
|
|
|
fn unrooted(bcx: block, expr: @ast::expr) -> DatumBlock {
|
|
|
|
let mut bcx = bcx;
|
|
|
|
|
|
|
|
match expr.node {
|
|
|
|
ast::expr_path(_) => {
|
|
|
|
return trans_def_lvalue(bcx, expr, bcx.def(expr.id));
|
|
|
|
}
|
|
|
|
ast::expr_field(base, ident, _) => {
|
|
|
|
return trans_rec_field(bcx, base, ident);
|
|
|
|
}
|
|
|
|
ast::expr_index(base, idx) => {
|
|
|
|
return trans_index(bcx, expr, base, idx);
|
|
|
|
}
|
|
|
|
ast::expr_unary(ast::deref, base) => {
|
|
|
|
let basedatum = unpack_datum!(bcx, trans_to_datum(bcx, base));
|
|
|
|
let derefdatum = basedatum.deref(bcx, base, 0);
|
|
|
|
return DatumBlock {bcx: bcx, datum: derefdatum};
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
bcx.tcx().sess.span_bug(
|
|
|
|
expr.span,
|
|
|
|
fmt!("trans_lvalue reached fall-through case: %?",
|
|
|
|
expr.node));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_def_lvalue(bcx: block, ref_expr: @ast::expr,
|
|
|
|
def: ast::def) -> DatumBlock {
|
|
|
|
let _icx = bcx.insn_ctxt("trans_def_lvalue");
|
|
|
|
let ccx = bcx.ccx();
|
|
|
|
match def {
|
|
|
|
ast::def_const(did) => {
|
|
|
|
let const_ty = expr_ty(bcx, ref_expr);
|
|
|
|
let val = if did.crate == ast::local_crate {
|
|
|
|
base::get_item_val(ccx, did.node)
|
|
|
|
} else {
|
|
|
|
base::trans_external_path(ccx, did, const_ty)
|
|
|
|
};
|
|
|
|
DatumBlock {
|
|
|
|
bcx: bcx,
|
|
|
|
datum: Datum {val: val,
|
|
|
|
ty: const_ty,
|
|
|
|
mode: ByRef,
|
|
|
|
source: FromLvalue}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
DatumBlock {
|
|
|
|
bcx: bcx,
|
|
|
|
datum: trans_local_var(bcx, ref_expr.id, def)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_local_var(bcx: block, ref_id: ast::node_id, def: ast::def) -> Datum {
|
|
|
|
let _icx = bcx.insn_ctxt("trans_local_var");
|
|
|
|
|
|
|
|
return match def {
|
|
|
|
ast::def_upvar(nid, _, _, _) => {
|
|
|
|
let local_ty = node_id_type(bcx, nid);
|
|
|
|
match bcx.fcx.llupvars.find(nid) {
|
|
|
|
Some(val) => {
|
|
|
|
Datum {
|
|
|
|
val: val,
|
|
|
|
ty: local_ty,
|
|
|
|
mode: ByRef,
|
|
|
|
source: FromLvalue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => {
|
|
|
|
bcx.sess().bug(fmt!(
|
|
|
|
"trans_local_var: no llval for upvar %? found", nid));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ast::def_arg(nid, _) => {
|
|
|
|
take_local(bcx, ref_id, bcx.fcx.llargs, nid)
|
|
|
|
}
|
|
|
|
ast::def_local(nid, _) | ast::def_binding(nid, _) => {
|
|
|
|
take_local(bcx, ref_id, bcx.fcx.lllocals, nid)
|
|
|
|
}
|
|
|
|
ast::def_self(nid) => {
|
|
|
|
let self_info: ValSelfData = match bcx.fcx.llself {
|
|
|
|
Some(ref self_info) => *self_info,
|
|
|
|
None => {
|
|
|
|
bcx.sess().bug(fmt!(
|
|
|
|
"trans_local_var: reference to self \
|
|
|
|
out of context with id %?", nid));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// This cast should not be necessary. We should cast self *once*,
|
|
|
|
// but right now this conflicts with default methods.
|
|
|
|
let llselfty = T_ptr(type_of::type_of(bcx.ccx(), self_info.t));
|
|
|
|
let casted_val = PointerCast(bcx, self_info.v, llselfty);
|
|
|
|
Datum {
|
|
|
|
val: casted_val,
|
|
|
|
ty: self_info.t,
|
|
|
|
mode: ByRef,
|
|
|
|
source: FromLvalue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
bcx.sess().unimpl(fmt!(
|
|
|
|
"unsupported def type in trans_local_var: %?", def));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
fn take_local(bcx: block,
|
|
|
|
ref_id: ast::node_id,
|
2012-09-10 17:38:28 -05:00
|
|
|
table: HashMap<ast::node_id, local_val>,
|
2012-08-28 17:54:45 -05:00
|
|
|
nid: ast::node_id) -> Datum {
|
|
|
|
let is_last_use = match bcx.ccx().maps.last_use_map.find(ref_id) {
|
|
|
|
None => false,
|
2012-09-25 19:39:22 -05:00
|
|
|
Some(vars) => (*vars).contains(&nid)
|
2012-08-28 17:54:45 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
let source = if is_last_use {FromLastUseLvalue} else {FromLvalue};
|
|
|
|
|
|
|
|
let (v, mode) = match table.find(nid) {
|
|
|
|
Some(local_mem(v)) => (v, ByRef),
|
|
|
|
Some(local_imm(v)) => (v, ByValue),
|
|
|
|
None => {
|
|
|
|
bcx.sess().bug(fmt!(
|
|
|
|
"trans_local_var: no llval for local/arg %? found", nid));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let ty = node_id_type(bcx, nid);
|
|
|
|
|
|
|
|
debug!("take_local(nid=%?, last_use=%b, v=%s, mode=%?, ty=%s)",
|
|
|
|
nid, is_last_use, bcx.val_str(v), mode, bcx.ty_to_str(ty));
|
|
|
|
|
|
|
|
Datum { val: v, ty: ty, mode: mode, source: source }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn fn_data_to_datum(bcx: block,
|
|
|
|
def_id: ast::def_id,
|
|
|
|
fn_data: callee::FnData,
|
|
|
|
lldest: ValueRef) -> block {
|
|
|
|
//!
|
|
|
|
//
|
|
|
|
// Translates a reference to a top-level fn item into a rust
|
|
|
|
// value. This is generally a Rust closure pair: (fn ptr, env)
|
|
|
|
// where the environment is NULL. However, extern functions for
|
|
|
|
// interfacing with C are represted as just the fn ptr with type
|
|
|
|
// *u8.
|
|
|
|
//
|
|
|
|
// Strictly speaking, references to extern fns ought to be
|
|
|
|
// RvalueDatumExprs, but it's not worth the complexity to avoid the
|
|
|
|
// extra stack slot that LLVM probably optimizes away anyhow.
|
|
|
|
|
|
|
|
let fn_tpt = ty::lookup_item_type(bcx.tcx(), def_id);
|
|
|
|
if ty::ty_fn_purity(fn_tpt.ty) == ast::extern_fn {
|
|
|
|
let val = PointerCast(bcx, fn_data.llfn, T_ptr(T_i8()));
|
|
|
|
Store(bcx, val, lldest);
|
|
|
|
return bcx;
|
|
|
|
}
|
|
|
|
|
|
|
|
let llfn = GEPi(bcx, lldest, [0u, abi::fn_field_code]);
|
|
|
|
Store(bcx, fn_data.llfn, llfn);
|
|
|
|
let llenv = GEPi(bcx, lldest, [0u, abi::fn_field_box]);
|
|
|
|
Store(bcx, base::null_env_ptr(bcx), llenv);
|
|
|
|
return bcx;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn with_field_tys<R>(tcx: ty::ctxt, ty: ty::t,
|
|
|
|
op: fn(bool, (&[ty::field])) -> R) -> R {
|
2012-09-11 18:20:31 -05:00
|
|
|
match ty::get(ty).sty {
|
2012-08-28 17:54:45 -05:00
|
|
|
ty::ty_rec(ref fields) => {
|
|
|
|
op(false, *fields)
|
|
|
|
}
|
|
|
|
|
|
|
|
ty::ty_class(did, ref substs) => {
|
|
|
|
let has_dtor = ty::ty_dtor(tcx, did).is_some();
|
|
|
|
op(has_dtor, class_items_as_mutable_fields(tcx, did, substs))
|
|
|
|
}
|
|
|
|
|
|
|
|
_ => {
|
|
|
|
tcx.sess.bug(fmt!(
|
|
|
|
"cannot get field types from the type %s",
|
|
|
|
ty_to_str(tcx, ty)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_rec_field(bcx: block,
|
|
|
|
base: @ast::expr,
|
|
|
|
field: ast::ident) -> DatumBlock {
|
|
|
|
let mut bcx = bcx;
|
|
|
|
let _icx = bcx.insn_ctxt("trans_rec_field");
|
|
|
|
|
|
|
|
let base_datum = unpack_datum!(bcx, trans_to_datum(bcx, base));
|
|
|
|
do with_field_tys(bcx.tcx(), base_datum.ty) |_has_dtor, field_tys| {
|
|
|
|
let ix = ty::field_idx_strict(bcx.tcx(), field, field_tys);
|
|
|
|
DatumBlock {
|
|
|
|
datum: base_datum.GEPi(bcx, [0u, 0u, ix], field_tys[ix].mt.ty),
|
|
|
|
bcx: bcx
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_index(bcx: block,
|
|
|
|
index_expr: @ast::expr,
|
|
|
|
base: @ast::expr,
|
|
|
|
idx: @ast::expr) -> DatumBlock {
|
|
|
|
let _icx = bcx.insn_ctxt("trans_index");
|
|
|
|
let ccx = bcx.ccx();
|
|
|
|
let base_ty = expr_ty(bcx, base);
|
|
|
|
let mut bcx = bcx;
|
|
|
|
|
|
|
|
let base_datum = unpack_datum!(bcx, trans_to_datum(bcx, base));
|
|
|
|
|
|
|
|
// Translate index expression and cast to a suitable LLVM integer.
|
|
|
|
// Rust is less strict than LLVM in this regard.
|
2012-09-11 23:25:01 -05:00
|
|
|
let Result {bcx, val: ix_val} = trans_to_datum(bcx, idx).to_result();
|
2012-08-28 17:54:45 -05:00
|
|
|
let ix_size = shape::llsize_of_real(bcx.ccx(), val_ty(ix_val));
|
|
|
|
let int_size = shape::llsize_of_real(bcx.ccx(), ccx.int_type);
|
|
|
|
let ix_val = {
|
|
|
|
if ix_size < int_size {
|
|
|
|
if ty::type_is_signed(expr_ty(bcx, idx)) {
|
|
|
|
SExt(bcx, ix_val, ccx.int_type)
|
|
|
|
} else { ZExt(bcx, ix_val, ccx.int_type) }
|
|
|
|
} else if ix_size > int_size {
|
|
|
|
Trunc(bcx, ix_val, ccx.int_type)
|
|
|
|
} else {
|
|
|
|
ix_val
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let vt = tvec::vec_types(bcx, base_datum.ty);
|
|
|
|
base::maybe_name_value(bcx.ccx(), vt.llunit_size, ~"unit_sz");
|
|
|
|
let scaled_ix = Mul(bcx, ix_val, vt.llunit_size);
|
|
|
|
base::maybe_name_value(bcx.ccx(), scaled_ix, ~"scaled_ix");
|
|
|
|
|
|
|
|
let mut (base, len) = base_datum.get_base_and_len(bcx);
|
|
|
|
|
|
|
|
if ty::type_is_str(base_ty) {
|
|
|
|
// acccount for null terminator in the case of string
|
|
|
|
len = Sub(bcx, len, C_uint(bcx.ccx(), 1u));
|
|
|
|
}
|
|
|
|
|
|
|
|
debug!("trans_index: base %s", val_str(bcx.ccx().tn, base));
|
|
|
|
debug!("trans_index: len %s", val_str(bcx.ccx().tn, len));
|
|
|
|
|
|
|
|
let bounds_check = ICmp(bcx, lib::llvm::IntUGE, scaled_ix, len);
|
|
|
|
let bcx = do with_cond(bcx, bounds_check) |bcx| {
|
2012-09-29 06:34:11 -05:00
|
|
|
let unscaled_len = UDiv(bcx, len, vt.llunit_size);
|
|
|
|
controlflow::trans_fail_bounds_check(bcx, index_expr.span,
|
|
|
|
ix_val, unscaled_len)
|
2012-08-28 17:54:45 -05:00
|
|
|
};
|
|
|
|
let elt = InBoundsGEP(bcx, base, ~[ix_val]);
|
|
|
|
let elt = PointerCast(bcx, elt, T_ptr(vt.llunit_ty));
|
|
|
|
return DatumBlock {
|
|
|
|
bcx: bcx,
|
|
|
|
datum: Datum {val: elt, ty: vt.unit_ty,
|
|
|
|
mode: ByRef, source: FromLvalue}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_rec_or_struct(bcx: block,
|
|
|
|
fields: &[ast::field],
|
|
|
|
base: Option<@ast::expr>,
|
|
|
|
id: ast::node_id,
|
|
|
|
dest: Dest) -> block
|
|
|
|
{
|
|
|
|
let _icx = bcx.insn_ctxt("trans_rec");
|
|
|
|
let mut bcx = bcx;
|
|
|
|
|
|
|
|
// Handle the case where the result is ignored.
|
|
|
|
let addr;
|
|
|
|
match dest {
|
|
|
|
SaveIn(p) => {
|
|
|
|
addr = p;
|
|
|
|
}
|
|
|
|
Ignore => {
|
|
|
|
// just evaluate the values for each field and drop them
|
|
|
|
// on the floor
|
2012-09-18 23:41:13 -05:00
|
|
|
for vec::each(fields) |fld| {
|
2012-08-28 17:54:45 -05:00
|
|
|
bcx = trans_into(bcx, fld.node.expr, Ignore);
|
|
|
|
}
|
|
|
|
return bcx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let ty = node_id_type(bcx, id);
|
|
|
|
let tcx = bcx.tcx();
|
|
|
|
do with_field_tys(tcx, ty) |has_dtor, field_tys| {
|
|
|
|
// evaluate each of the fields and store them into their
|
|
|
|
// correct locations
|
|
|
|
let mut temp_cleanups = ~[];
|
|
|
|
for fields.each |field| {
|
|
|
|
let ix = ty::field_idx_strict(tcx, field.node.ident, field_tys);
|
|
|
|
let dest = GEPi(bcx, addr, struct_field(ix));
|
|
|
|
bcx = trans_into(bcx, field.node.expr, SaveIn(dest));
|
|
|
|
add_clean_temp_mem(bcx, dest, field_tys[ix].mt.ty);
|
2012-09-26 19:33:34 -05:00
|
|
|
temp_cleanups.push(dest);
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// copy over any remaining fields from the base (for
|
|
|
|
// functional record update)
|
|
|
|
for base.each |base_expr| {
|
|
|
|
let base_datum = unpack_datum!(
|
2012-09-19 18:55:01 -05:00
|
|
|
bcx, trans_to_datum(bcx, *base_expr));
|
2012-08-28 17:54:45 -05:00
|
|
|
|
|
|
|
// Copy over inherited fields
|
|
|
|
for field_tys.eachi |i, field_ty| {
|
|
|
|
if !fields.any(|f| f.node.ident == field_ty.ident) {
|
|
|
|
let dest = GEPi(bcx, addr, struct_field(i));
|
|
|
|
let base_field =
|
|
|
|
base_datum.GEPi(bcx, struct_field(i), field_ty.mt.ty);
|
|
|
|
bcx = base_field.store_to(bcx, INIT, dest);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the drop flag if necessary.
|
|
|
|
if has_dtor {
|
|
|
|
let dest = GEPi(bcx, addr, struct_dtor());
|
|
|
|
Store(bcx, C_u8(1), dest);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now revoke the cleanups as we pass responsibility for the data
|
|
|
|
// structure on to the caller
|
2012-09-19 18:55:01 -05:00
|
|
|
for temp_cleanups.each |cleanup| {
|
|
|
|
revoke_clean(bcx, *cleanup);
|
|
|
|
}
|
2012-08-28 17:54:45 -05:00
|
|
|
bcx
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_tup(bcx: block, elts: ~[@ast::expr], dest: Dest) -> block {
|
|
|
|
let _icx = bcx.insn_ctxt("trans_tup");
|
|
|
|
let mut bcx = bcx;
|
|
|
|
let addr = match dest {
|
|
|
|
Ignore => {
|
2012-09-18 23:41:37 -05:00
|
|
|
for vec::each(elts) |ex| {
|
|
|
|
bcx = trans_into(bcx, *ex, Ignore);
|
|
|
|
}
|
2012-08-28 17:54:45 -05:00
|
|
|
return bcx;
|
|
|
|
}
|
|
|
|
SaveIn(pos) => pos,
|
|
|
|
};
|
|
|
|
let mut temp_cleanups = ~[];
|
|
|
|
for vec::eachi(elts) |i, e| {
|
|
|
|
let dest = GEPi(bcx, addr, [0u, i]);
|
2012-09-21 20:43:30 -05:00
|
|
|
let e_ty = expr_ty(bcx, *e);
|
|
|
|
bcx = trans_into(bcx, *e, SaveIn(dest));
|
2012-08-28 17:54:45 -05:00
|
|
|
add_clean_temp_mem(bcx, dest, e_ty);
|
2012-09-26 19:33:34 -05:00
|
|
|
temp_cleanups.push(dest);
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
2012-09-18 23:41:37 -05:00
|
|
|
for vec::each(temp_cleanups) |cleanup| {
|
|
|
|
revoke_clean(bcx, *cleanup);
|
|
|
|
}
|
2012-08-28 17:54:45 -05:00
|
|
|
return bcx;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_immediate_lit(bcx: block, expr: @ast::expr,
|
|
|
|
lit: ast::lit) -> DatumBlock {
|
|
|
|
// must not be a string constant, that is a RvalueDpsExpr
|
|
|
|
let _icx = bcx.insn_ctxt("trans_immediate_lit");
|
|
|
|
let ty = expr_ty(bcx, expr);
|
|
|
|
immediate_rvalue_bcx(bcx, consts::const_lit(bcx.ccx(), expr, lit), ty)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_unary_datum(bcx: block,
|
|
|
|
un_expr: @ast::expr,
|
|
|
|
op: ast::unop,
|
|
|
|
sub_expr: @ast::expr) -> DatumBlock {
|
|
|
|
|
|
|
|
let _icx = bcx.insn_ctxt("trans_unary_datum");
|
|
|
|
|
|
|
|
// if deref, would be LvalueExpr
|
|
|
|
assert op != ast::deref;
|
|
|
|
|
|
|
|
// if overloaded, would be RvalueDpsExpr
|
|
|
|
assert !bcx.ccx().maps.method_map.contains_key(un_expr.id);
|
|
|
|
|
|
|
|
let un_ty = expr_ty(bcx, un_expr);
|
|
|
|
let sub_ty = expr_ty(bcx, sub_expr);
|
|
|
|
|
|
|
|
return match op {
|
|
|
|
ast::not => {
|
2012-09-11 23:25:01 -05:00
|
|
|
let Result {bcx, val} = trans_to_datum(bcx, sub_expr).to_result();
|
2012-08-28 17:54:45 -05:00
|
|
|
immediate_rvalue_bcx(bcx, Not(bcx, val), un_ty)
|
|
|
|
}
|
|
|
|
ast::neg => {
|
2012-09-11 23:25:01 -05:00
|
|
|
let Result {bcx, val} = trans_to_datum(bcx, sub_expr).to_result();
|
2012-08-28 17:54:45 -05:00
|
|
|
let llneg = {
|
|
|
|
if ty::type_is_fp(un_ty) {
|
|
|
|
FNeg(bcx, val)
|
|
|
|
} else {
|
|
|
|
Neg(bcx, val)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
immediate_rvalue_bcx(bcx, llneg, un_ty)
|
|
|
|
}
|
|
|
|
ast::box(_) => {
|
|
|
|
trans_boxed_expr(bcx, un_ty, sub_expr, sub_ty, heap_shared)
|
|
|
|
}
|
|
|
|
ast::uniq(_) => {
|
|
|
|
trans_boxed_expr(bcx, un_ty, sub_expr, sub_ty, heap_exchange)
|
|
|
|
}
|
|
|
|
ast::deref => {
|
|
|
|
bcx.sess().bug(~"deref expressions should have been \
|
|
|
|
translated using trans_lvalue(), not \
|
|
|
|
trans_unary_datum()")
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
fn trans_boxed_expr(bcx: block,
|
|
|
|
box_ty: ty::t,
|
|
|
|
contents: @ast::expr,
|
|
|
|
contents_ty: ty::t,
|
|
|
|
heap: heap) -> DatumBlock {
|
|
|
|
let _icx = bcx.insn_ctxt("trans_boxed_expr");
|
|
|
|
let {bcx, box, body} =
|
|
|
|
base::malloc_general(bcx, contents_ty, heap);
|
|
|
|
add_clean_free(bcx, box, heap);
|
|
|
|
let bcx = trans_into(bcx, contents, SaveIn(body));
|
|
|
|
revoke_clean(bcx, box);
|
|
|
|
return immediate_rvalue_bcx(bcx, box, box_ty);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_addr_of(bcx: block, expr: @ast::expr,
|
|
|
|
subexpr: @ast::expr) -> DatumBlock {
|
|
|
|
let _icx = bcx.insn_ctxt("trans_addr_of");
|
|
|
|
let mut bcx = bcx;
|
|
|
|
let sub_datum = unpack_datum!(bcx, trans_to_datum(bcx, subexpr));
|
|
|
|
let llval = sub_datum.to_ref_llval(bcx);
|
|
|
|
return immediate_rvalue_bcx(bcx, llval, expr_ty(bcx, expr));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Important to get types for both lhs and rhs, because one might be _|_
|
|
|
|
// and the other not.
|
|
|
|
fn trans_eager_binop(bcx: block,
|
|
|
|
binop_expr: @ast::expr,
|
|
|
|
binop_ty: ty::t,
|
|
|
|
op: ast::binop,
|
|
|
|
lhs_datum: &Datum,
|
|
|
|
rhs_datum: &Datum) -> DatumBlock
|
|
|
|
{
|
|
|
|
let mut bcx = bcx;
|
|
|
|
let _icx = bcx.insn_ctxt("trans_eager_binop");
|
|
|
|
|
|
|
|
let lhs = lhs_datum.to_appropriate_llval(bcx);
|
|
|
|
let lhs_t = lhs_datum.ty;
|
|
|
|
|
|
|
|
let rhs = rhs_datum.to_appropriate_llval(bcx);
|
|
|
|
let rhs_t = rhs_datum.ty;
|
|
|
|
|
|
|
|
let intype = {
|
|
|
|
if ty::type_is_bot(lhs_t) { rhs_t }
|
|
|
|
else { lhs_t }
|
|
|
|
};
|
|
|
|
let is_float = ty::type_is_fp(intype);
|
|
|
|
|
|
|
|
let rhs = base::cast_shift_expr_rhs(bcx, op, lhs, rhs);
|
|
|
|
|
|
|
|
let mut bcx = bcx;
|
|
|
|
let val = match op {
|
|
|
|
ast::add => {
|
|
|
|
if is_float { FAdd(bcx, lhs, rhs) }
|
|
|
|
else { Add(bcx, lhs, rhs) }
|
|
|
|
}
|
|
|
|
ast::subtract => {
|
|
|
|
if is_float { FSub(bcx, lhs, rhs) }
|
|
|
|
else { Sub(bcx, lhs, rhs) }
|
|
|
|
}
|
|
|
|
ast::mul => {
|
|
|
|
if is_float { FMul(bcx, lhs, rhs) }
|
|
|
|
else { Mul(bcx, lhs, rhs) }
|
|
|
|
}
|
|
|
|
ast::div => {
|
|
|
|
if is_float {
|
|
|
|
FDiv(bcx, lhs, rhs)
|
|
|
|
} else {
|
|
|
|
// Only zero-check integers; fp /0 is NaN
|
|
|
|
bcx = base::fail_if_zero(bcx, binop_expr.span,
|
|
|
|
op, rhs, rhs_t);
|
|
|
|
if ty::type_is_signed(intype) {
|
|
|
|
SDiv(bcx, lhs, rhs)
|
|
|
|
} else {
|
|
|
|
UDiv(bcx, lhs, rhs)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ast::rem => {
|
|
|
|
if is_float {
|
|
|
|
FRem(bcx, lhs, rhs)
|
|
|
|
} else {
|
|
|
|
// Only zero-check integers; fp %0 is NaN
|
|
|
|
bcx = base::fail_if_zero(bcx, binop_expr.span,
|
|
|
|
op, rhs, rhs_t);
|
|
|
|
if ty::type_is_signed(intype) {
|
|
|
|
SRem(bcx, lhs, rhs)
|
|
|
|
} else {
|
|
|
|
URem(bcx, lhs, rhs)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ast::bitor => Or(bcx, lhs, rhs),
|
|
|
|
ast::bitand => And(bcx, lhs, rhs),
|
|
|
|
ast::bitxor => Xor(bcx, lhs, rhs),
|
|
|
|
ast::shl => Shl(bcx, lhs, rhs),
|
|
|
|
ast::shr => {
|
|
|
|
if ty::type_is_signed(intype) {
|
|
|
|
AShr(bcx, lhs, rhs)
|
|
|
|
} else { LShr(bcx, lhs, rhs) }
|
|
|
|
}
|
2012-09-07 20:53:14 -05:00
|
|
|
ast::eq | ast::ne | ast::lt | ast::ge | ast::le | ast::gt => {
|
|
|
|
if ty::type_is_bot(rhs_t) {
|
|
|
|
C_bool(false)
|
|
|
|
} else {
|
|
|
|
if !ty::type_is_scalar(rhs_t) {
|
|
|
|
bcx.tcx().sess.span_bug(binop_expr.span,
|
|
|
|
~"non-scalar comparison");
|
|
|
|
}
|
|
|
|
let cmpr = base::compare_scalar_types(bcx, lhs, rhs, rhs_t, op);
|
|
|
|
bcx = cmpr.bcx;
|
|
|
|
cmpr.val
|
|
|
|
}
|
|
|
|
}
|
2012-08-28 17:54:45 -05:00
|
|
|
_ => {
|
2012-09-07 20:53:14 -05:00
|
|
|
bcx.tcx().sess.span_bug(binop_expr.span, ~"unexpected binop");
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return immediate_rvalue_bcx(bcx, val, binop_ty);
|
|
|
|
}
|
|
|
|
|
|
|
|
// refinement types would obviate the need for this
|
|
|
|
enum lazy_binop_ty { lazy_and, lazy_or }
|
|
|
|
|
|
|
|
fn trans_lazy_binop(bcx: block,
|
|
|
|
binop_expr: @ast::expr,
|
|
|
|
op: lazy_binop_ty,
|
|
|
|
a: @ast::expr,
|
|
|
|
b: @ast::expr) -> DatumBlock
|
|
|
|
{
|
|
|
|
let _icx = bcx.insn_ctxt("trans_lazy_binop");
|
|
|
|
let binop_ty = expr_ty(bcx, binop_expr);
|
|
|
|
let mut bcx = bcx;
|
|
|
|
|
|
|
|
let Result {bcx: past_lhs, val: lhs} = {
|
|
|
|
do base::with_scope_result(bcx, a.info(), ~"lhs") |bcx| {
|
2012-09-11 23:25:01 -05:00
|
|
|
trans_to_datum(bcx, a).to_result()
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if past_lhs.unreachable {
|
|
|
|
return immediate_rvalue_bcx(past_lhs, lhs, binop_ty);
|
|
|
|
}
|
|
|
|
|
|
|
|
let join = base::sub_block(bcx, ~"join");
|
|
|
|
let before_rhs = base::sub_block(bcx, ~"rhs");
|
|
|
|
|
|
|
|
match op {
|
|
|
|
lazy_and => CondBr(past_lhs, lhs, before_rhs.llbb, join.llbb),
|
|
|
|
lazy_or => CondBr(past_lhs, lhs, join.llbb, before_rhs.llbb)
|
|
|
|
}
|
|
|
|
let Result {bcx: past_rhs, val: rhs} = {
|
|
|
|
do base::with_scope_result(before_rhs, b.info(), ~"rhs") |bcx| {
|
2012-09-11 23:25:01 -05:00
|
|
|
trans_to_datum(bcx, b).to_result()
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if past_rhs.unreachable {
|
|
|
|
return immediate_rvalue_bcx(join, lhs, binop_ty);
|
|
|
|
}
|
|
|
|
|
|
|
|
Br(past_rhs, join.llbb);
|
|
|
|
let phi = Phi(join, T_bool(), ~[lhs, rhs], ~[past_lhs.llbb,
|
|
|
|
past_rhs.llbb]);
|
|
|
|
|
|
|
|
return immediate_rvalue_bcx(join, phi, binop_ty);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_binary(bcx: block,
|
|
|
|
binop_expr: @ast::expr,
|
|
|
|
op: ast::binop,
|
|
|
|
lhs: @ast::expr,
|
|
|
|
rhs: @ast::expr) -> DatumBlock
|
|
|
|
{
|
|
|
|
let _icx = bcx.insn_ctxt("trans_binary");
|
|
|
|
|
|
|
|
match op {
|
|
|
|
ast::and => {
|
|
|
|
trans_lazy_binop(bcx, binop_expr, lazy_and, lhs, rhs)
|
|
|
|
}
|
|
|
|
ast::or => {
|
|
|
|
trans_lazy_binop(bcx, binop_expr, lazy_or, lhs, rhs)
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
let mut bcx = bcx;
|
|
|
|
let lhs_datum = unpack_datum!(bcx, trans_to_datum(bcx, lhs));
|
|
|
|
let rhs_datum = unpack_datum!(bcx, trans_to_datum(bcx, rhs));
|
|
|
|
let binop_ty = expr_ty(bcx, binop_expr);
|
|
|
|
trans_eager_binop(bcx, binop_expr, binop_ty, op,
|
|
|
|
&lhs_datum, &rhs_datum)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_overloaded_op(bcx: block,
|
|
|
|
expr: @ast::expr,
|
|
|
|
rcvr: @ast::expr,
|
|
|
|
+args: ~[@ast::expr],
|
2012-09-19 20:00:26 -05:00
|
|
|
dest: Dest,
|
|
|
|
+autoref_arg: AutorefArg) -> block
|
2012-08-28 17:54:45 -05:00
|
|
|
{
|
|
|
|
let origin = bcx.ccx().maps.method_map.get(expr.id);
|
|
|
|
let fty = node_id_type(bcx, expr.callee_id);
|
|
|
|
return callee::trans_call_inner(
|
|
|
|
bcx, expr.info(), fty,
|
|
|
|
expr_ty(bcx, expr),
|
2012-09-11 21:28:14 -05:00
|
|
|
|bcx| meth::trans_method_callee(bcx, expr.callee_id, rcvr, origin),
|
2012-09-19 20:00:26 -05:00
|
|
|
callee::ArgExprs(args), dest, autoref_arg);
|
2012-08-28 17:54:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn int_cast(bcx: block, lldsttype: TypeRef, llsrctype: TypeRef,
|
|
|
|
llsrc: ValueRef, signed: bool) -> ValueRef {
|
|
|
|
let _icx = bcx.insn_ctxt("int_cast");
|
|
|
|
let srcsz = llvm::LLVMGetIntTypeWidth(llsrctype);
|
|
|
|
let dstsz = llvm::LLVMGetIntTypeWidth(lldsttype);
|
|
|
|
return if dstsz == srcsz {
|
|
|
|
BitCast(bcx, llsrc, lldsttype)
|
|
|
|
} else if srcsz > dstsz {
|
|
|
|
TruncOrBitCast(bcx, llsrc, lldsttype)
|
|
|
|
} else if signed {
|
|
|
|
SExtOrBitCast(bcx, llsrc, lldsttype)
|
|
|
|
} else { ZExtOrBitCast(bcx, llsrc, lldsttype) };
|
|
|
|
}
|
|
|
|
|
|
|
|
fn float_cast(bcx: block, lldsttype: TypeRef, llsrctype: TypeRef,
|
|
|
|
llsrc: ValueRef) -> ValueRef {
|
|
|
|
let _icx = bcx.insn_ctxt("float_cast");
|
|
|
|
let srcsz = lib::llvm::float_width(llsrctype);
|
|
|
|
let dstsz = lib::llvm::float_width(lldsttype);
|
|
|
|
return if dstsz > srcsz {
|
|
|
|
FPExt(bcx, llsrc, lldsttype)
|
|
|
|
} else if srcsz > dstsz {
|
|
|
|
FPTrunc(bcx, llsrc, lldsttype)
|
|
|
|
} else { llsrc };
|
|
|
|
}
|
|
|
|
|
|
|
|
enum cast_kind {
|
|
|
|
cast_pointer,
|
|
|
|
cast_integral,
|
|
|
|
cast_float,
|
|
|
|
cast_enum,
|
|
|
|
cast_other,
|
|
|
|
}
|
|
|
|
|
2012-09-19 20:00:26 -05:00
|
|
|
impl cast_kind : cmp::Eq {
|
|
|
|
pure fn eq(other: &cast_kind) -> bool {
|
|
|
|
match (self, (*other)) {
|
|
|
|
(cast_pointer, cast_pointer) => true,
|
|
|
|
(cast_integral, cast_integral) => true,
|
|
|
|
(cast_float, cast_float) => true,
|
|
|
|
(cast_enum, cast_enum) => true,
|
|
|
|
(cast_other, cast_other) => true,
|
|
|
|
(cast_pointer, _) => false,
|
|
|
|
(cast_integral, _) => false,
|
|
|
|
(cast_float, _) => false,
|
|
|
|
(cast_enum, _) => false,
|
|
|
|
(cast_other, _) => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pure fn ne(other: &cast_kind) -> bool { !self.eq(other) }
|
|
|
|
}
|
2012-08-28 17:54:45 -05:00
|
|
|
|
|
|
|
fn cast_type_kind(t: ty::t) -> cast_kind {
|
2012-09-11 18:20:31 -05:00
|
|
|
match ty::get(t).sty {
|
2012-08-28 17:54:45 -05:00
|
|
|
ty::ty_float(*) => cast_float,
|
|
|
|
ty::ty_ptr(*) => cast_pointer,
|
|
|
|
ty::ty_rptr(*) => cast_pointer,
|
|
|
|
ty::ty_int(*) => cast_integral,
|
|
|
|
ty::ty_uint(*) => cast_integral,
|
|
|
|
ty::ty_bool => cast_integral,
|
|
|
|
ty::ty_enum(*) => cast_enum,
|
|
|
|
_ => cast_other
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_imm_cast(bcx: block, expr: @ast::expr,
|
|
|
|
id: ast::node_id) -> DatumBlock {
|
|
|
|
let _icx = bcx.insn_ctxt("trans_cast");
|
|
|
|
let ccx = bcx.ccx();
|
|
|
|
|
|
|
|
let t_out = node_id_type(bcx, id);
|
|
|
|
|
|
|
|
let mut bcx = bcx;
|
2012-09-11 23:25:01 -05:00
|
|
|
let llexpr = unpack_result!(bcx, trans_to_datum(bcx, expr).to_result());
|
2012-08-28 17:54:45 -05:00
|
|
|
let ll_t_in = val_ty(llexpr);
|
|
|
|
let t_in = expr_ty(bcx, expr);
|
|
|
|
let ll_t_out = type_of::type_of(ccx, t_out);
|
|
|
|
|
|
|
|
let k_in = cast_type_kind(t_in);
|
|
|
|
let k_out = cast_type_kind(t_out);
|
|
|
|
let s_in = k_in == cast_integral && ty::type_is_signed(t_in);
|
|
|
|
|
|
|
|
let newval =
|
|
|
|
match {in: k_in, out: k_out} {
|
|
|
|
{in: cast_integral, out: cast_integral} => {
|
|
|
|
int_cast(bcx, ll_t_out, ll_t_in, llexpr, s_in)
|
|
|
|
}
|
|
|
|
{in: cast_float, out: cast_float} => {
|
|
|
|
float_cast(bcx, ll_t_out, ll_t_in, llexpr)
|
|
|
|
}
|
|
|
|
{in: cast_integral, out: cast_float} => {
|
|
|
|
if s_in {
|
|
|
|
SIToFP(bcx, llexpr, ll_t_out)
|
|
|
|
} else { UIToFP(bcx, llexpr, ll_t_out) }
|
|
|
|
}
|
|
|
|
{in: cast_float, out: cast_integral} => {
|
|
|
|
if ty::type_is_signed(t_out) {
|
|
|
|
FPToSI(bcx, llexpr, ll_t_out)
|
|
|
|
} else { FPToUI(bcx, llexpr, ll_t_out) }
|
|
|
|
}
|
|
|
|
{in: cast_integral, out: cast_pointer} => {
|
|
|
|
IntToPtr(bcx, llexpr, ll_t_out)
|
|
|
|
}
|
|
|
|
{in: cast_pointer, out: cast_integral} => {
|
|
|
|
PtrToInt(bcx, llexpr, ll_t_out)
|
|
|
|
}
|
|
|
|
{in: cast_pointer, out: cast_pointer} => {
|
|
|
|
PointerCast(bcx, llexpr, ll_t_out)
|
|
|
|
}
|
|
|
|
{in: cast_enum, out: cast_integral} |
|
|
|
|
{in: cast_enum, out: cast_float} => {
|
|
|
|
let bcx = bcx;
|
|
|
|
let llenumty = T_opaque_enum_ptr(ccx);
|
|
|
|
let av_enum = PointerCast(bcx, llexpr, llenumty);
|
|
|
|
let lldiscrim_a_ptr = GEPi(bcx, av_enum, [0u, 0u]);
|
|
|
|
let lldiscrim_a = Load(bcx, lldiscrim_a_ptr);
|
|
|
|
match k_out {
|
|
|
|
cast_integral => int_cast(bcx, ll_t_out,
|
|
|
|
val_ty(lldiscrim_a),
|
|
|
|
lldiscrim_a, true),
|
|
|
|
cast_float => SIToFP(bcx, lldiscrim_a, ll_t_out),
|
|
|
|
_ => ccx.sess.bug(~"translating unsupported cast.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => ccx.sess.bug(~"translating unsupported cast.")
|
|
|
|
};
|
|
|
|
return immediate_rvalue_bcx(bcx, newval, t_out);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn trans_assign_op(bcx: block,
|
|
|
|
expr: @ast::expr,
|
|
|
|
op: ast::binop,
|
|
|
|
dst: @ast::expr,
|
|
|
|
src: @ast::expr) -> block
|
|
|
|
{
|
|
|
|
let _icx = bcx.insn_ctxt("trans_assign_op");
|
|
|
|
let mut bcx = bcx;
|
|
|
|
|
|
|
|
debug!("trans_assign_op(expr=%s)", bcx.expr_to_str(expr));
|
|
|
|
|
|
|
|
// Evaluate LHS (destination), which should be an lvalue
|
|
|
|
let dst_datum = unpack_datum!(bcx, trans_lvalue(bcx, dst));
|
|
|
|
|
|
|
|
// A user-defined operator method
|
|
|
|
if bcx.ccx().maps.method_map.find(expr.id).is_some() {
|
2012-10-11 18:42:40 -05:00
|
|
|
// FIXME(#2528) evaluates the receiver twice!!
|
2012-08-28 17:54:45 -05:00
|
|
|
let scratch = scratch_datum(bcx, dst_datum.ty, false);
|
|
|
|
let bcx = trans_overloaded_op(bcx, expr, dst, ~[src],
|
2012-09-19 20:00:26 -05:00
|
|
|
SaveIn(scratch.val), DoAutorefArg);
|
2012-08-28 17:54:45 -05:00
|
|
|
return scratch.move_to_datum(bcx, DROP_EXISTING, dst_datum);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Evaluate RHS (source)
|
|
|
|
let src_datum = unpack_datum!(bcx, trans_to_datum(bcx, src));
|
|
|
|
|
|
|
|
// Perform computation and store the result
|
|
|
|
let result_datum =
|
|
|
|
unpack_datum!(bcx,
|
|
|
|
trans_eager_binop(
|
|
|
|
bcx, expr, dst_datum.ty, op,
|
|
|
|
&dst_datum, &src_datum));
|
|
|
|
return result_datum.store_to_datum(bcx, DROP_EXISTING, dst_datum);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn shorten(+x: ~str) -> ~str {
|
|
|
|
if x.len() > 60 { x.substr(0, 60) } else { x }
|
2012-09-07 14:06:02 -05:00
|
|
|
}
|