2012-01-14 18:05:07 -06:00
|
|
|
import driver::session::session;
|
2011-07-11 09:47:24 -05:00
|
|
|
import lib::llvm::llvm;
|
2012-02-01 04:04:56 -06:00
|
|
|
import lib::llvm::{ValueRef, BasicBlockRef};
|
2012-01-14 18:05:07 -06:00
|
|
|
import pat_util::*;
|
2012-01-27 06:17:06 -06:00
|
|
|
import build::*;
|
2012-02-17 06:17:40 -06:00
|
|
|
import base::*;
|
2011-07-11 09:47:24 -05:00
|
|
|
import syntax::ast;
|
2011-08-21 23:44:41 -05:00
|
|
|
import syntax::ast_util;
|
2012-05-22 00:41:59 -05:00
|
|
|
import syntax::ast_util::{dummy_sp, path_to_ident};
|
2011-07-11 09:47:24 -05:00
|
|
|
import syntax::ast::def_id;
|
|
|
|
import syntax::codemap::span;
|
2012-01-14 18:05:07 -06:00
|
|
|
import syntax::print::pprust::pat_to_str;
|
2012-07-17 17:23:59 -05:00
|
|
|
import middle::resolve3::DefMap;
|
2012-02-01 20:52:08 -06:00
|
|
|
import back::abi;
|
2012-03-07 18:48:57 -06:00
|
|
|
import std::map::hashmap;
|
2012-08-14 18:54:13 -05:00
|
|
|
import dvec::{DVec, dvec};
|
2011-07-11 09:47:24 -05:00
|
|
|
|
2012-01-27 06:17:06 -06:00
|
|
|
import common::*;
|
2011-07-14 19:08:22 -05:00
|
|
|
|
2012-01-19 16:34:23 -06:00
|
|
|
// An option identifying a branch (either a literal, a enum variant or a
|
|
|
|
// range)
|
2012-01-19 16:24:03 -06:00
|
|
|
enum opt {
|
2012-01-19 19:56:05 -06:00
|
|
|
lit(@ast::expr),
|
2012-01-30 23:00:57 -06:00
|
|
|
var(/* disr val */int, /* variant dids */{enm: def_id, var: def_id}),
|
2012-01-19 21:29:21 -06:00
|
|
|
range(@ast::expr, @ast::expr)
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
2012-03-14 12:04:03 -05:00
|
|
|
fn opt_eq(tcx: ty::ctxt, a: opt, b: opt) -> bool {
|
2012-08-06 14:34:08 -05:00
|
|
|
match (a, b) {
|
2012-08-03 21:59:04 -05:00
|
|
|
(lit(a), lit(b)) => const_eval::compare_lit_exprs(tcx, a, b) == 0,
|
|
|
|
(range(a1, a2), range(b1, b2)) => {
|
2012-03-22 16:56:56 -05:00
|
|
|
const_eval::compare_lit_exprs(tcx, a1, b1) == 0 &&
|
|
|
|
const_eval::compare_lit_exprs(tcx, a2, b2) == 0
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
(var(a, _), var(b, _)) => a == b,
|
|
|
|
_ => false
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
}
|
2011-09-28 14:07:33 -05:00
|
|
|
|
2012-01-19 16:24:03 -06:00
|
|
|
enum opt_result {
|
2012-01-19 19:56:05 -06:00
|
|
|
single_result(result),
|
|
|
|
range_result(result, result),
|
2011-09-28 14:07:33 -05:00
|
|
|
}
|
2012-02-17 06:17:40 -06:00
|
|
|
fn trans_opt(bcx: block, o: opt) -> opt_result {
|
2012-08-14 18:45:43 -05:00
|
|
|
let _icx = bcx.insn_ctxt("alt::trans_opt");
|
2012-03-15 08:47:03 -05:00
|
|
|
let ccx = bcx.ccx();
|
|
|
|
let mut bcx = bcx;
|
2012-08-06 14:34:08 -05:00
|
|
|
match o {
|
2012-08-03 21:59:04 -05:00
|
|
|
lit(l) => {
|
2012-08-06 14:34:08 -05:00
|
|
|
match l.node {
|
2012-07-12 14:14:08 -05:00
|
|
|
ast::expr_vstore(@{node: ast::expr_lit(
|
|
|
|
@{node: ast::lit_str(s), _}), _},
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::vstore_uniq) => {
|
2012-07-14 14:19:36 -05:00
|
|
|
let strty = ty::mk_estr(bcx.tcx(), ty::vstore_uniq);
|
2012-02-17 06:17:40 -06:00
|
|
|
let cell = empty_dest_cell();
|
2012-08-03 13:51:04 -05:00
|
|
|
bcx = tvec::trans_estr(bcx, s, some(ast::vstore_uniq),
|
|
|
|
by_val(cell));
|
2011-10-10 06:32:50 -05:00
|
|
|
add_clean_temp(bcx, *cell, strty);
|
2012-08-01 19:30:05 -05:00
|
|
|
return single_result(rslt(bcx, *cell));
|
2011-09-27 01:42:27 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => {
|
2012-08-01 19:30:05 -05:00
|
|
|
return single_result(
|
2012-07-31 20:34:36 -05:00
|
|
|
rslt(bcx, consts::const_expr(ccx, l)));
|
2011-09-27 01:42:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
var(disr_val, _) => {
|
2012-08-01 19:30:05 -05:00
|
|
|
return single_result(rslt(bcx, C_int(ccx, disr_val)));
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
range(l1, l2) => {
|
2012-08-01 19:30:05 -05:00
|
|
|
return range_result(rslt(bcx, consts::const_expr(ccx, l1)),
|
2012-07-31 20:34:36 -05:00
|
|
|
rslt(bcx, consts::const_expr(ccx, l2)));
|
2011-09-28 14:07:33 -05:00
|
|
|
}
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-22 09:57:23 -06:00
|
|
|
fn variant_opt(tcx: ty::ctxt, pat_id: ast::node_id) -> opt {
|
|
|
|
let vdef = ast_util::variant_def_ids(tcx.def_map.get(pat_id));
|
|
|
|
let variants = ty::enum_variants(tcx, vdef.enm);
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(*variants) |v| {
|
2012-08-01 19:30:05 -05:00
|
|
|
if vdef.var == v.id { return var(v.disr_val, vdef); }
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
2012-03-08 16:29:17 -06:00
|
|
|
core::unreachable();
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
|
2012-08-01 17:23:21 -05:00
|
|
|
struct binding {
|
|
|
|
val: ValueRef;
|
|
|
|
mode: ast::binding_mode;
|
|
|
|
ty: ty::t;
|
|
|
|
}
|
|
|
|
|
2012-07-31 21:25:24 -05:00
|
|
|
type bind_map = ~[{
|
|
|
|
ident: ast::ident,
|
2012-08-01 17:23:21 -05:00
|
|
|
binding: binding
|
2012-07-31 21:25:24 -05:00
|
|
|
}];
|
|
|
|
|
2012-08-01 17:23:21 -05:00
|
|
|
fn assoc(key: ast::ident, list: bind_map) -> option<binding> {
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(list) |elt| {
|
2012-07-18 18:18:02 -05:00
|
|
|
if elt.ident == key {
|
2012-08-01 17:23:21 -05:00
|
|
|
return some(elt.binding);
|
|
|
|
}
|
2011-08-22 07:38:48 -05:00
|
|
|
}
|
2012-08-01 17:23:21 -05:00
|
|
|
return none;
|
2011-08-22 07:38:48 -05:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
type match_branch =
|
2012-06-29 18:26:56 -05:00
|
|
|
@{pats: ~[@ast::pat],
|
2011-08-22 07:38:48 -05:00
|
|
|
bound: bind_map,
|
2012-05-17 22:18:20 -05:00
|
|
|
data: @{bodycx: block,
|
2012-01-31 19:05:20 -06:00
|
|
|
guard: option<@ast::expr>,
|
2012-01-14 18:05:07 -06:00
|
|
|
id_map: pat_id_map}};
|
2012-07-31 18:38:41 -05:00
|
|
|
type match_ = ~[match_branch];
|
2011-07-11 09:47:24 -05:00
|
|
|
|
2012-07-31 18:38:41 -05:00
|
|
|
fn has_nested_bindings(m: match_, col: uint) -> bool {
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(m) |br| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match br.pats[col].node {
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_ident(_, _, some(_)) => return true,
|
|
|
|
_ => ()
|
2011-12-08 04:56:16 -06:00
|
|
|
}
|
|
|
|
}
|
2012-08-01 19:30:05 -05:00
|
|
|
return false;
|
2011-12-08 04:56:16 -06:00
|
|
|
}
|
|
|
|
|
2012-08-01 17:23:21 -05:00
|
|
|
fn expand_nested_bindings(bcx: block, m: match_, col: uint, val: ValueRef)
|
|
|
|
-> match_ {
|
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
let mut result = ~[];
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(m) |br| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match br.pats[col].node {
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_ident(mode, name, some(inner)) => {
|
2012-06-28 15:52:13 -05:00
|
|
|
let pats = vec::append(
|
|
|
|
vec::slice(br.pats, 0u, col),
|
2012-06-29 18:26:56 -05:00
|
|
|
vec::append(~[inner],
|
2012-07-26 16:00:31 -05:00
|
|
|
vec::view(br.pats, col + 1u, br.pats.len())));
|
2012-06-28 15:52:13 -05:00
|
|
|
vec::push(result,
|
|
|
|
@{pats: pats,
|
|
|
|
bound: vec::append(
|
2012-06-29 18:26:56 -05:00
|
|
|
br.bound, ~[{ident: path_to_ident(name),
|
2012-08-01 17:23:21 -05:00
|
|
|
binding: binding {
|
|
|
|
val: val,
|
|
|
|
mode: mode,
|
|
|
|
ty: node_id_type(bcx,
|
|
|
|
br.pats[col].id)
|
|
|
|
}}])
|
2012-06-28 15:52:13 -05:00
|
|
|
with *br});
|
2011-12-08 04:56:16 -06:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => vec::push(result, br)
|
2011-12-08 04:56:16 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
result
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
type enter_pat = fn(@ast::pat) -> option<~[@ast::pat]>;
|
2011-07-27 07:19:39 -05:00
|
|
|
|
2012-08-01 17:23:21 -05:00
|
|
|
fn enter_match(bcx: block, dm: DefMap, m: match_, col: uint, val: ValueRef,
|
2012-07-31 18:38:41 -05:00
|
|
|
e: enter_pat) -> match_ {
|
2012-06-29 18:26:56 -05:00
|
|
|
let mut result = ~[];
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(m) |br| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match e(br.pats[col]) {
|
2012-08-03 21:59:04 -05:00
|
|
|
some(sub) => {
|
2012-06-28 15:52:13 -05:00
|
|
|
let pats = vec::append(
|
2012-07-26 16:00:31 -05:00
|
|
|
vec::append(sub, vec::view(br.pats, 0u, col)),
|
|
|
|
vec::view(br.pats, col + 1u, br.pats.len()));
|
2012-02-22 09:57:23 -06:00
|
|
|
let self = br.pats[col];
|
2012-08-06 14:34:08 -05:00
|
|
|
let bound = match self.node {
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_ident(mode, name, none)
|
|
|
|
if !pat_is_variant(dm, self) => {
|
2012-06-28 15:52:13 -05:00
|
|
|
vec::append(br.bound,
|
2012-07-31 21:25:24 -05:00
|
|
|
~[{ident: path_to_ident(name),
|
2012-08-01 17:23:21 -05:00
|
|
|
binding: binding {
|
|
|
|
val: val,
|
|
|
|
mode: mode,
|
|
|
|
ty: node_id_type(bcx, br.pats[col].id)
|
|
|
|
}}])
|
2012-02-22 09:57:23 -06:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => br.bound
|
2012-02-22 09:57:23 -06:00
|
|
|
};
|
2012-06-26 02:39:18 -05:00
|
|
|
vec::push(result, @{pats: pats, bound: bound with *br});
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
none => ()
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
}
|
2012-08-01 19:30:05 -05:00
|
|
|
return result;
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
|
2012-08-01 17:23:21 -05:00
|
|
|
fn enter_default(bcx: block, dm: DefMap, m: match_, col: uint, val: ValueRef)
|
|
|
|
-> match_ {
|
|
|
|
|
|
|
|
do enter_match(bcx, dm, m, col, val) |p| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match p.node {
|
2012-08-06 19:01:14 -05:00
|
|
|
ast::pat_wild | ast::pat_rec(_, _) | ast::pat_tup(_) |
|
|
|
|
ast::pat_struct(*) => some(~[]),
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_ident(_, _, none) if !pat_is_variant(dm, p) => some(~[]),
|
|
|
|
_ => none
|
2012-01-14 18:05:07 -06:00
|
|
|
}
|
2011-12-08 04:56:16 -06:00
|
|
|
}
|
2011-07-13 04:33:46 -05:00
|
|
|
}
|
|
|
|
|
2012-08-01 17:23:21 -05:00
|
|
|
fn enter_opt(bcx: block, m: match_, opt: opt, col: uint,
|
2012-07-31 18:38:41 -05:00
|
|
|
variant_size: uint, val: ValueRef) -> match_ {
|
2012-08-01 17:23:21 -05:00
|
|
|
let tcx = bcx.tcx();
|
2011-08-12 10:57:21 -05:00
|
|
|
let dummy = @{id: 0, node: ast::pat_wild, span: dummy_sp()};
|
2012-08-01 17:23:21 -05:00
|
|
|
do enter_match(bcx, tcx.def_map, m, col, val) |p| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match p.node {
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_enum(_, subpats) => {
|
2012-04-20 02:54:42 -05:00
|
|
|
if opt_eq(tcx, variant_opt(tcx, p.id), opt) {
|
2012-04-13 14:22:35 -05:00
|
|
|
some(option::get_default(subpats,
|
2012-04-23 17:50:51 -05:00
|
|
|
vec::from_elem(variant_size, dummy))) }
|
2012-02-22 09:57:23 -06:00
|
|
|
else { none }
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_ident(_, _, none) if pat_is_variant(tcx.def_map, p) => {
|
2012-06-29 18:26:56 -05:00
|
|
|
if opt_eq(tcx, variant_opt(tcx, p.id), opt) { some(~[]) }
|
2012-02-22 09:57:23 -06:00
|
|
|
else { none }
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_lit(l) => {
|
2012-06-29 18:26:56 -05:00
|
|
|
if opt_eq(tcx, lit(l), opt) { some(~[]) } else { none }
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_range(l1, l2) => {
|
2012-06-29 18:26:56 -05:00
|
|
|
if opt_eq(tcx, range(l1, l2), opt) { some(~[]) } else { none }
|
2011-09-28 14:07:33 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => some(vec::from_elem(variant_size, dummy))
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-06 19:01:14 -05:00
|
|
|
fn enter_rec_or_struct(bcx: block, dm: DefMap, m: match_, col: uint,
|
|
|
|
fields: ~[ast::ident], val: ValueRef) -> match_ {
|
2011-08-15 15:33:12 -05:00
|
|
|
let dummy = @{id: 0, node: ast::pat_wild, span: dummy_sp()};
|
2012-08-01 17:23:21 -05:00
|
|
|
do enter_match(bcx, dm, m, col, val) |p| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match p.node {
|
2012-08-06 19:01:14 -05:00
|
|
|
ast::pat_rec(fpats, _) | ast::pat_struct(_, fpats, _) => {
|
2012-06-29 18:26:56 -05:00
|
|
|
let mut pats = ~[];
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(fields) |fname| {
|
2012-03-15 08:47:03 -05:00
|
|
|
let mut pat = dummy;
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(fpats) |fpat| {
|
2012-07-18 18:18:02 -05:00
|
|
|
if fpat.ident == fname { pat = fpat.pat; break; }
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
2012-06-26 02:39:18 -05:00
|
|
|
vec::push(pats, pat);
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
2012-02-22 09:57:23 -06:00
|
|
|
some(pats)
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => some(vec::from_elem(fields.len(), dummy))
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-01 17:23:21 -05:00
|
|
|
fn enter_tup(bcx: block, dm: DefMap, m: match_, col: uint, val: ValueRef,
|
2012-07-31 18:38:41 -05:00
|
|
|
n_elts: uint) -> match_ {
|
2011-08-15 15:33:12 -05:00
|
|
|
let dummy = @{id: 0, node: ast::pat_wild, span: dummy_sp()};
|
2012-08-01 17:23:21 -05:00
|
|
|
do enter_match(bcx, dm, m, col, val) |p| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match p.node {
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_tup(elts) => some(elts),
|
|
|
|
_ => some(vec::from_elem(n_elts, dummy))
|
2011-08-15 06:15:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-01 17:23:21 -05:00
|
|
|
fn enter_box(bcx: block, dm: DefMap, m: match_, col: uint, val: ValueRef)
|
|
|
|
-> match_ {
|
2011-08-12 10:57:21 -05:00
|
|
|
let dummy = @{id: 0, node: ast::pat_wild, span: dummy_sp()};
|
2012-08-01 17:23:21 -05:00
|
|
|
do enter_match(bcx, dm, m, col, val) |p| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match p.node {
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_box(sub) => some(~[sub]),
|
|
|
|
_ => some(~[dummy])
|
2011-07-13 04:11:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-01 17:23:21 -05:00
|
|
|
fn enter_uniq(bcx: block, dm: DefMap, m: match_, col: uint, val: ValueRef)
|
|
|
|
-> match_ {
|
2011-09-23 13:15:17 -05:00
|
|
|
let dummy = @{id: 0, node: ast::pat_wild, span: dummy_sp()};
|
2012-08-01 17:23:21 -05:00
|
|
|
do enter_match(bcx, dm, m, col, val) |p| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match p.node {
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_uniq(sub) => some(~[sub]),
|
|
|
|
_ => some(~[dummy])
|
2011-09-23 13:15:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-31 18:38:41 -05:00
|
|
|
fn get_options(ccx: @crate_ctxt, m: match_, col: uint) -> ~[opt] {
|
2012-08-14 18:54:13 -05:00
|
|
|
fn add_to_set(tcx: ty::ctxt, &&set: DVec<opt>, val: opt) {
|
2012-08-01 19:30:05 -05:00
|
|
|
if set.any(|l| opt_eq(tcx, l, val)) {return;}
|
2012-05-25 10:17:06 -05:00
|
|
|
set.push(val);
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
|
2012-05-25 10:17:06 -05:00
|
|
|
let found = dvec();
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(m) |br| {
|
2012-02-22 09:57:23 -06:00
|
|
|
let cur = br.pats[col];
|
|
|
|
if pat_is_variant(ccx.tcx.def_map, cur) {
|
2012-03-14 12:04:03 -05:00
|
|
|
add_to_set(ccx.tcx, found, variant_opt(ccx.tcx, br.pats[col].id));
|
2012-02-22 09:57:23 -06:00
|
|
|
} else {
|
2012-08-06 14:34:08 -05:00
|
|
|
match cur.node {
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_lit(l) => add_to_set(ccx.tcx, found, lit(l)),
|
|
|
|
ast::pat_range(l1, l2) => {
|
2012-03-14 12:04:03 -05:00
|
|
|
add_to_set(ccx.tcx, found, range(l1, l2));
|
2012-02-22 09:57:23 -06:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => ()
|
2012-02-22 09:57:23 -06:00
|
|
|
}
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
}
|
2012-08-13 19:11:33 -05:00
|
|
|
return vec::from_mut(dvec::unwrap(move found));
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
|
2012-02-17 06:17:40 -06:00
|
|
|
fn extract_variant_args(bcx: block, pat_id: ast::node_id,
|
2012-01-30 23:00:57 -06:00
|
|
|
vdefs: {enm: def_id, var: def_id}, val: ValueRef) ->
|
2012-06-29 18:26:56 -05:00
|
|
|
{vals: ~[ValueRef], bcx: block} {
|
2012-08-14 18:45:43 -05:00
|
|
|
let _icx = bcx.insn_ctxt("alt::extract_variant_args");
|
2012-03-15 08:47:03 -05:00
|
|
|
let ccx = bcx.fcx.ccx;
|
2012-08-06 14:34:08 -05:00
|
|
|
let enum_ty_substs = match check ty::get(node_id_type(bcx, pat_id))
|
|
|
|
.struct {
|
|
|
|
|
2012-08-03 21:59:04 -05:00
|
|
|
ty::ty_enum(id, substs) => { assert id == vdefs.enm; substs.tps }
|
2012-03-07 02:19:29 -06:00
|
|
|
};
|
2012-03-15 08:47:03 -05:00
|
|
|
let mut blobptr = val;
|
2012-01-30 23:00:57 -06:00
|
|
|
let variants = ty::enum_variants(ccx.tcx, vdefs.enm);
|
2012-02-14 02:10:47 -06:00
|
|
|
let size = ty::enum_variant_with_id(ccx.tcx, vdefs.enm,
|
|
|
|
vdefs.var).args.len();
|
|
|
|
if size > 0u && (*variants).len() != 1u {
|
2012-01-25 07:34:31 -06:00
|
|
|
let enumptr =
|
2012-01-27 06:17:06 -06:00
|
|
|
PointerCast(bcx, val, T_opaque_enum_ptr(ccx));
|
2012-06-29 18:26:56 -05:00
|
|
|
blobptr = GEPi(bcx, enumptr, ~[0u, 1u]);
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
2012-01-30 23:00:57 -06:00
|
|
|
let vdefs_tg = vdefs.enm;
|
2011-09-01 19:25:06 -05:00
|
|
|
let vdefs_var = vdefs.var;
|
2012-06-30 18:19:07 -05:00
|
|
|
let args = do vec::from_fn(size) |i| {
|
2012-04-18 23:26:25 -05:00
|
|
|
GEP_enum(bcx, blobptr, vdefs_tg, vdefs_var,
|
|
|
|
enum_ty_substs, i)
|
|
|
|
};
|
2012-08-01 19:30:05 -05:00
|
|
|
return {vals: args, bcx: bcx};
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
|
2012-07-31 18:38:41 -05:00
|
|
|
fn collect_record_fields(m: match_, col: uint) -> ~[ast::ident] {
|
2012-06-29 18:26:56 -05:00
|
|
|
let mut fields: ~[ast::ident] = ~[];
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(m) |br| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match br.pats[col].node {
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_rec(fs, _) => {
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(fs) |f| {
|
2012-07-18 18:18:02 -05:00
|
|
|
if !vec::any(fields, |x| f.ident == x) {
|
2012-06-26 02:39:18 -05:00
|
|
|
vec::push(fields, f.ident);
|
2011-07-13 04:11:43 -05:00
|
|
|
}
|
|
|
|
}
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => ()
|
2011-07-13 04:11:43 -05:00
|
|
|
}
|
|
|
|
}
|
2012-08-01 19:30:05 -05:00
|
|
|
return fields;
|
2011-07-13 04:11:43 -05:00
|
|
|
}
|
|
|
|
|
2012-08-06 19:01:14 -05:00
|
|
|
fn collect_struct_fields(m: match_, col: uint) -> ~[ast::ident] {
|
|
|
|
let mut fields: ~[ast::ident] = ~[];
|
|
|
|
for vec::each(m) |br| {
|
|
|
|
match br.pats[col].node {
|
|
|
|
ast::pat_struct(_, fs, _) => {
|
|
|
|
for vec::each(fs) |f| {
|
2012-07-18 18:18:02 -05:00
|
|
|
if !vec::any(fields, |x| f.ident == x) {
|
2012-08-06 19:01:14 -05:00
|
|
|
vec::push(fields, f.ident);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return fields;
|
|
|
|
}
|
|
|
|
|
2012-07-31 18:38:41 -05:00
|
|
|
fn root_pats_as_necessary(bcx: block, m: match_, col: uint, val: ValueRef) {
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(m) |br| {
|
2012-05-17 22:18:20 -05:00
|
|
|
let pat_id = br.pats[col].id;
|
|
|
|
|
2012-08-06 14:34:08 -05:00
|
|
|
match bcx.ccx().maps.root_map.find({id:pat_id, derefs:0u}) {
|
2012-08-03 21:59:04 -05:00
|
|
|
none => (),
|
|
|
|
some(scope_id) => {
|
2012-05-17 22:18:20 -05:00
|
|
|
// Note: the scope_id will always be the id of the alt. See the
|
|
|
|
// extended comment in rustc::middle::borrowck::preserve() for
|
|
|
|
// details (look for the case covering cat_discr).
|
|
|
|
|
|
|
|
let ty = node_id_type(bcx, pat_id);
|
|
|
|
let val = load_if_immediate(bcx, val, ty);
|
|
|
|
root_value(bcx, val, ty, scope_id);
|
2012-08-01 19:30:05 -05:00
|
|
|
return; // if we kept going, we'd only be rooting same value again
|
2012-05-17 22:18:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-31 18:38:41 -05:00
|
|
|
fn any_box_pat(m: match_, col: uint) -> bool {
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(m) |br| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match br.pats[col].node {
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_box(_) => return true,
|
|
|
|
_ => ()
|
|
|
|
}
|
2011-07-13 04:11:43 -05:00
|
|
|
}
|
2012-08-01 19:30:05 -05:00
|
|
|
return false;
|
2011-07-13 04:11:43 -05:00
|
|
|
}
|
|
|
|
|
2012-07-31 18:38:41 -05:00
|
|
|
fn any_uniq_pat(m: match_, col: uint) -> bool {
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(m) |br| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match br.pats[col].node {
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_uniq(_) => return true,
|
|
|
|
_ => ()
|
|
|
|
}
|
2011-09-23 13:15:17 -05:00
|
|
|
}
|
2012-08-01 19:30:05 -05:00
|
|
|
return false;
|
2011-09-23 13:15:17 -05:00
|
|
|
}
|
|
|
|
|
2012-07-31 18:38:41 -05:00
|
|
|
fn any_tup_pat(m: match_, col: uint) -> bool {
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(m) |br| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match br.pats[col].node {
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_tup(_) => return true,
|
|
|
|
_ => ()
|
|
|
|
}
|
2011-08-15 06:15:19 -05:00
|
|
|
}
|
2012-08-01 19:30:05 -05:00
|
|
|
return false;
|
2011-08-15 06:15:19 -05:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
type exit_node = {bound: bind_map, from: BasicBlockRef, to: BasicBlockRef};
|
2011-10-18 17:07:40 -05:00
|
|
|
type mk_fail = fn@() -> BasicBlockRef;
|
2011-08-02 05:57:27 -05:00
|
|
|
|
2012-07-31 18:38:41 -05:00
|
|
|
fn pick_col(m: match_) -> uint {
|
2011-12-08 04:56:16 -06:00
|
|
|
fn score(p: @ast::pat) -> uint {
|
2012-08-06 14:34:08 -05:00
|
|
|
match p.node {
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_lit(_) | ast::pat_enum(_, _) | ast::pat_range(_, _) => 1u,
|
|
|
|
ast::pat_ident(_, _, some(p)) => score(p),
|
|
|
|
_ => 0u
|
2011-12-08 04:56:16 -06:00
|
|
|
}
|
|
|
|
}
|
2012-03-12 17:52:30 -05:00
|
|
|
let scores = vec::to_mut(vec::from_elem(m[0].pats.len(), 0u));
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(m) |br| {
|
2012-03-15 08:47:03 -05:00
|
|
|
let mut i = 0u;
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(br.pats) |p| { scores[i] += score(p); i += 1u; }
|
2011-08-02 05:57:27 -05:00
|
|
|
}
|
2012-03-15 08:47:03 -05:00
|
|
|
let mut max_score = 0u;
|
|
|
|
let mut best_col = 0u;
|
|
|
|
let mut i = 0u;
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(scores) |score| {
|
2011-08-02 05:57:27 -05:00
|
|
|
// Irrefutable columns always go first, they'd only be duplicated in
|
|
|
|
// the branches.
|
2012-08-01 19:30:05 -05:00
|
|
|
if score == 0u { return i; }
|
2011-08-02 05:57:27 -05:00
|
|
|
// If no irrefutable ones are found, we pick the one with the biggest
|
|
|
|
// branching factor.
|
2011-08-19 17:16:48 -05:00
|
|
|
if score > max_score { max_score = score; best_col = i; }
|
2011-08-02 05:57:27 -05:00
|
|
|
i += 1u;
|
|
|
|
}
|
2012-08-01 19:30:05 -05:00
|
|
|
return best_col;
|
2011-08-02 05:57:27 -05:00
|
|
|
}
|
2011-07-11 09:47:24 -05:00
|
|
|
|
2012-07-31 18:38:41 -05:00
|
|
|
fn compile_submatch(bcx: block, m: match_, vals: ~[ValueRef],
|
2012-06-29 18:26:56 -05:00
|
|
|
chk: option<mk_fail>, &exits: ~[exit_node]) {
|
2012-07-27 15:13:03 -05:00
|
|
|
/*
|
|
|
|
For an empty match, a fall-through case must exist
|
|
|
|
*/
|
|
|
|
assert(m.len() > 0u || is_some(chk));
|
2012-08-14 18:45:43 -05:00
|
|
|
let _icx = bcx.insn_ctxt("alt::compile_submatch");
|
2012-03-15 08:47:03 -05:00
|
|
|
let mut bcx = bcx;
|
|
|
|
let tcx = bcx.tcx(), dm = tcx.def_map;
|
2012-08-01 19:30:05 -05:00
|
|
|
if m.len() == 0u { Br(bcx, option::get(chk)()); return; }
|
2012-02-14 02:10:47 -06:00
|
|
|
if m[0].pats.len() == 0u {
|
2011-08-22 07:38:48 -05:00
|
|
|
let data = m[0].data;
|
2012-08-06 14:34:08 -05:00
|
|
|
match data.guard {
|
2012-08-03 21:59:04 -05:00
|
|
|
some(e) => {
|
2012-02-17 06:17:40 -06:00
|
|
|
// Temporarily set bindings. They'll be rewritten to PHI nodes
|
|
|
|
// for the actual arm block.
|
2012-08-01 17:23:21 -05:00
|
|
|
//
|
|
|
|
// Also, in the case of by-value, do the copy now.
|
|
|
|
|
2012-06-30 18:19:07 -05:00
|
|
|
for data.id_map.each |key, val| {
|
2012-08-01 17:23:21 -05:00
|
|
|
let binding = assoc(key, m[0].bound).get();
|
|
|
|
let (llval, mode) = (binding.val, binding.mode);
|
|
|
|
let ty = binding.ty;
|
|
|
|
|
|
|
|
if mode == ast::bind_by_value {
|
|
|
|
let llty = type_of::type_of(bcx.fcx.ccx, ty);
|
|
|
|
let alloc = alloca(bcx, llty);
|
|
|
|
bcx = copy_val(bcx, INIT, alloc,
|
|
|
|
load_if_immediate(bcx, llval, ty), ty);
|
|
|
|
bcx.fcx.lllocals.insert(val, local_mem(alloc));
|
|
|
|
add_clean(bcx, alloc, ty);
|
2012-08-22 18:00:28 -05:00
|
|
|
} else if mode == ast::bind_by_move {
|
|
|
|
fail ~"can't translate bind_by_move into a pattern guard";
|
2012-08-01 17:23:21 -05:00
|
|
|
} else {
|
|
|
|
bcx.fcx.lllocals.insert(val, local_mem(llval));
|
|
|
|
}
|
2012-02-17 06:17:40 -06:00
|
|
|
};
|
2012-05-14 16:24:16 -05:00
|
|
|
let {bcx: guard_cx, val} = {
|
2012-07-14 00:57:48 -05:00
|
|
|
do with_scope_result(bcx, e.info(), ~"guard") |bcx| {
|
2012-05-14 16:24:16 -05:00
|
|
|
trans_temp_expr(bcx, e)
|
|
|
|
}
|
2012-02-17 06:17:40 -06:00
|
|
|
};
|
2012-06-30 18:19:07 -05:00
|
|
|
bcx = do with_cond(guard_cx, Not(guard_cx, val)) |bcx| {
|
2012-03-13 07:42:29 -05:00
|
|
|
compile_submatch(bcx, vec::tail(m), vals, chk, exits);
|
2012-02-17 06:17:40 -06:00
|
|
|
bcx
|
2011-10-21 05:21:27 -05:00
|
|
|
};
|
2011-08-22 07:38:48 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => ()
|
2011-08-22 07:38:48 -05:00
|
|
|
}
|
2011-09-21 05:40:27 -05:00
|
|
|
if !bcx.unreachable {
|
2012-06-26 02:39:18 -05:00
|
|
|
vec::push(exits, {bound: m[0].bound, from: bcx.llbb,
|
|
|
|
to: data.bodycx.llbb});
|
2011-09-21 05:40:27 -05:00
|
|
|
}
|
2012-05-17 22:18:20 -05:00
|
|
|
Br(bcx, data.bodycx.llbb);
|
2012-08-01 19:30:05 -05:00
|
|
|
return;
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
|
2011-08-02 05:57:27 -05:00
|
|
|
let col = pick_col(m);
|
2011-08-19 17:16:48 -05:00
|
|
|
let val = vals[col];
|
2012-01-29 20:33:08 -06:00
|
|
|
let m = if has_nested_bindings(m, col) {
|
2012-08-01 17:23:21 -05:00
|
|
|
expand_nested_bindings(bcx, m, col, val)
|
2012-03-13 07:42:29 -05:00
|
|
|
} else { m };
|
2011-12-08 04:56:16 -06:00
|
|
|
|
2012-06-28 15:52:13 -05:00
|
|
|
let vals_left = vec::append(vec::slice(vals, 0u, col),
|
2012-07-26 16:00:31 -05:00
|
|
|
vec::view(vals, col + 1u, vals.len()));
|
2012-02-03 02:53:37 -06:00
|
|
|
let ccx = bcx.fcx.ccx;
|
2012-03-15 08:47:03 -05:00
|
|
|
let mut pat_id = 0;
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(m) |br| {
|
2011-07-11 09:47:24 -05:00
|
|
|
// Find a real id (we're adding placeholder wildcard patterns, but
|
|
|
|
// each column is guaranteed to have at least one real pattern)
|
2011-08-19 17:16:48 -05:00
|
|
|
if pat_id == 0 { pat_id = br.pats[col].id; }
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
2011-07-13 04:11:43 -05:00
|
|
|
|
2012-05-17 22:18:20 -05:00
|
|
|
root_pats_as_necessary(bcx, m, col, val);
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let rec_fields = collect_record_fields(m, col);
|
2011-07-11 09:47:24 -05:00
|
|
|
// Separate path for extracting and binding record fields
|
2012-08-06 19:01:14 -05:00
|
|
|
if rec_fields.len() > 0 {
|
2012-03-12 03:26:54 -05:00
|
|
|
let fields = ty::get_fields(node_id_type(bcx, pat_id));
|
2012-06-29 18:26:56 -05:00
|
|
|
let mut rec_vals = ~[];
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(rec_fields) |field_name| {
|
2011-12-18 12:30:40 -06:00
|
|
|
let ix = option::get(ty::field_idx(field_name, fields));
|
2012-06-29 18:26:56 -05:00
|
|
|
vec::push(rec_vals, GEPi(bcx, val, ~[0u, ix]));
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
2012-08-06 19:01:14 -05:00
|
|
|
compile_submatch(bcx,
|
|
|
|
enter_rec_or_struct(bcx, dm, m, col, rec_fields,
|
|
|
|
val),
|
|
|
|
vec::append(rec_vals, vals_left),
|
|
|
|
chk,
|
|
|
|
exits);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Separate path for extracting and binding struct fields.
|
|
|
|
let struct_fields = collect_struct_fields(m, col);
|
|
|
|
if struct_fields.len() > 0 {
|
|
|
|
let class_id, class_fields;
|
|
|
|
match ty::get(node_id_type(bcx, pat_id)).struct {
|
|
|
|
ty::ty_class(cid, _) => {
|
|
|
|
class_id = cid;
|
|
|
|
class_fields = ty::lookup_class_fields(ccx.tcx, class_id);
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
ccx.tcx.sess.bug(~"struct pattern didn't resolve to a \
|
|
|
|
struct");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Index the class fields.
|
2012-07-18 18:18:02 -05:00
|
|
|
let field_map = std::map::uint_hash();
|
2012-08-06 19:01:14 -05:00
|
|
|
for class_fields.eachi |i, class_field| {
|
|
|
|
field_map.insert(class_field.ident, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fetch each field.
|
|
|
|
let mut struct_vals = ~[];
|
|
|
|
for struct_fields.each |field_name| {
|
|
|
|
let index = field_map.get(field_name);
|
|
|
|
let fldptr = base::get_struct_field(bcx, val, class_id, index);
|
|
|
|
vec::push(struct_vals, fldptr);
|
|
|
|
}
|
|
|
|
compile_submatch(bcx,
|
|
|
|
enter_rec_or_struct(bcx, dm, m, col, struct_fields,
|
|
|
|
val),
|
|
|
|
vec::append(struct_vals, vals_left),
|
|
|
|
chk,
|
|
|
|
exits);
|
2012-08-01 19:30:05 -05:00
|
|
|
return;
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
|
2011-08-15 06:15:19 -05:00
|
|
|
if any_tup_pat(m, col) {
|
2012-02-09 07:33:00 -06:00
|
|
|
let tup_ty = node_id_type(bcx, pat_id);
|
2012-08-06 14:34:08 -05:00
|
|
|
let n_tup_elts = match ty::get(tup_ty).struct {
|
2012-08-03 21:59:04 -05:00
|
|
|
ty::ty_tup(elts) => elts.len(),
|
|
|
|
_ => ccx.sess.bug(~"non-tuple type in tuple pattern")
|
2012-02-03 08:15:28 -06:00
|
|
|
};
|
2012-06-29 18:26:56 -05:00
|
|
|
let mut tup_vals = ~[], i = 0u;
|
2011-08-15 06:15:19 -05:00
|
|
|
while i < n_tup_elts {
|
2012-06-29 18:26:56 -05:00
|
|
|
vec::push(tup_vals, GEPi(bcx, val, ~[0u, i]));
|
2011-08-15 06:15:19 -05:00
|
|
|
i += 1u;
|
|
|
|
}
|
2012-08-01 17:23:21 -05:00
|
|
|
compile_submatch(bcx, enter_tup(bcx, dm, m, col, val, n_tup_elts),
|
2012-06-28 15:52:13 -05:00
|
|
|
vec::append(tup_vals, vals_left), chk, exits);
|
2012-08-01 19:30:05 -05:00
|
|
|
return;
|
2011-08-15 06:15:19 -05:00
|
|
|
}
|
|
|
|
|
2011-07-13 04:11:43 -05:00
|
|
|
// Unbox in case of a box field
|
2011-07-27 07:19:39 -05:00
|
|
|
if any_box_pat(m, col) {
|
2012-06-27 16:10:24 -05:00
|
|
|
let llbox = Load(bcx, val);
|
|
|
|
let box_no_addrspace = non_gc_box_cast(bcx, llbox);
|
2012-06-25 22:00:46 -05:00
|
|
|
let unboxed =
|
2012-06-29 18:26:56 -05:00
|
|
|
GEPi(bcx, box_no_addrspace, ~[0u, abi::box_field_body]);
|
2012-08-01 17:23:21 -05:00
|
|
|
compile_submatch(bcx, enter_box(bcx, dm, m, col, val),
|
2012-06-29 18:26:56 -05:00
|
|
|
vec::append(~[unboxed], vals_left), chk, exits);
|
2012-08-01 19:30:05 -05:00
|
|
|
return;
|
2011-07-13 04:11:43 -05:00
|
|
|
}
|
|
|
|
|
2011-09-23 13:15:17 -05:00
|
|
|
if any_uniq_pat(m, col) {
|
2012-06-27 16:10:24 -05:00
|
|
|
let llbox = Load(bcx, val);
|
|
|
|
let box_no_addrspace = non_gc_box_cast(bcx, llbox);
|
2012-06-25 22:00:46 -05:00
|
|
|
let unboxed =
|
2012-06-29 18:26:56 -05:00
|
|
|
GEPi(bcx, box_no_addrspace, ~[0u, abi::box_field_body]);
|
2012-08-01 17:23:21 -05:00
|
|
|
compile_submatch(bcx, enter_uniq(bcx, dm, m, col, val),
|
2012-06-29 18:26:56 -05:00
|
|
|
vec::append(~[unboxed], vals_left), chk, exits);
|
2012-08-01 19:30:05 -05:00
|
|
|
return;
|
2011-09-23 13:15:17 -05:00
|
|
|
}
|
|
|
|
|
2011-07-11 09:47:24 -05:00
|
|
|
// Decide what kind of branch we need
|
2011-07-27 07:19:39 -05:00
|
|
|
let opts = get_options(ccx, m, col);
|
2012-01-19 19:56:05 -06:00
|
|
|
enum branch_kind { no_branch, single, switch, compare, }
|
2012-03-15 08:47:03 -05:00
|
|
|
let mut kind = no_branch;
|
|
|
|
let mut test_val = val;
|
2012-02-14 02:10:47 -06:00
|
|
|
if opts.len() > 0u {
|
2012-08-06 14:34:08 -05:00
|
|
|
match opts[0] {
|
2012-08-03 21:59:04 -05:00
|
|
|
var(_, vdef) => {
|
2012-02-22 09:57:23 -06:00
|
|
|
if (*ty::enum_variants(tcx, vdef.enm)).len() == 1u {
|
2011-07-27 07:19:39 -05:00
|
|
|
kind = single;
|
|
|
|
} else {
|
2012-01-25 07:34:31 -06:00
|
|
|
let enumptr =
|
2012-01-27 06:17:06 -06:00
|
|
|
PointerCast(bcx, val, T_opaque_enum_ptr(ccx));
|
2012-06-29 18:26:56 -05:00
|
|
|
let discrimptr = GEPi(bcx, enumptr, ~[0u, 0u]);
|
2011-08-30 02:59:30 -05:00
|
|
|
test_val = Load(bcx, discrimptr);
|
2011-07-27 07:19:39 -05:00
|
|
|
kind = switch;
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
lit(l) => {
|
2011-12-02 06:42:51 -06:00
|
|
|
test_val = Load(bcx, val);
|
2012-02-09 07:33:00 -06:00
|
|
|
let pty = node_id_type(bcx, pat_id);
|
2012-02-03 08:15:28 -06:00
|
|
|
kind = if ty::type_is_integral(pty) { switch }
|
|
|
|
else { compare };
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
range(_, _) => {
|
2011-09-28 14:07:33 -05:00
|
|
|
test_val = Load(bcx, val);
|
|
|
|
kind = compare;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(opts) |o| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match o {
|
2012-08-03 21:59:04 -05:00
|
|
|
range(_, _) => { kind = compare; break }
|
|
|
|
_ => ()
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
}
|
2012-08-06 14:34:08 -05:00
|
|
|
let else_cx = match kind {
|
2012-08-03 21:59:04 -05:00
|
|
|
no_branch | single => bcx,
|
|
|
|
_ => sub_block(bcx, ~"match_else")
|
2012-02-21 07:25:53 -06:00
|
|
|
};
|
|
|
|
let sw = if kind == switch {
|
|
|
|
Switch(bcx, test_val, else_cx.llbb, opts.len())
|
|
|
|
} else { C_int(ccx, 0) }; // Placeholder for when not using a switch
|
2011-07-27 07:19:39 -05:00
|
|
|
|
2012-08-01 17:23:21 -05:00
|
|
|
let defaults = enter_default(bcx, dm, m, col, val);
|
2012-03-13 07:42:29 -05:00
|
|
|
let exhaustive = option::is_none(chk) && defaults.len() == 0u;
|
2012-03-15 08:47:03 -05:00
|
|
|
let len = opts.len();
|
|
|
|
let mut i = 0u;
|
2012-03-13 07:42:29 -05:00
|
|
|
// Compile subtrees for each option
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(opts) |opt| {
|
2012-03-13 07:42:29 -05:00
|
|
|
i += 1u;
|
2012-03-15 08:47:03 -05:00
|
|
|
let mut opt_cx = else_cx;
|
2012-03-13 07:42:29 -05:00
|
|
|
if !exhaustive || i < len {
|
2012-07-14 00:57:48 -05:00
|
|
|
opt_cx = sub_block(bcx, ~"match_case");
|
2012-08-06 14:34:08 -05:00
|
|
|
match kind {
|
2012-08-03 21:59:04 -05:00
|
|
|
single => Br(bcx, opt_cx.llbb),
|
|
|
|
switch => {
|
2012-08-06 14:34:08 -05:00
|
|
|
match check trans_opt(bcx, opt) {
|
2012-08-03 21:59:04 -05:00
|
|
|
single_result(r) => {
|
2012-03-13 07:42:29 -05:00
|
|
|
llvm::LLVMAddCase(sw, r.val, opt_cx.llbb);
|
|
|
|
bcx = r.bcx;
|
2012-02-17 06:17:40 -06:00
|
|
|
}
|
|
|
|
}
|
2012-03-13 07:42:29 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
compare => {
|
2012-03-13 07:42:29 -05:00
|
|
|
let t = node_id_type(bcx, pat_id);
|
2012-05-14 16:24:16 -05:00
|
|
|
let {bcx: after_cx, val: matches} = {
|
2012-07-14 00:57:48 -05:00
|
|
|
do with_scope_result(bcx, none, ~"compare_scope") |bcx| {
|
2012-08-06 14:34:08 -05:00
|
|
|
match trans_opt(bcx, opt) {
|
2012-08-03 21:59:04 -05:00
|
|
|
single_result({bcx, val}) => {
|
2012-05-14 16:24:16 -05:00
|
|
|
trans_compare(bcx, ast::eq, test_val, t, val, t)
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
range_result(
|
|
|
|
{val: vbegin, _}, {bcx, val: vend}) => {
|
2012-06-27 16:10:24 -05:00
|
|
|
let {bcx, val: llge} = trans_compare(
|
2012-05-14 16:24:16 -05:00
|
|
|
bcx, ast::ge, test_val, t, vbegin, t);
|
2012-06-27 16:10:24 -05:00
|
|
|
let {bcx, val: llle} = trans_compare(
|
2012-05-14 16:24:16 -05:00
|
|
|
bcx, ast::le, test_val, t, vend, t);
|
2012-06-27 16:10:24 -05:00
|
|
|
{bcx: bcx, val: And(bcx, llge, llle)}
|
2012-05-14 16:24:16 -05:00
|
|
|
}
|
|
|
|
}
|
2012-03-13 07:42:29 -05:00
|
|
|
}
|
|
|
|
};
|
2012-07-14 00:57:48 -05:00
|
|
|
bcx = sub_block(after_cx, ~"compare_next");
|
2012-03-13 07:42:29 -05:00
|
|
|
CondBr(after_cx, matches, opt_cx.llbb, bcx.llbb);
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
_ => ()
|
2012-03-13 07:42:29 -05:00
|
|
|
}
|
|
|
|
} else if kind == compare { Br(bcx, else_cx.llbb); }
|
2012-03-15 08:47:03 -05:00
|
|
|
let mut size = 0u;
|
2012-06-29 18:26:56 -05:00
|
|
|
let mut unpacked = ~[];
|
2012-08-06 14:34:08 -05:00
|
|
|
match opt {
|
2012-08-03 21:59:04 -05:00
|
|
|
var(_, vdef) => {
|
2011-07-27 07:19:39 -05:00
|
|
|
let args = extract_variant_args(opt_cx, pat_id, vdef, val);
|
2012-02-14 02:10:47 -06:00
|
|
|
size = args.vals.len();
|
2011-07-27 07:19:39 -05:00
|
|
|
unpacked = args.vals;
|
|
|
|
opt_cx = args.bcx;
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
lit(_) | range(_, _) => ()
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
2012-08-01 17:23:21 -05:00
|
|
|
compile_submatch(opt_cx, enter_opt(bcx, m, opt, col, size, val),
|
2012-06-28 15:52:13 -05:00
|
|
|
vec::append(unpacked, vals_left), chk, exits);
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
|
2012-03-13 07:42:29 -05:00
|
|
|
// Compile the fall-through case, if any
|
|
|
|
if !exhaustive {
|
|
|
|
if kind == compare { Br(bcx, else_cx.llbb); }
|
|
|
|
if kind != single {
|
|
|
|
compile_submatch(else_cx, defaults, vals_left, chk, exits);
|
|
|
|
}
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-06 09:20:23 -05:00
|
|
|
struct phi_binding {
|
|
|
|
pat_id: ast::node_id;
|
|
|
|
phi_val: ValueRef;
|
|
|
|
mode: ast::binding_mode;
|
|
|
|
ty: ty::t;
|
|
|
|
}
|
|
|
|
|
|
|
|
type phi_bindings_list = ~[phi_binding];
|
|
|
|
|
2011-07-19 10:07:51 -05:00
|
|
|
// Returns false for unreachable blocks
|
2012-08-06 09:20:23 -05:00
|
|
|
fn make_phi_bindings(bcx: block,
|
|
|
|
map: ~[exit_node],
|
|
|
|
ids: pat_util::pat_id_map)
|
|
|
|
-> option<phi_bindings_list> {
|
2012-08-14 18:45:43 -05:00
|
|
|
let _icx = bcx.insn_ctxt("alt::make_phi_bindings");
|
2011-07-27 07:19:39 -05:00
|
|
|
let our_block = bcx.llbb as uint;
|
2012-08-06 09:20:23 -05:00
|
|
|
let mut phi_bindings = ~[];
|
2012-06-30 18:19:07 -05:00
|
|
|
for ids.each |name, node_id| {
|
2012-06-29 18:26:56 -05:00
|
|
|
let mut llbbs = ~[];
|
|
|
|
let mut vals = ~[];
|
2012-08-06 09:20:23 -05:00
|
|
|
let mut binding = none;
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(map) |ex| {
|
2011-07-27 07:19:39 -05:00
|
|
|
if ex.to as uint == our_block {
|
2012-08-06 14:34:08 -05:00
|
|
|
match assoc(name, ex.bound) {
|
2012-08-06 09:20:23 -05:00
|
|
|
some(b) => {
|
2012-06-26 02:39:18 -05:00
|
|
|
vec::push(llbbs, ex.from);
|
2012-08-06 09:20:23 -05:00
|
|
|
vec::push(vals, b.val);
|
|
|
|
binding = some(b);
|
2012-06-26 02:39:18 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
none => ()
|
2011-07-19 10:07:51 -05:00
|
|
|
}
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
}
|
2012-08-06 09:20:23 -05:00
|
|
|
|
|
|
|
let binding = match binding {
|
|
|
|
some(binding) => binding,
|
|
|
|
none => {
|
|
|
|
Unreachable(bcx);
|
|
|
|
return none;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let phi_val = Phi(bcx, val_ty(vals[0]), vals, llbbs);
|
|
|
|
vec::push(phi_bindings, phi_binding {
|
|
|
|
pat_id: node_id,
|
|
|
|
phi_val: phi_val,
|
|
|
|
mode: binding.mode,
|
|
|
|
ty: binding.ty
|
|
|
|
});
|
2011-09-13 05:14:30 -05:00
|
|
|
}
|
2012-08-06 09:20:23 -05:00
|
|
|
return some(move phi_bindings);
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
|
2012-08-01 17:23:21 -05:00
|
|
|
// Copies by-value bindings into their homes.
|
2012-08-06 09:20:23 -05:00
|
|
|
fn make_pattern_bindings(bcx: block, phi_bindings: phi_bindings_list)
|
|
|
|
-> block {
|
2012-08-01 17:23:21 -05:00
|
|
|
let mut bcx = bcx;
|
|
|
|
|
2012-08-06 09:20:23 -05:00
|
|
|
for phi_bindings.each |binding| {
|
|
|
|
let phi_val = binding.phi_val;
|
2012-08-01 17:23:21 -05:00
|
|
|
match binding.mode {
|
2012-08-06 09:20:23 -05:00
|
|
|
ast::bind_by_implicit_ref => {
|
|
|
|
// use local: phi is a ptr to the value
|
|
|
|
bcx.fcx.lllocals.insert(binding.pat_id,
|
|
|
|
local_mem(phi_val));
|
|
|
|
}
|
|
|
|
ast::bind_by_ref(_) => {
|
|
|
|
// use local_imm: ptr is the value
|
|
|
|
bcx.fcx.lllocals.insert(binding.pat_id,
|
|
|
|
local_imm(phi_val));
|
|
|
|
}
|
2012-08-22 19:35:05 -05:00
|
|
|
ast::bind_by_value | ast::bind_by_move => {
|
2012-08-06 09:20:23 -05:00
|
|
|
// by value: make a new temporary and copy the value out
|
2012-08-01 17:23:21 -05:00
|
|
|
let lltype = type_of::type_of(bcx.fcx.ccx, binding.ty);
|
|
|
|
let allocation = alloca(bcx, lltype);
|
|
|
|
let ty = binding.ty;
|
2012-08-22 19:35:05 -05:00
|
|
|
bcx = if binding.mode == ast::bind_by_value {
|
|
|
|
copy_val(bcx, INIT, allocation,
|
|
|
|
load_if_immediate(bcx, phi_val, ty), ty)
|
|
|
|
} else {
|
|
|
|
move_val(bcx, INIT, allocation,
|
|
|
|
{bcx: bcx, val: phi_val, kind: lv_owned}, ty)
|
|
|
|
};
|
2012-08-06 09:20:23 -05:00
|
|
|
bcx.fcx.lllocals.insert(binding.pat_id,
|
|
|
|
local_mem(allocation));
|
2012-08-01 17:23:21 -05:00
|
|
|
add_clean(bcx, allocation, ty);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return bcx;
|
|
|
|
}
|
|
|
|
|
2012-05-14 16:24:16 -05:00
|
|
|
fn trans_alt(bcx: block,
|
|
|
|
alt_expr: @ast::expr,
|
|
|
|
expr: @ast::expr,
|
2012-06-29 18:26:56 -05:00
|
|
|
arms: ~[ast::arm],
|
2012-05-14 16:24:16 -05:00
|
|
|
mode: ast::alt_mode,
|
|
|
|
dest: dest) -> block {
|
2012-08-14 18:45:43 -05:00
|
|
|
let _icx = bcx.insn_ctxt("alt::trans_alt");
|
2012-07-14 00:57:48 -05:00
|
|
|
do with_scope(bcx, alt_expr.info(), ~"alt") |bcx| {
|
2012-03-13 07:42:29 -05:00
|
|
|
trans_alt_inner(bcx, expr, arms, mode, dest)
|
|
|
|
}
|
2012-02-17 06:17:40 -06:00
|
|
|
}
|
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
fn trans_alt_inner(scope_cx: block, expr: @ast::expr, arms: ~[ast::arm],
|
2012-03-13 07:42:29 -05:00
|
|
|
mode: ast::alt_mode, dest: dest) -> block {
|
2012-08-14 18:45:43 -05:00
|
|
|
let _icx = scope_cx.insn_ctxt("alt::trans_alt_inner");
|
2012-02-21 07:20:18 -06:00
|
|
|
let bcx = scope_cx, tcx = bcx.tcx();
|
2012-07-31 18:38:41 -05:00
|
|
|
let mut bodies = ~[], matches = ~[];
|
2012-02-17 06:17:40 -06:00
|
|
|
|
|
|
|
let {bcx, val, _} = trans_temp_expr(bcx, expr);
|
2012-08-01 19:30:05 -05:00
|
|
|
if bcx.unreachable { return bcx; }
|
2012-02-17 06:17:40 -06:00
|
|
|
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(arms) |a| {
|
2012-07-14 00:57:48 -05:00
|
|
|
let body = scope_block(bcx, a.body.info(), ~"case_body");
|
2012-02-22 09:57:23 -06:00
|
|
|
let id_map = pat_util::pat_id_map(tcx.def_map, a.pats[0]);
|
2012-06-26 02:39:18 -05:00
|
|
|
vec::push(bodies, body);
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(a.pats) |p| {
|
2012-07-31 18:38:41 -05:00
|
|
|
vec::push(matches, @{pats: ~[p],
|
2012-06-29 18:26:56 -05:00
|
|
|
bound: ~[],
|
2012-05-17 22:18:20 -05:00
|
|
|
data: @{bodycx: body, guard: a.guard,
|
2012-06-26 02:39:18 -05:00
|
|
|
id_map: id_map}});
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-27 15:13:03 -05:00
|
|
|
fn mk_fail(bcx: block, sp: span, msg: ~str,
|
2012-03-26 20:35:18 -05:00
|
|
|
done: @mut option<BasicBlockRef>) -> BasicBlockRef {
|
2012-08-06 14:34:08 -05:00
|
|
|
match *done { some(bb) => return bb, _ => () }
|
2012-07-14 00:57:48 -05:00
|
|
|
let fail_cx = sub_block(bcx, ~"case_fallthrough");
|
2012-07-27 15:13:03 -05:00
|
|
|
trans_fail(fail_cx, some(sp), msg);
|
2012-03-13 07:42:29 -05:00
|
|
|
*done = some(fail_cx.llbb);
|
2012-08-01 19:30:05 -05:00
|
|
|
return fail_cx.llbb;
|
2012-07-27 15:13:03 -05:00
|
|
|
}
|
|
|
|
let t = node_id_type(bcx, expr.id);
|
2012-08-06 14:34:08 -05:00
|
|
|
let mk_fail = match mode {
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::alt_check => {
|
2012-07-27 15:13:03 -05:00
|
|
|
let fail_cx = @mut none;
|
|
|
|
// Cached fail-on-fallthrough block
|
|
|
|
some(|| mk_fail(scope_cx, expr.span, ~"non-exhaustive match failure",
|
|
|
|
fail_cx))
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::alt_exhaustive => {
|
2012-07-27 15:13:03 -05:00
|
|
|
let fail_cx = @mut none;
|
|
|
|
// special case for uninhabited type
|
|
|
|
if ty::type_is_empty(tcx, t) {
|
|
|
|
some(|| mk_fail(scope_cx, expr.span,
|
|
|
|
~"scrutinizing value that can't exist", fail_cx))
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
none
|
|
|
|
}
|
2012-03-13 07:42:29 -05:00
|
|
|
}
|
|
|
|
};
|
2012-06-29 18:26:56 -05:00
|
|
|
let mut exit_map = ~[];
|
2012-03-23 08:45:47 -05:00
|
|
|
let spilled = spill_if_immediate(bcx, val, t);
|
2012-07-31 18:38:41 -05:00
|
|
|
compile_submatch(bcx, matches, ~[spilled], mk_fail, exit_map);
|
2011-07-11 09:47:24 -05:00
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
let mut arm_cxs = ~[], arm_dests = ~[], i = 0u;
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(arms) |a| {
|
2011-08-19 17:16:48 -05:00
|
|
|
let body_cx = bodies[i];
|
2012-02-22 09:57:23 -06:00
|
|
|
let id_map = pat_util::pat_id_map(tcx.def_map, a.pats[0]);
|
2012-08-06 09:20:23 -05:00
|
|
|
match make_phi_bindings(body_cx, exit_map, id_map) {
|
|
|
|
none => {}
|
|
|
|
some(phi_bindings) => {
|
|
|
|
let body_cx = make_pattern_bindings(body_cx, phi_bindings);
|
|
|
|
let arm_dest = dup_for_join(dest);
|
|
|
|
vec::push(arm_dests, arm_dest);
|
|
|
|
let mut arm_cx = trans_block(body_cx, a.body, arm_dest);
|
|
|
|
arm_cx = trans_block_cleanups(arm_cx, body_cx);
|
|
|
|
vec::push(arm_cxs, arm_cx);
|
|
|
|
}
|
2011-07-19 10:07:51 -05:00
|
|
|
}
|
2011-07-11 09:47:24 -05:00
|
|
|
i += 1u;
|
|
|
|
}
|
2012-02-17 06:17:40 -06:00
|
|
|
join_returns(scope_cx, arm_cxs, arm_dests, dest)
|
2011-07-11 09:47:24 -05:00
|
|
|
}
|
|
|
|
|
2011-07-28 05:01:45 -05:00
|
|
|
// Not alt-related, but similar to the pattern-munging code above
|
2012-02-17 06:17:40 -06:00
|
|
|
fn bind_irrefutable_pat(bcx: block, pat: @ast::pat, val: ValueRef,
|
|
|
|
make_copy: bool) -> block {
|
2012-08-14 18:45:43 -05:00
|
|
|
let _icx = bcx.insn_ctxt("alt::bind_irrefutable_pat");
|
2012-03-15 08:47:03 -05:00
|
|
|
let ccx = bcx.fcx.ccx;
|
|
|
|
let mut bcx = bcx;
|
2012-01-14 18:05:07 -06:00
|
|
|
|
|
|
|
// Necessary since bind_irrefutable_pat is called outside trans_alt
|
2012-08-06 14:34:08 -05:00
|
|
|
match pat.node {
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_ident(_, _,inner) => {
|
2012-08-01 19:30:05 -05:00
|
|
|
if pat_is_variant(bcx.tcx().def_map, pat) { return bcx; }
|
2012-06-08 09:46:14 -05:00
|
|
|
if make_copy {
|
2012-02-02 05:37:17 -06:00
|
|
|
let ty = node_id_type(bcx, pat.id);
|
2012-02-21 08:22:55 -06:00
|
|
|
let llty = type_of::type_of(ccx, ty);
|
2012-02-17 06:17:40 -06:00
|
|
|
let alloc = alloca(bcx, llty);
|
|
|
|
bcx = copy_val(bcx, INIT, alloc,
|
|
|
|
load_if_immediate(bcx, val, ty), ty);
|
2011-10-07 04:20:51 -05:00
|
|
|
bcx.fcx.lllocals.insert(pat.id, local_mem(alloc));
|
2012-01-27 06:17:06 -06:00
|
|
|
add_clean(bcx, alloc, ty);
|
2011-10-07 04:20:51 -05:00
|
|
|
} else { bcx.fcx.lllocals.insert(pat.id, local_mem(val)); }
|
2012-08-06 14:34:08 -05:00
|
|
|
match inner {
|
2012-08-03 21:59:04 -05:00
|
|
|
some(pat) => { bcx = bind_irrefutable_pat(bcx, pat, val, true); }
|
|
|
|
_ => ()
|
2011-12-08 04:56:16 -06:00
|
|
|
}
|
2011-07-28 05:01:45 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_enum(_, sub) => {
|
2011-08-21 23:44:41 -05:00
|
|
|
let vdefs = ast_util::variant_def_ids(ccx.tcx.def_map.get(pat.id));
|
2011-07-28 05:01:45 -05:00
|
|
|
let args = extract_variant_args(bcx, pat.id, vdefs, val);
|
2012-03-15 08:47:03 -05:00
|
|
|
let mut i = 0;
|
2012-06-30 18:19:07 -05:00
|
|
|
do option::iter(sub) |sub| { for vec::each(args.vals) |argval| {
|
2011-10-07 04:20:51 -05:00
|
|
|
bcx = bind_irrefutable_pat(bcx, sub[i], argval, make_copy);
|
2011-07-28 05:01:45 -05:00
|
|
|
i += 1;
|
2012-04-20 02:54:42 -05:00
|
|
|
}}
|
2011-07-28 05:01:45 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_rec(fields, _) => {
|
2012-03-12 03:26:54 -05:00
|
|
|
let rec_fields = ty::get_fields(node_id_type(bcx, pat.id));
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(fields) |f| {
|
2011-12-18 12:30:40 -06:00
|
|
|
let ix = option::get(ty::field_idx(f.ident, rec_fields));
|
2012-06-29 18:26:56 -05:00
|
|
|
let fldptr = GEPi(bcx, val, ~[0u, ix]);
|
2012-03-12 03:26:54 -05:00
|
|
|
bcx = bind_irrefutable_pat(bcx, f.pat, fldptr, make_copy);
|
2011-07-28 05:01:45 -05:00
|
|
|
}
|
|
|
|
}
|
2012-08-06 19:01:14 -05:00
|
|
|
ast::pat_struct(_, fields, _) => {
|
|
|
|
// Grab the class data that we care about.
|
|
|
|
let class_fields, class_id;
|
|
|
|
match ty::get(node_id_type(bcx, pat.id)).struct {
|
|
|
|
ty::ty_class(cid, substs) => {
|
|
|
|
class_id = cid;
|
|
|
|
class_fields = ty::lookup_class_fields(ccx.tcx, class_id);
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
ccx.tcx.sess.span_bug(pat.span, ~"struct pattern didn't \
|
|
|
|
resolve to a struct");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Index the class fields.
|
2012-07-18 18:18:02 -05:00
|
|
|
let field_map = std::map::uint_hash();
|
2012-08-06 19:01:14 -05:00
|
|
|
for class_fields.eachi |i, class_field| {
|
|
|
|
field_map.insert(class_field.ident, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fetch each field.
|
|
|
|
for fields.each |supplied_field| {
|
|
|
|
let index = field_map.get(supplied_field.ident);
|
|
|
|
let fldptr = base::get_struct_field(bcx, val, class_id, index);
|
|
|
|
bcx = bind_irrefutable_pat(bcx, supplied_field.pat, fldptr,
|
|
|
|
make_copy);
|
|
|
|
}
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_tup(elems) => {
|
2012-03-15 08:47:03 -05:00
|
|
|
let mut i = 0u;
|
2012-06-30 18:19:07 -05:00
|
|
|
for vec::each(elems) |elem| {
|
2012-06-29 18:26:56 -05:00
|
|
|
let fldptr = GEPi(bcx, val, ~[0u, i]);
|
2012-03-12 03:26:54 -05:00
|
|
|
bcx = bind_irrefutable_pat(bcx, elem, fldptr, make_copy);
|
2011-08-15 06:15:19 -05:00
|
|
|
i += 1u;
|
|
|
|
}
|
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_box(inner) => {
|
2012-06-27 16:10:24 -05:00
|
|
|
let llbox = Load(bcx, val);
|
2011-09-02 17:34:58 -05:00
|
|
|
let unboxed =
|
2012-06-29 18:26:56 -05:00
|
|
|
GEPi(bcx, llbox, ~[0u, abi::box_field_body]);
|
2011-10-07 04:20:51 -05:00
|
|
|
bcx = bind_irrefutable_pat(bcx, inner, unboxed, true);
|
2011-07-28 05:01:45 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_uniq(inner) => {
|
2012-06-27 16:10:24 -05:00
|
|
|
let llbox = Load(bcx, val);
|
2012-05-09 16:11:46 -05:00
|
|
|
let unboxed =
|
2012-06-29 18:26:56 -05:00
|
|
|
GEPi(bcx, llbox, ~[0u, abi::box_field_body]);
|
2012-05-09 16:11:46 -05:00
|
|
|
bcx = bind_irrefutable_pat(bcx, inner, unboxed, true);
|
2011-09-23 18:08:30 -05:00
|
|
|
}
|
2012-08-03 21:59:04 -05:00
|
|
|
ast::pat_wild | ast::pat_lit(_) | ast::pat_range(_, _) => ()
|
2011-07-28 05:01:45 -05:00
|
|
|
}
|
2012-08-01 19:30:05 -05:00
|
|
|
return bcx;
|
2011-07-28 05:01:45 -05:00
|
|
|
}
|
|
|
|
|
2011-07-11 09:47:24 -05:00
|
|
|
// Local Variables:
|
2011-09-28 14:07:33 -05:00
|
|
|
// mode: rust
|
2011-07-11 09:47:24 -05:00
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|