]> git.lizzy.rs Git - rust.git/blob - src/librustc/middle/trans/_match.rs
auto merge of #15725 : aochagavia/rust/vec, r=alexcrichton
[rust.git] / src / librustc / middle / trans / _match.rs
1 // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 /*!
12  *
13  * # Compilation of match statements
14  *
15  * I will endeavor to explain the code as best I can.  I have only a loose
16  * understanding of some parts of it.
17  *
18  * ## Matching
19  *
20  * The basic state of the code is maintained in an array `m` of `Match`
21  * objects.  Each `Match` describes some list of patterns, all of which must
22  * match against the current list of values.  If those patterns match, then
23  * the arm listed in the match is the correct arm.  A given arm may have
24  * multiple corresponding match entries, one for each alternative that
25  * remains.  As we proceed these sets of matches are adjusted by the various
26  * `enter_XXX()` functions, each of which adjusts the set of options given
27  * some information about the value which has been matched.
28  *
29  * So, initially, there is one value and N matches, each of which have one
30  * constituent pattern.  N here is usually the number of arms but may be
31  * greater, if some arms have multiple alternatives.  For example, here:
32  *
33  *     enum Foo { A, B(int), C(uint, uint) }
34  *     match foo {
35  *         A => ...,
36  *         B(x) => ...,
37  *         C(1u, 2) => ...,
38  *         C(_) => ...
39  *     }
40  *
41  * The value would be `foo`.  There would be four matches, each of which
42  * contains one pattern (and, in one case, a guard).  We could collect the
43  * various options and then compile the code for the case where `foo` is an
44  * `A`, a `B`, and a `C`.  When we generate the code for `C`, we would (1)
45  * drop the two matches that do not match a `C` and (2) expand the other two
46  * into two patterns each.  In the first case, the two patterns would be `1u`
47  * and `2`, and the in the second case the _ pattern would be expanded into
48  * `_` and `_`.  The two values are of course the arguments to `C`.
49  *
50  * Here is a quick guide to the various functions:
51  *
52  * - `compile_submatch()`: The main workhouse.  It takes a list of values and
53  *   a list of matches and finds the various possibilities that could occur.
54  *
55  * - `enter_XXX()`: modifies the list of matches based on some information
56  *   about the value that has been matched.  For example,
57  *   `enter_rec_or_struct()` adjusts the values given that a record or struct
58  *   has been matched.  This is an infallible pattern, so *all* of the matches
59  *   must be either wildcards or record/struct patterns.  `enter_opt()`
60  *   handles the fallible cases, and it is correspondingly more complex.
61  *
62  * ## Bindings
63  *
64  * We store information about the bound variables for each arm as part of the
65  * per-arm `ArmData` struct.  There is a mapping from identifiers to
66  * `BindingInfo` structs.  These structs contain the mode/id/type of the
67  * binding, but they also contain an LLVM value which points at an alloca
68  * called `llmatch`. For by value bindings that are Copy, we also create
69  * an extra alloca that we copy the matched value to so that any changes
70  * we do to our copy is not reflected in the original and vice-versa.
71  * We don't do this if it's a move since the original value can't be used
72  * and thus allowing us to cheat in not creating an extra alloca.
73  *
74  * The `llmatch` binding always stores a pointer into the value being matched
75  * which points at the data for the binding.  If the value being matched has
76  * type `T`, then, `llmatch` will point at an alloca of type `T*` (and hence
77  * `llmatch` has type `T**`).  So, if you have a pattern like:
78  *
79  *    let a: A = ...;
80  *    let b: B = ...;
81  *    match (a, b) { (ref c, d) => { ... } }
82  *
83  * For `c` and `d`, we would generate allocas of type `C*` and `D*`
84  * respectively.  These are called the `llmatch`.  As we match, when we come
85  * up against an identifier, we store the current pointer into the
86  * corresponding alloca.
87  *
88  * Once a pattern is completely matched, and assuming that there is no guard
89  * pattern, we will branch to a block that leads to the body itself.  For any
90  * by-value bindings, this block will first load the ptr from `llmatch` (the
91  * one of type `D*`) and then load a second time to get the actual value (the
92  * one of type `D`). For by ref bindings, the value of the local variable is
93  * simply the first alloca.
94  *
95  * So, for the example above, we would generate a setup kind of like this:
96  *
97  *        +-------+
98  *        | Entry |
99  *        +-------+
100  *            |
101  *        +--------------------------------------------+
102  *        | llmatch_c = (addr of first half of tuple)  |
103  *        | llmatch_d = (addr of second half of tuple) |
104  *        +--------------------------------------------+
105  *            |
106  *        +--------------------------------------+
107  *        | *llbinding_d = **llmatch_d           |
108  *        +--------------------------------------+
109  *
110  * If there is a guard, the situation is slightly different, because we must
111  * execute the guard code.  Moreover, we need to do so once for each of the
112  * alternatives that lead to the arm, because if the guard fails, they may
113  * have different points from which to continue the search. Therefore, in that
114  * case, we generate code that looks more like:
115  *
116  *        +-------+
117  *        | Entry |
118  *        +-------+
119  *            |
120  *        +-------------------------------------------+
121  *        | llmatch_c = (addr of first half of tuple) |
122  *        | llmatch_d = (addr of first half of tuple) |
123  *        +-------------------------------------------+
124  *            |
125  *        +-------------------------------------------------+
126  *        | *llbinding_d = **llmatch_d                      |
127  *        | check condition                                 |
128  *        | if false { goto next case }                     |
129  *        | if true { goto body }                           |
130  *        +-------------------------------------------------+
131  *
132  * The handling for the cleanups is a bit... sensitive.  Basically, the body
133  * is the one that invokes `add_clean()` for each binding.  During the guard
134  * evaluation, we add temporary cleanups and revoke them after the guard is
135  * evaluated (it could fail, after all). Note that guards and moves are
136  * just plain incompatible.
137  *
138  * Some relevant helper functions that manage bindings:
139  * - `create_bindings_map()`
140  * - `insert_lllocals()`
141  *
142  *
143  * ## Notes on vector pattern matching.
144  *
145  * Vector pattern matching is surprisingly tricky. The problem is that
146  * the structure of the vector isn't fully known, and slice matches
147  * can be done on subparts of it.
148  *
149  * The way that vector pattern matches are dealt with, then, is as
150  * follows. First, we make the actual condition associated with a
151  * vector pattern simply a vector length comparison. So the pattern
152  * [1, .. x] gets the condition "vec len >= 1", and the pattern
153  * [.. x] gets the condition "vec len >= 0". The problem here is that
154  * having the condition "vec len >= 1" hold clearly does not mean that
155  * only a pattern that has exactly that condition will match. This
156  * means that it may well be the case that a condition holds, but none
157  * of the patterns matching that condition match; to deal with this,
158  * when doing vector length matches, we have match failures proceed to
159  * the next condition to check.
160  *
161  * There are a couple more subtleties to deal with. While the "actual"
162  * condition associated with vector length tests is simply a test on
163  * the vector length, the actual vec_len Opt entry contains more
164  * information used to restrict which matches are associated with it.
165  * So that all matches in a submatch are matching against the same
166  * values from inside the vector, they are split up by how many
167  * elements they match at the front and at the back of the vector. In
168  * order to make sure that arms are properly checked in order, even
169  * with the overmatching conditions, each vec_len Opt entry is
170  * associated with a range of matches.
171  * Consider the following:
172  *
173  *   match &[1, 2, 3] {
174  *       [1, 1, .. _] => 0,
175  *       [1, 2, 2, .. _] => 1,
176  *       [1, 2, 3, .. _] => 2,
177  *       [1, 2, .. _] => 3,
178  *       _ => 4
179  *   }
180  * The proper arm to match is arm 2, but arms 0 and 3 both have the
181  * condition "len >= 2". If arm 3 was lumped in with arm 0, then the
182  * wrong branch would be taken. Instead, vec_len Opts are associated
183  * with a contiguous range of matches that have the same "shape".
184  * This is sort of ugly and requires a bunch of special handling of
185  * vec_len options.
186  *
187  */
188
189 #![allow(non_camel_case_types)]
190
191 use back::abi;
192 use driver::config::FullDebugInfo;
193 use llvm;
194 use llvm::{ValueRef, BasicBlockRef};
195 use middle::const_eval;
196 use middle::def;
197 use middle::check_match;
198 use middle::lang_items::StrEqFnLangItem;
199 use middle::pat_util::*;
200 use middle::resolve::DefMap;
201 use middle::trans::adt;
202 use middle::trans::base::*;
203 use middle::trans::build::*;
204 use middle::trans::callee;
205 use middle::trans::cleanup;
206 use middle::trans::cleanup::CleanupMethods;
207 use middle::trans::common::*;
208 use middle::trans::consts;
209 use middle::trans::controlflow;
210 use middle::trans::datum::*;
211 use middle::trans::expr::Dest;
212 use middle::trans::expr;
213 use middle::trans::tvec;
214 use middle::trans::type_of;
215 use middle::trans::debuginfo;
216 use middle::ty;
217 use util::common::indenter;
218 use util::ppaux::{Repr, vec_map_to_string};
219
220 use std;
221 use std::collections::HashMap;
222 use std::cell::Cell;
223 use std::rc::Rc;
224 use std::gc::{Gc};
225 use syntax::ast;
226 use syntax::ast::Ident;
227 use syntax::codemap::Span;
228 use syntax::parse::token::InternedString;
229
230 // An option identifying a literal: either an expression or a DefId of a static expression.
231 enum Lit {
232     ExprLit(Gc<ast::Expr>),
233     ConstLit(ast::DefId),              // the def ID of the constant
234 }
235
236 #[deriving(PartialEq)]
237 pub enum VecLenOpt {
238     vec_len_eq,
239     vec_len_ge(/* length of prefix */uint)
240 }
241
242 // An option identifying a branch (either a literal, an enum variant or a
243 // range)
244 enum Opt {
245     lit(Lit),
246     var(ty::Disr, Rc<adt::Repr>, ast::DefId),
247     range(Gc<ast::Expr>, Gc<ast::Expr>),
248     vec_len(/* length */ uint, VecLenOpt, /*range of matches*/(uint, uint))
249 }
250
251 fn lit_to_expr(tcx: &ty::ctxt, a: &Lit) -> Gc<ast::Expr> {
252     match *a {
253         ExprLit(existing_a_expr) => existing_a_expr,
254         ConstLit(a_const) => const_eval::lookup_const_by_id(tcx, a_const).unwrap()
255     }
256 }
257
258 fn opt_eq(tcx: &ty::ctxt, a: &Opt, b: &Opt) -> bool {
259     match (a, b) {
260         (&lit(a), &lit(b)) => {
261             let a_expr = lit_to_expr(tcx, &a);
262             let b_expr = lit_to_expr(tcx, &b);
263             match const_eval::compare_lit_exprs(tcx, &*a_expr, &*b_expr) {
264                 Some(val1) => val1 == 0,
265                 None => fail!("compare_list_exprs: type mismatch"),
266             }
267         }
268         (&range(ref a1, ref a2), &range(ref b1, ref b2)) => {
269             let m1 = const_eval::compare_lit_exprs(tcx, &**a1, &**b1);
270             let m2 = const_eval::compare_lit_exprs(tcx, &**a2, &**b2);
271             match (m1, m2) {
272                 (Some(val1), Some(val2)) => (val1 == 0 && val2 == 0),
273                 _ => fail!("compare_list_exprs: type mismatch"),
274             }
275         }
276         (&var(a, _, _), &var(b, _, _)) => a == b,
277         (&vec_len(a1, a2, _), &vec_len(b1, b2, _)) =>
278             a1 == b1 && a2 == b2,
279         _ => false
280     }
281 }
282
283 pub enum opt_result<'a> {
284     single_result(Result<'a>),
285     lower_bound(Result<'a>),
286     range_result(Result<'a>, Result<'a>),
287 }
288
289 fn trans_opt<'a>(bcx: &'a Block<'a>, o: &Opt) -> opt_result<'a> {
290     let _icx = push_ctxt("match::trans_opt");
291     let ccx = bcx.ccx();
292     let mut bcx = bcx;
293     match *o {
294         lit(ExprLit(ref lit_expr)) => {
295             let lit_datum = unpack_datum!(bcx, expr::trans(bcx, &**lit_expr));
296             let lit_datum = lit_datum.assert_rvalue(bcx); // literals are rvalues
297             let lit_datum = unpack_datum!(bcx, lit_datum.to_appropriate_datum(bcx));
298             return single_result(Result::new(bcx, lit_datum.val));
299         }
300         lit(l @ ConstLit(ref def_id)) => {
301             let lit_ty = ty::node_id_to_type(bcx.tcx(), lit_to_expr(bcx.tcx(), &l).id);
302             let (llval, _) = consts::get_const_val(bcx.ccx(), *def_id);
303             let lit_datum = immediate_rvalue(llval, lit_ty);
304             let lit_datum = unpack_datum!(bcx, lit_datum.to_appropriate_datum(bcx));
305             return single_result(Result::new(bcx, lit_datum.val));
306         }
307         var(disr_val, ref repr, _) => {
308             return adt::trans_case(bcx, &**repr, disr_val);
309         }
310         range(ref l1, ref l2) => {
311             let (l1, _) = consts::const_expr(ccx, &**l1, true);
312             let (l2, _) = consts::const_expr(ccx, &**l2, true);
313             return range_result(Result::new(bcx, l1), Result::new(bcx, l2));
314         }
315         vec_len(n, vec_len_eq, _) => {
316             return single_result(Result::new(bcx, C_int(ccx, n as int)));
317         }
318         vec_len(n, vec_len_ge(_), _) => {
319             return lower_bound(Result::new(bcx, C_int(ccx, n as int)));
320         }
321     }
322 }
323
324 fn variant_opt(bcx: &Block, pat_id: ast::NodeId) -> Opt {
325     let ccx = bcx.ccx();
326     let def = ccx.tcx.def_map.borrow().get_copy(&pat_id);
327     match def {
328         def::DefVariant(enum_id, var_id, _) => {
329             let variant = ty::enum_variant_with_id(ccx.tcx(), enum_id, var_id);
330             var(variant.disr_val, adt::represent_node(bcx, pat_id), var_id)
331         }
332         _ => {
333             ccx.sess().bug("non-variant or struct in variant_opt()");
334         }
335     }
336 }
337
338 #[deriving(Clone)]
339 pub enum TransBindingMode {
340     TrByCopy(/* llbinding */ ValueRef),
341     TrByMove,
342     TrByRef,
343 }
344
345 /**
346  * Information about a pattern binding:
347  * - `llmatch` is a pointer to a stack slot.  The stack slot contains a
348  *   pointer into the value being matched.  Hence, llmatch has type `T**`
349  *   where `T` is the value being matched.
350  * - `trmode` is the trans binding mode
351  * - `id` is the node id of the binding
352  * - `ty` is the Rust type of the binding */
353  #[deriving(Clone)]
354 pub struct BindingInfo {
355     pub llmatch: ValueRef,
356     pub trmode: TransBindingMode,
357     pub id: ast::NodeId,
358     pub span: Span,
359     pub ty: ty::t,
360 }
361
362 type BindingsMap = HashMap<Ident, BindingInfo>;
363
364 struct ArmData<'a, 'b> {
365     bodycx: &'b Block<'b>,
366     arm: &'a ast::Arm,
367     bindings_map: BindingsMap
368 }
369
370 /**
371  * Info about Match.
372  * If all `pats` are matched then arm `data` will be executed.
373  * As we proceed `bound_ptrs` are filled with pointers to values to be bound,
374  * these pointers are stored in llmatch variables just before executing `data` arm.
375  */
376 struct Match<'a, 'b> {
377     pats: Vec<Gc<ast::Pat>>,
378     data: &'a ArmData<'a, 'b>,
379     bound_ptrs: Vec<(Ident, ValueRef)>
380 }
381
382 impl<'a, 'b> Repr for Match<'a, 'b> {
383     fn repr(&self, tcx: &ty::ctxt) -> String {
384         if tcx.sess.verbose() {
385             // for many programs, this just take too long to serialize
386             self.pats.repr(tcx)
387         } else {
388             format!("{} pats", self.pats.len())
389         }
390     }
391 }
392
393 fn has_nested_bindings(m: &[Match], col: uint) -> bool {
394     for br in m.iter() {
395         match br.pats.get(col).node {
396             ast::PatIdent(_, _, Some(_)) => return true,
397             _ => ()
398         }
399     }
400     return false;
401 }
402
403 fn expand_nested_bindings<'a, 'b>(
404                           bcx: &'b Block<'b>,
405                           m: &'a [Match<'a, 'b>],
406                           col: uint,
407                           val: ValueRef)
408                           -> Vec<Match<'a, 'b>> {
409     debug!("expand_nested_bindings(bcx={}, m={}, col={}, val={})",
410            bcx.to_str(),
411            m.repr(bcx.tcx()),
412            col,
413            bcx.val_to_string(val));
414     let _indenter = indenter();
415
416     m.iter().map(|br| {
417         let mut bound_ptrs = br.bound_ptrs.clone();
418         let mut pat = *br.pats.get(col);
419         loop {
420             pat = match pat.node {
421                 ast::PatIdent(_, ref path, Some(inner)) => {
422                     bound_ptrs.push((path.node, val));
423                     inner.clone()
424                 },
425                 _ => break
426             }
427         }
428
429         let mut pats = br.pats.clone();
430         *pats.get_mut(col) = pat;
431         Match {
432             pats: pats,
433             data: &*br.data,
434             bound_ptrs: bound_ptrs
435         }
436     }).collect()
437 }
438
439 type enter_pats<'a> = |&[Gc<ast::Pat>]|: 'a -> Option<Vec<Gc<ast::Pat>>>;
440
441 fn enter_match<'a, 'b>(
442                bcx: &'b Block<'b>,
443                dm: &DefMap,
444                m: &'a [Match<'a, 'b>],
445                col: uint,
446                val: ValueRef,
447                e: enter_pats)
448                -> Vec<Match<'a, 'b>> {
449     debug!("enter_match(bcx={}, m={}, col={}, val={})",
450            bcx.to_str(),
451            m.repr(bcx.tcx()),
452            col,
453            bcx.val_to_string(val));
454     let _indenter = indenter();
455
456     m.iter().filter_map(|br| {
457         e(br.pats.as_slice()).map(|pats| {
458             let this = *br.pats.get(col);
459             let mut bound_ptrs = br.bound_ptrs.clone();
460             match this.node {
461                 ast::PatIdent(_, ref path1, None) => {
462                     if pat_is_binding(dm, &*this) {
463                         bound_ptrs.push((path1.node, val));
464                     }
465                 }
466                 _ => {}
467             }
468
469             Match {
470                 pats: pats,
471                 data: br.data,
472                 bound_ptrs: bound_ptrs
473             }
474         })
475     }).collect()
476 }
477
478 fn enter_default<'a, 'b>(
479                  bcx: &'b Block<'b>,
480                  dm: &DefMap,
481                  m: &'a [Match<'a, 'b>],
482                  col: uint,
483                  val: ValueRef)
484                  -> Vec<Match<'a, 'b>> {
485     debug!("enter_default(bcx={}, m={}, col={}, val={})",
486            bcx.to_str(),
487            m.repr(bcx.tcx()),
488            col,
489            bcx.val_to_string(val));
490     let _indenter = indenter();
491
492     // Collect all of the matches that can match against anything.
493     enter_match(bcx, dm, m, col, val, |pats| {
494         if pat_is_binding_or_wild(dm, &*pats[col]) {
495             Some(Vec::from_slice(pats.slice_to(col)).append(pats.slice_from(col + 1)))
496         } else {
497             None
498         }
499     })
500 }
501
502 // <pcwalton> nmatsakis: what does enter_opt do?
503 // <pcwalton> in trans/match
504 // <pcwalton> trans/match.rs is like stumbling around in a dark cave
505 // <nmatsakis> pcwalton: the enter family of functions adjust the set of
506 //             patterns as needed
507 // <nmatsakis> yeah, at some point I kind of achieved some level of
508 //             understanding
509 // <nmatsakis> anyhow, they adjust the patterns given that something of that
510 //             kind has been found
511 // <nmatsakis> pcwalton: ok, right, so enter_XXX() adjusts the patterns, as I
512 //             said
513 // <nmatsakis> enter_match() kind of embodies the generic code
514 // <nmatsakis> it is provided with a function that tests each pattern to see
515 //             if it might possibly apply and so forth
516 // <nmatsakis> so, if you have a pattern like {a: _, b: _, _} and one like _
517 // <nmatsakis> then _ would be expanded to (_, _)
518 // <nmatsakis> one spot for each of the sub-patterns
519 // <nmatsakis> enter_opt() is one of the more complex; it covers the fallible
520 //             cases
521 // <nmatsakis> enter_rec_or_struct() or enter_tuple() are simpler, since they
522 //             are infallible patterns
523 // <nmatsakis> so all patterns must either be records (resp. tuples) or
524 //             wildcards
525
526 /// The above is now outdated in that enter_match() now takes a function that
527 /// takes the complete row of patterns rather than just the first one.
528 /// Also, most of the enter_() family functions have been unified with
529 /// the check_match specialization step.
530 fn enter_opt<'a, 'b>(
531              bcx: &'b Block<'b>,
532              _: ast::NodeId,
533              dm: &DefMap,
534              m: &'a [Match<'a, 'b>],
535              opt: &Opt,
536              col: uint,
537              variant_size: uint,
538              val: ValueRef)
539              -> Vec<Match<'a, 'b>> {
540     debug!("enter_opt(bcx={}, m={}, opt={:?}, col={}, val={})",
541            bcx.to_str(),
542            m.repr(bcx.tcx()),
543            *opt,
544            col,
545            bcx.val_to_string(val));
546     let _indenter = indenter();
547
548     let ctor = match opt {
549         &lit(x) => {
550             check_match::ConstantValue(const_eval::eval_const_expr(
551                 bcx.tcx(), &*lit_to_expr(bcx.tcx(), &x)))
552         }
553         &range(ref lo, ref hi) => check_match::ConstantRange(
554             const_eval::eval_const_expr(bcx.tcx(), &**lo),
555             const_eval::eval_const_expr(bcx.tcx(), &**hi)
556         ),
557         &vec_len(len, _, _) => check_match::Slice(len),
558         &var(_, _, def_id) => check_match::Variant(def_id)
559     };
560
561     let mut i = 0;
562     let tcx = bcx.tcx();
563     let mcx = check_match::MatchCheckCtxt { tcx: bcx.tcx() };
564     enter_match(bcx, dm, m, col, val, |pats| {
565         let span = pats[col].span;
566         let specialized = match pats[col].node {
567             ast::PatVec(ref before, slice, ref after) => {
568                 let (lo, hi) = match *opt {
569                     vec_len(_, _, (lo, hi)) => (lo, hi),
570                     _ => tcx.sess.span_bug(span,
571                                            "vec pattern but not vec opt")
572                 };
573
574                 let elems = match slice {
575                     Some(slice) if i >= lo && i <= hi => {
576                         let n = before.len() + after.len();
577                         let this_opt = vec_len(n, vec_len_ge(before.len()),
578                                                (lo, hi));
579                         if opt_eq(tcx, &this_opt, opt) {
580                             let mut new_before = Vec::new();
581                             for pat in before.iter() {
582                                 new_before.push(*pat);
583                             }
584                             new_before.push(slice);
585                             for pat in after.iter() {
586                                 new_before.push(*pat);
587                             }
588                             Some(new_before)
589                         } else {
590                             None
591                         }
592                     }
593                     None if i >= lo && i <= hi => {
594                         let n = before.len();
595                         if opt_eq(tcx, &vec_len(n, vec_len_eq, (lo,hi)), opt) {
596                             let mut new_before = Vec::new();
597                             for pat in before.iter() {
598                                 new_before.push(*pat);
599                             }
600                             Some(new_before)
601                         } else {
602                             None
603                         }
604                     }
605                     _ => None
606                 };
607                 elems.map(|head| head.append(pats.slice_to(col)).append(pats.slice_from(col + 1)))
608             }
609             _ => {
610                 check_match::specialize(&mcx, pats.as_slice(), &ctor, col, variant_size)
611             }
612         };
613         i += 1;
614         specialized
615     })
616 }
617
618 // Returns the options in one column of matches. An option is something that
619 // needs to be conditionally matched at runtime; for example, the discriminant
620 // on a set of enum variants or a literal.
621 fn get_options(bcx: &Block, m: &[Match], col: uint) -> Vec<Opt> {
622     let ccx = bcx.ccx();
623     fn add_to_set(tcx: &ty::ctxt, set: &mut Vec<Opt>, val: Opt) {
624         if set.iter().any(|l| opt_eq(tcx, l, &val)) {return;}
625         set.push(val);
626     }
627     // Vector comparisons are special in that since the actual
628     // conditions over-match, we need to be careful about them. This
629     // means that in order to properly handle things in order, we need
630     // to not always merge conditions.
631     fn add_veclen_to_set(set: &mut Vec<Opt> , i: uint,
632                          len: uint, vlo: VecLenOpt) {
633         match set.last() {
634             // If the last condition in the list matches the one we want
635             // to add, then extend its range. Otherwise, make a new
636             // vec_len with a range just covering the new entry.
637             Some(&vec_len(len2, vlo2, (start, end)))
638                  if len == len2 && vlo == vlo2 => {
639                 let length = set.len();
640                  *set.get_mut(length - 1) =
641                      vec_len(len, vlo, (start, end+1))
642             }
643             _ => set.push(vec_len(len, vlo, (i, i)))
644         }
645     }
646
647     let mut found = Vec::new();
648     for (i, br) in m.iter().enumerate() {
649         let cur = *br.pats.get(col);
650         match cur.node {
651             ast::PatLit(l) => {
652                 add_to_set(ccx.tcx(), &mut found, lit(ExprLit(l)));
653             }
654             ast::PatIdent(..) => {
655                 // This is either an enum variant or a variable binding.
656                 let opt_def = ccx.tcx.def_map.borrow().find_copy(&cur.id);
657                 match opt_def {
658                     Some(def::DefVariant(..)) => {
659                         add_to_set(ccx.tcx(), &mut found,
660                                    variant_opt(bcx, cur.id));
661                     }
662                     Some(def::DefStatic(const_did, false)) => {
663                         add_to_set(ccx.tcx(), &mut found,
664                                    lit(ConstLit(const_did)));
665                     }
666                     _ => {}
667                 }
668             }
669             ast::PatEnum(..) | ast::PatStruct(..) => {
670                 // This could be one of: a tuple-like enum variant, a
671                 // struct-like enum variant, or a struct.
672                 let opt_def = ccx.tcx.def_map.borrow().find_copy(&cur.id);
673                 match opt_def {
674                     Some(def::DefFn(..)) |
675                     Some(def::DefVariant(..)) => {
676                         add_to_set(ccx.tcx(), &mut found,
677                                    variant_opt(bcx, cur.id));
678                     }
679                     Some(def::DefStatic(const_did, false)) => {
680                         add_to_set(ccx.tcx(), &mut found,
681                                    lit(ConstLit(const_did)));
682                     }
683                     _ => {}
684                 }
685             }
686             ast::PatRange(l1, l2) => {
687                 add_to_set(ccx.tcx(), &mut found, range(l1, l2));
688             }
689             ast::PatVec(ref before, slice, ref after) => {
690                 let (len, vec_opt) = match slice {
691                     None => (before.len(), vec_len_eq),
692                     Some(_) => (before.len() + after.len(),
693                                 vec_len_ge(before.len()))
694                 };
695                 add_veclen_to_set(&mut found, i, len, vec_opt);
696             }
697             _ => {}
698         }
699     }
700     return found;
701 }
702
703 struct ExtractedBlock<'a> {
704     vals: Vec<ValueRef> ,
705     bcx: &'a Block<'a>,
706 }
707
708 fn extract_variant_args<'a>(
709                         bcx: &'a Block<'a>,
710                         repr: &adt::Repr,
711                         disr_val: ty::Disr,
712                         val: ValueRef)
713                         -> ExtractedBlock<'a> {
714     let _icx = push_ctxt("match::extract_variant_args");
715     let args = Vec::from_fn(adt::num_args(repr, disr_val), |i| {
716         adt::trans_field_ptr(bcx, repr, val, disr_val, i)
717     });
718
719     ExtractedBlock { vals: args, bcx: bcx }
720 }
721
722 fn match_datum(bcx: &Block,
723                val: ValueRef,
724                pat_id: ast::NodeId)
725                -> Datum<Lvalue> {
726     /*!
727      * Helper for converting from the ValueRef that we pass around in
728      * the match code, which is always an lvalue, into a Datum. Eventually
729      * we should just pass around a Datum and be done with it.
730      */
731
732     let ty = node_id_type(bcx, pat_id);
733     Datum::new(val, ty, Lvalue)
734 }
735
736
737 fn extract_vec_elems<'a>(
738                      bcx: &'a Block<'a>,
739                      pat_id: ast::NodeId,
740                      elem_count: uint,
741                      slice: Option<uint>,
742                      val: ValueRef)
743                      -> ExtractedBlock<'a> {
744     let _icx = push_ctxt("match::extract_vec_elems");
745     let vec_datum = match_datum(bcx, val, pat_id);
746     let (base, len) = vec_datum.get_vec_base_and_len(bcx);
747     let vec_ty = node_id_type(bcx, pat_id);
748     let vt = tvec::vec_types(bcx, ty::sequence_element_type(bcx.tcx(), vec_ty));
749
750     let mut elems = Vec::from_fn(elem_count, |i| {
751         match slice {
752             None => GEPi(bcx, base, [i]),
753             Some(n) if i < n => GEPi(bcx, base, [i]),
754             Some(n) if i > n => {
755                 InBoundsGEP(bcx, base, [
756                     Sub(bcx, len,
757                         C_int(bcx.ccx(), (elem_count - i) as int))])
758             }
759             _ => unsafe { llvm::LLVMGetUndef(vt.llunit_ty.to_ref()) }
760         }
761     });
762     if slice.is_some() {
763         let n = slice.unwrap();
764         let slice_byte_offset = Mul(bcx, vt.llunit_size, C_uint(bcx.ccx(), n));
765         let slice_begin = tvec::pointer_add_byte(bcx, base, slice_byte_offset);
766         let slice_len_offset = C_uint(bcx.ccx(), elem_count - 1u);
767         let slice_len = Sub(bcx, len, slice_len_offset);
768         let slice_ty = ty::mk_slice(bcx.tcx(),
769                                     ty::ReStatic,
770                                     ty::mt {ty: vt.unit_ty, mutbl: ast::MutImmutable});
771         let scratch = rvalue_scratch_datum(bcx, slice_ty, "");
772         Store(bcx, slice_begin,
773               GEPi(bcx, scratch.val, [0u, abi::slice_elt_base]));
774         Store(bcx, slice_len, GEPi(bcx, scratch.val, [0u, abi::slice_elt_len]));
775         *elems.get_mut(n) = scratch.val;
776     }
777
778     ExtractedBlock { vals: elems, bcx: bcx }
779 }
780
781 // Macro for deciding whether any of the remaining matches fit a given kind of
782 // pattern.  Note that, because the macro is well-typed, either ALL of the
783 // matches should fit that sort of pattern or NONE (however, some of the
784 // matches may be wildcards like _ or identifiers).
785 macro_rules! any_pat (
786     ($m:expr, $col:expr, $pattern:pat) => (
787         ($m).iter().any(|br| {
788             match br.pats.get($col).node {
789                 $pattern => true,
790                 _ => false
791             }
792         })
793     )
794 )
795
796 fn any_uniq_pat(m: &[Match], col: uint) -> bool {
797     any_pat!(m, col, ast::PatBox(_))
798 }
799
800 fn any_region_pat(m: &[Match], col: uint) -> bool {
801     any_pat!(m, col, ast::PatRegion(_))
802 }
803
804 fn any_irrefutable_adt_pat(bcx: &Block, m: &[Match], col: uint) -> bool {
805     m.iter().any(|br| {
806         let pat = *br.pats.get(col);
807         match pat.node {
808             ast::PatTup(_) => true,
809             ast::PatStruct(..) => {
810                 match bcx.tcx().def_map.borrow().find(&pat.id) {
811                     Some(&def::DefVariant(..)) => false,
812                     _ => true,
813                 }
814             }
815             ast::PatEnum(..) | ast::PatIdent(_, _, None) => {
816                 match bcx.tcx().def_map.borrow().find(&pat.id) {
817                     Some(&def::DefFn(..)) |
818                     Some(&def::DefStruct(..)) => true,
819                     _ => false
820                 }
821             }
822             _ => false
823         }
824     })
825 }
826
827 struct DynamicFailureHandler<'a> {
828     bcx: &'a Block<'a>,
829     sp: Span,
830     msg: InternedString,
831     finished: Cell<Option<BasicBlockRef>>,
832 }
833
834 impl<'a> DynamicFailureHandler<'a> {
835     fn handle_fail(&self) -> BasicBlockRef {
836         match self.finished.get() {
837             Some(bb) => return bb,
838             _ => (),
839         }
840
841         let fcx = self.bcx.fcx;
842         let fail_cx = fcx.new_block(false, "case_fallthrough", None);
843         controlflow::trans_fail(fail_cx, self.sp, self.msg.clone());
844         self.finished.set(Some(fail_cx.llbb));
845         fail_cx.llbb
846     }
847 }
848
849 /// What to do when the pattern match fails.
850 enum FailureHandler<'a> {
851     Infallible,
852     JumpToBasicBlock(BasicBlockRef),
853     DynamicFailureHandlerClass(Box<DynamicFailureHandler<'a>>),
854 }
855
856 impl<'a> FailureHandler<'a> {
857     fn is_infallible(&self) -> bool {
858         match *self {
859             Infallible => true,
860             _ => false,
861         }
862     }
863
864     fn is_fallible(&self) -> bool {
865         !self.is_infallible()
866     }
867
868     fn handle_fail(&self) -> BasicBlockRef {
869         match *self {
870             Infallible => {
871                 fail!("attempted to fail in infallible failure handler!")
872             }
873             JumpToBasicBlock(basic_block) => basic_block,
874             DynamicFailureHandlerClass(ref dynamic_failure_handler) => {
875                 dynamic_failure_handler.handle_fail()
876             }
877         }
878     }
879 }
880
881 fn pick_col(m: &[Match]) -> uint {
882     fn score(p: &ast::Pat) -> uint {
883         match p.node {
884           ast::PatLit(_) | ast::PatEnum(_, _) | ast::PatRange(_, _) => 1u,
885           ast::PatIdent(_, _, Some(ref p)) => score(&**p),
886           _ => 0u
887         }
888     }
889     let mut scores = Vec::from_elem(m[0].pats.len(), 0u);
890     for br in m.iter() {
891         for (i, ref p) in br.pats.iter().enumerate() {
892             *scores.get_mut(i) += score(&***p);
893         }
894     }
895     let mut max_score = 0u;
896     let mut best_col = 0u;
897     for (i, score) in scores.iter().enumerate() {
898         let score = *score;
899
900         // Irrefutable columns always go first, they'd only be duplicated in
901         // the branches.
902         if score == 0u { return i; }
903         // If no irrefutable ones are found, we pick the one with the biggest
904         // branching factor.
905         if score > max_score { max_score = score; best_col = i; }
906     }
907     return best_col;
908 }
909
910 #[deriving(PartialEq)]
911 pub enum branch_kind { no_branch, single, switch, compare, compare_vec_len }
912
913 // Compiles a comparison between two things.
914 fn compare_values<'a>(
915                   cx: &'a Block<'a>,
916                   lhs: ValueRef,
917                   rhs: ValueRef,
918                   rhs_t: ty::t)
919                   -> Result<'a> {
920     fn compare_str<'a>(cx: &'a Block<'a>,
921                        lhs: ValueRef,
922                        rhs: ValueRef,
923                        rhs_t: ty::t)
924                        -> Result<'a> {
925         let did = langcall(cx,
926                            None,
927                            format!("comparison of `{}`",
928                                    cx.ty_to_string(rhs_t)).as_slice(),
929                            StrEqFnLangItem);
930         callee::trans_lang_call(cx, did, [lhs, rhs], None)
931     }
932
933     let _icx = push_ctxt("compare_values");
934     if ty::type_is_scalar(rhs_t) {
935         let rs = compare_scalar_types(cx, lhs, rhs, rhs_t, ast::BiEq);
936         return Result::new(rs.bcx, rs.val);
937     }
938
939     match ty::get(rhs_t).sty {
940         ty::ty_rptr(_, mt) => match ty::get(mt.ty).sty {
941             ty::ty_str => compare_str(cx, lhs, rhs, rhs_t),
942             ty::ty_vec(mt, _) => match ty::get(mt.ty).sty {
943                 ty::ty_uint(ast::TyU8) => {
944                     // NOTE: cast &[u8] to &str and abuse the str_eq lang item,
945                     // which calls memcmp().
946                     let t = ty::mk_str_slice(cx.tcx(), ty::ReStatic, ast::MutImmutable);
947                     let lhs = BitCast(cx, lhs, type_of::type_of(cx.ccx(), t).ptr_to());
948                     let rhs = BitCast(cx, rhs, type_of::type_of(cx.ccx(), t).ptr_to());
949                     compare_str(cx, lhs, rhs, rhs_t)
950                 },
951                 _ => cx.sess().bug("only byte strings supported in compare_values"),
952             },
953             _ => cx.sess().bug("only string and byte strings supported in compare_values"),
954         },
955         _ => cx.sess().bug("only scalars, byte strings, and strings supported in compare_values"),
956     }
957 }
958
959 fn insert_lllocals<'a>(mut bcx: &'a Block<'a>, bindings_map: &BindingsMap,
960                        cs: Option<cleanup::ScopeId>)
961                        -> &'a Block<'a> {
962     /*!
963      * For each binding in `data.bindings_map`, adds an appropriate entry into
964      * the `fcx.lllocals` map
965      */
966
967     for (&ident, &binding_info) in bindings_map.iter() {
968         let llval = match binding_info.trmode {
969             // By value mut binding for a copy type: load from the ptr
970             // into the matched value and copy to our alloca
971             TrByCopy(llbinding) => {
972                 let llval = Load(bcx, binding_info.llmatch);
973                 let datum = Datum::new(llval, binding_info.ty, Lvalue);
974                 bcx = datum.store_to(bcx, llbinding);
975
976                 llbinding
977             },
978
979             // By value move bindings: load from the ptr into the matched value
980             TrByMove => Load(bcx, binding_info.llmatch),
981
982             // By ref binding: use the ptr into the matched value
983             TrByRef => binding_info.llmatch
984         };
985
986         let datum = Datum::new(llval, binding_info.ty, Lvalue);
987         match cs {
988             Some(cs) => bcx.fcx.schedule_drop_and_zero_mem(cs, llval, binding_info.ty),
989             _ => {}
990         }
991
992         debug!("binding {:?} to {}",
993                binding_info.id,
994                bcx.val_to_string(llval));
995         bcx.fcx.lllocals.borrow_mut().insert(binding_info.id, datum);
996
997         if bcx.sess().opts.debuginfo == FullDebugInfo {
998             debuginfo::create_match_binding_metadata(bcx,
999                                                      ident,
1000                                                      binding_info);
1001         }
1002     }
1003     bcx
1004 }
1005
1006 fn compile_guard<'a, 'b>(
1007                  bcx: &'b Block<'b>,
1008                  guard_expr: &ast::Expr,
1009                  data: &ArmData,
1010                  m: &'a [Match<'a, 'b>],
1011                  vals: &[ValueRef],
1012                  chk: &FailureHandler,
1013                  has_genuine_default: bool)
1014                  -> &'b Block<'b> {
1015     debug!("compile_guard(bcx={}, guard_expr={}, m={}, vals={})",
1016            bcx.to_str(),
1017            bcx.expr_to_string(guard_expr),
1018            m.repr(bcx.tcx()),
1019            vec_map_to_string(vals, |v| bcx.val_to_string(*v)));
1020     let _indenter = indenter();
1021
1022     let mut bcx = insert_lllocals(bcx, &data.bindings_map, None);
1023
1024     let val = unpack_datum!(bcx, expr::trans(bcx, guard_expr));
1025     let val = val.to_llbool(bcx);
1026
1027     return with_cond(bcx, Not(bcx, val), |bcx| {
1028         // Guard does not match: remove all bindings from the lllocals table
1029         for (_, &binding_info) in data.bindings_map.iter() {
1030             bcx.fcx.lllocals.borrow_mut().remove(&binding_info.id);
1031         }
1032         match chk {
1033             // If the default arm is the only one left, move on to the next
1034             // condition explicitly rather than (possibly) falling back to
1035             // the default arm.
1036             &JumpToBasicBlock(_) if m.len() == 1 && has_genuine_default => {
1037                 Br(bcx, chk.handle_fail());
1038             }
1039             _ => {
1040                 compile_submatch(bcx, m, vals, chk, has_genuine_default);
1041             }
1042         };
1043         bcx
1044     });
1045 }
1046
1047 fn compile_submatch<'a, 'b>(
1048                     bcx: &'b Block<'b>,
1049                     m: &'a [Match<'a, 'b>],
1050                     vals: &[ValueRef],
1051                     chk: &FailureHandler,
1052                     has_genuine_default: bool) {
1053     debug!("compile_submatch(bcx={}, m={}, vals={})",
1054            bcx.to_str(),
1055            m.repr(bcx.tcx()),
1056            vec_map_to_string(vals, |v| bcx.val_to_string(*v)));
1057     let _indenter = indenter();
1058     let _icx = push_ctxt("match::compile_submatch");
1059     let mut bcx = bcx;
1060     if m.len() == 0u {
1061         if chk.is_fallible() {
1062             Br(bcx, chk.handle_fail());
1063         }
1064         return;
1065     }
1066     if m[0].pats.len() == 0u {
1067         let data = &m[0].data;
1068         for &(ref ident, ref value_ptr) in m[0].bound_ptrs.iter() {
1069             let llmatch = data.bindings_map.get(ident).llmatch;
1070             Store(bcx, *value_ptr, llmatch);
1071         }
1072         match data.arm.guard {
1073             Some(ref guard_expr) => {
1074                 bcx = compile_guard(bcx,
1075                                     &**guard_expr,
1076                                     m[0].data,
1077                                     m.slice(1, m.len()),
1078                                     vals,
1079                                     chk,
1080                                     has_genuine_default);
1081             }
1082             _ => ()
1083         }
1084         Br(bcx, data.bodycx.llbb);
1085         return;
1086     }
1087
1088     let col = pick_col(m);
1089     let val = vals[col];
1090
1091     if has_nested_bindings(m, col) {
1092         let expanded = expand_nested_bindings(bcx, m, col, val);
1093         compile_submatch_continue(bcx,
1094                                   expanded.as_slice(),
1095                                   vals,
1096                                   chk,
1097                                   col,
1098                                   val,
1099                                   has_genuine_default)
1100     } else {
1101         compile_submatch_continue(bcx, m, vals, chk, col, val, has_genuine_default)
1102     }
1103 }
1104
1105 fn compile_submatch_continue<'a, 'b>(
1106                              mut bcx: &'b Block<'b>,
1107                              m: &'a [Match<'a, 'b>],
1108                              vals: &[ValueRef],
1109                              chk: &FailureHandler,
1110                              col: uint,
1111                              val: ValueRef,
1112                              has_genuine_default: bool) {
1113     let fcx = bcx.fcx;
1114     let tcx = bcx.tcx();
1115     let dm = &tcx.def_map;
1116
1117     let vals_left = Vec::from_slice(vals.slice(0u, col)).append(vals.slice(col + 1u, vals.len()));
1118     let ccx = bcx.fcx.ccx;
1119
1120     // Find a real id (we're adding placeholder wildcard patterns, but
1121     // each column is guaranteed to have at least one real pattern)
1122     let pat_id = m.iter().map(|br| br.pats.get(col).id).find(|&id| id != 0).unwrap_or(0);
1123
1124     let left_ty = if pat_id == 0 {
1125         ty::mk_nil()
1126     } else {
1127         node_id_type(bcx, pat_id)
1128     };
1129
1130     let mcx = check_match::MatchCheckCtxt { tcx: bcx.tcx() };
1131     let adt_vals = if any_irrefutable_adt_pat(bcx, m, col) {
1132         let repr = adt::represent_type(bcx.ccx(), left_ty);
1133         let arg_count = adt::num_args(&*repr, 0);
1134         let field_vals: Vec<ValueRef> = std::iter::range(0, arg_count).map(|ix|
1135             adt::trans_field_ptr(bcx, &*repr, val, 0, ix)
1136         ).collect();
1137         Some(field_vals)
1138     } else if any_uniq_pat(m, col) || any_region_pat(m, col) {
1139         Some(vec!(Load(bcx, val)))
1140     } else {
1141         None
1142     };
1143
1144     match adt_vals {
1145         Some(field_vals) => {
1146             let pats = enter_match(bcx, dm, m, col, val, |pats|
1147                 check_match::specialize(&mcx, pats, &check_match::Single, col, field_vals.len())
1148             );
1149             let vals = field_vals.append(vals_left.as_slice());
1150             compile_submatch(bcx, pats.as_slice(), vals.as_slice(), chk, has_genuine_default);
1151             return;
1152         }
1153         _ => ()
1154     }
1155
1156     // Decide what kind of branch we need
1157     let opts = get_options(bcx, m, col);
1158     debug!("options={:?}", opts);
1159     let mut kind = no_branch;
1160     let mut test_val = val;
1161     debug!("test_val={}", bcx.val_to_string(test_val));
1162     if opts.len() > 0u {
1163         match *opts.get(0) {
1164             var(_, ref repr, _) => {
1165                 let (the_kind, val_opt) = adt::trans_switch(bcx, &**repr, val);
1166                 kind = the_kind;
1167                 for &tval in val_opt.iter() { test_val = tval; }
1168             }
1169             lit(_) => {
1170                 test_val = load_if_immediate(bcx, val, left_ty);
1171                 kind = if ty::type_is_integral(left_ty) { switch }
1172                 else { compare };
1173             }
1174             range(_, _) => {
1175                 test_val = Load(bcx, val);
1176                 kind = compare;
1177             },
1178             vec_len(..) => {
1179                 let (_, len) = tvec::get_base_and_len(bcx, val, left_ty);
1180                 test_val = len;
1181                 kind = compare_vec_len;
1182             }
1183         }
1184     }
1185     for o in opts.iter() {
1186         match *o {
1187             range(_, _) => { kind = compare; break }
1188             _ => ()
1189         }
1190     }
1191     let else_cx = match kind {
1192         no_branch | single => bcx,
1193         _ => bcx.fcx.new_temp_block("match_else")
1194     };
1195     let sw = if kind == switch {
1196         Switch(bcx, test_val, else_cx.llbb, opts.len())
1197     } else {
1198         C_int(ccx, 0) // Placeholder for when not using a switch
1199     };
1200
1201     let defaults = enter_default(else_cx, dm, m, col, val);
1202     let exhaustive = chk.is_infallible() && defaults.len() == 0u;
1203     let len = opts.len();
1204
1205     // Compile subtrees for each option
1206     for (i, opt) in opts.iter().enumerate() {
1207         // In some cases of range and vector pattern matching, we need to
1208         // override the failure case so that instead of failing, it proceeds
1209         // to try more matching. branch_chk, then, is the proper failure case
1210         // for the current conditional branch.
1211         let mut branch_chk = None;
1212         let mut opt_cx = else_cx;
1213         if !exhaustive || i+1 < len {
1214             opt_cx = bcx.fcx.new_temp_block("match_case");
1215             match kind {
1216               single => Br(bcx, opt_cx.llbb),
1217               switch => {
1218                   match trans_opt(bcx, opt) {
1219                       single_result(r) => {
1220                         unsafe {
1221                           llvm::LLVMAddCase(sw, r.val, opt_cx.llbb);
1222                           bcx = r.bcx;
1223                         }
1224                       }
1225                       _ => {
1226                           bcx.sess().bug(
1227                               "in compile_submatch, expected \
1228                                trans_opt to return a single_result")
1229                       }
1230                   }
1231               }
1232               compare | compare_vec_len => {
1233                   let t = if kind == compare {
1234                       left_ty
1235                   } else {
1236                       ty::mk_uint() // vector length
1237                   };
1238                   let Result {bcx: after_cx, val: matches} = {
1239                       match trans_opt(bcx, opt) {
1240                           single_result(Result {bcx, val}) => {
1241                               compare_values(bcx, test_val, val, t)
1242                           }
1243                           lower_bound(Result {bcx, val}) => {
1244                               compare_scalar_types(bcx, test_val, val, t, ast::BiGe)
1245                           }
1246                           range_result(Result {val: vbegin, ..},
1247                                        Result {bcx, val: vend}) => {
1248                               let Result {bcx, val: llge} =
1249                                   compare_scalar_types(
1250                                   bcx, test_val,
1251                                   vbegin, t, ast::BiGe);
1252                               let Result {bcx, val: llle} =
1253                                   compare_scalar_types(
1254                                   bcx, test_val, vend,
1255                                   t, ast::BiLe);
1256                               Result::new(bcx, And(bcx, llge, llle))
1257                           }
1258                       }
1259                   };
1260                   bcx = fcx.new_temp_block("compare_next");
1261
1262                   // If none of the sub-cases match, and the current condition
1263                   // is guarded or has multiple patterns, move on to the next
1264                   // condition, if there is any, rather than falling back to
1265                   // the default.
1266                   let guarded = m[i].data.arm.guard.is_some();
1267                   let multi_pats = m[i].pats.len() > 1;
1268                   if i + 1 < len && (guarded || multi_pats || kind == compare_vec_len) {
1269                       branch_chk = Some(JumpToBasicBlock(bcx.llbb));
1270                   }
1271                   CondBr(after_cx, matches, opt_cx.llbb, bcx.llbb);
1272               }
1273               _ => ()
1274             }
1275         } else if kind == compare || kind == compare_vec_len {
1276             Br(bcx, else_cx.llbb);
1277         }
1278
1279         let mut size = 0u;
1280         let mut unpacked = Vec::new();
1281         match *opt {
1282             var(disr_val, ref repr, _) => {
1283                 let ExtractedBlock {vals: argvals, bcx: new_bcx} =
1284                     extract_variant_args(opt_cx, &**repr, disr_val, val);
1285                 size = argvals.len();
1286                 unpacked = argvals;
1287                 opt_cx = new_bcx;
1288             }
1289             vec_len(n, vt, _) => {
1290                 let (n, slice) = match vt {
1291                     vec_len_ge(i) => (n + 1u, Some(i)),
1292                     vec_len_eq => (n, None)
1293                 };
1294                 let args = extract_vec_elems(opt_cx, pat_id, n,
1295                                              slice, val);
1296                 size = args.vals.len();
1297                 unpacked = args.vals.clone();
1298                 opt_cx = args.bcx;
1299             }
1300             lit(_) | range(_, _) => ()
1301         }
1302         let opt_ms = enter_opt(opt_cx, pat_id, dm, m, opt, col, size, val);
1303         let opt_vals = unpacked.append(vals_left.as_slice());
1304
1305         match branch_chk {
1306             None => {
1307                 compile_submatch(opt_cx,
1308                                  opt_ms.as_slice(),
1309                                  opt_vals.as_slice(),
1310                                  chk,
1311                                  has_genuine_default)
1312             }
1313             Some(branch_chk) => {
1314                 compile_submatch(opt_cx,
1315                                  opt_ms.as_slice(),
1316                                  opt_vals.as_slice(),
1317                                  &branch_chk,
1318                                  has_genuine_default)
1319             }
1320         }
1321     }
1322
1323     // Compile the fall-through case, if any
1324     if !exhaustive && kind != single {
1325         if kind == compare || kind == compare_vec_len {
1326             Br(bcx, else_cx.llbb);
1327         }
1328         match chk {
1329             // If there is only one default arm left, move on to the next
1330             // condition explicitly rather than (eventually) falling back to
1331             // the last default arm.
1332             &JumpToBasicBlock(_) if defaults.len() == 1 && has_genuine_default => {
1333                 Br(else_cx, chk.handle_fail());
1334             }
1335             _ => {
1336                 compile_submatch(else_cx,
1337                                  defaults.as_slice(),
1338                                  vals_left.as_slice(),
1339                                  chk,
1340                                  has_genuine_default);
1341             }
1342         }
1343     }
1344 }
1345
1346 pub fn trans_match<'a>(
1347                    bcx: &'a Block<'a>,
1348                    match_expr: &ast::Expr,
1349                    discr_expr: &ast::Expr,
1350                    arms: &[ast::Arm],
1351                    dest: Dest)
1352                    -> &'a Block<'a> {
1353     let _icx = push_ctxt("match::trans_match");
1354     trans_match_inner(bcx, match_expr.id, discr_expr, arms, dest)
1355 }
1356
1357 fn create_bindings_map(bcx: &Block, pat: Gc<ast::Pat>) -> BindingsMap {
1358     // Create the bindings map, which is a mapping from each binding name
1359     // to an alloca() that will be the value for that local variable.
1360     // Note that we use the names because each binding will have many ids
1361     // from the various alternatives.
1362     let ccx = bcx.ccx();
1363     let tcx = bcx.tcx();
1364     let mut bindings_map = HashMap::new();
1365     pat_bindings(&tcx.def_map, &*pat, |bm, p_id, span, path1| {
1366         let ident = path1.node;
1367         let variable_ty = node_id_type(bcx, p_id);
1368         let llvariable_ty = type_of::type_of(ccx, variable_ty);
1369         let tcx = bcx.tcx();
1370
1371         let llmatch;
1372         let trmode;
1373         match bm {
1374             ast::BindByValue(_)
1375                 if !ty::type_moves_by_default(tcx, variable_ty) => {
1376                 llmatch = alloca(bcx,
1377                                  llvariable_ty.ptr_to(),
1378                                  "__llmatch");
1379                 trmode = TrByCopy(alloca(bcx,
1380                                          llvariable_ty,
1381                                          bcx.ident(ident).as_slice()));
1382             }
1383             ast::BindByValue(_) => {
1384                 // in this case, the final type of the variable will be T,
1385                 // but during matching we need to store a *T as explained
1386                 // above
1387                 llmatch = alloca(bcx,
1388                                  llvariable_ty.ptr_to(),
1389                                  bcx.ident(ident).as_slice());
1390                 trmode = TrByMove;
1391             }
1392             ast::BindByRef(_) => {
1393                 llmatch = alloca(bcx,
1394                                  llvariable_ty,
1395                                  bcx.ident(ident).as_slice());
1396                 trmode = TrByRef;
1397             }
1398         };
1399         bindings_map.insert(ident, BindingInfo {
1400             llmatch: llmatch,
1401             trmode: trmode,
1402             id: p_id,
1403             span: span,
1404             ty: variable_ty
1405         });
1406     });
1407     return bindings_map;
1408 }
1409
1410 fn trans_match_inner<'a>(scope_cx: &'a Block<'a>,
1411                          match_id: ast::NodeId,
1412                          discr_expr: &ast::Expr,
1413                          arms: &[ast::Arm],
1414                          dest: Dest) -> &'a Block<'a> {
1415     let _icx = push_ctxt("match::trans_match_inner");
1416     let fcx = scope_cx.fcx;
1417     let mut bcx = scope_cx;
1418     let tcx = bcx.tcx();
1419
1420     let discr_datum = unpack_datum!(bcx, expr::trans_to_lvalue(bcx, discr_expr,
1421                                                                "match"));
1422     if bcx.unreachable.get() {
1423         return bcx;
1424     }
1425
1426     let t = node_id_type(bcx, discr_expr.id);
1427     let chk = {
1428         if ty::type_is_empty(tcx, t) {
1429             // Special case for empty types
1430             let fail_cx = Cell::new(None);
1431             let fail_handler = box DynamicFailureHandler {
1432                 bcx: scope_cx,
1433                 sp: discr_expr.span,
1434                 msg: InternedString::new("scrutinizing value that can't \
1435                                           exist"),
1436                 finished: fail_cx,
1437             };
1438             DynamicFailureHandlerClass(fail_handler)
1439         } else {
1440             Infallible
1441         }
1442     };
1443
1444     let arm_datas: Vec<ArmData> = arms.iter().map(|arm| ArmData {
1445         bodycx: fcx.new_id_block("case_body", arm.body.id),
1446         arm: arm,
1447         bindings_map: create_bindings_map(bcx, *arm.pats.get(0))
1448     }).collect();
1449
1450     let mut matches = Vec::new();
1451     for arm_data in arm_datas.iter() {
1452         matches.extend(arm_data.arm.pats.iter().map(|p| Match {
1453             pats: vec!(*p),
1454             data: arm_data,
1455             bound_ptrs: Vec::new(),
1456         }));
1457     }
1458
1459     // `compile_submatch` works one column of arm patterns a time and
1460     // then peels that column off. So as we progress, it may become
1461     // impossible to tell whether we have a genuine default arm, i.e.
1462     // `_ => foo` or not. Sometimes it is important to know that in order
1463     // to decide whether moving on to the next condition or falling back
1464     // to the default arm.
1465     let has_default = arms.last().map_or(false, |arm| {
1466         arm.pats.len() == 1
1467         && arm.pats.last().unwrap().node == ast::PatWild
1468     });
1469
1470     compile_submatch(bcx, matches.as_slice(), [discr_datum.val], &chk, has_default);
1471
1472     let mut arm_cxs = Vec::new();
1473     for arm_data in arm_datas.iter() {
1474         let mut bcx = arm_data.bodycx;
1475
1476         // insert bindings into the lllocals map and add cleanups
1477         let cs = fcx.push_custom_cleanup_scope();
1478         bcx = insert_lllocals(bcx, &arm_data.bindings_map, Some(cleanup::CustomScope(cs)));
1479         bcx = expr::trans_into(bcx, &*arm_data.arm.body, dest);
1480         bcx = fcx.pop_and_trans_custom_cleanup_scope(bcx, cs);
1481         arm_cxs.push(bcx);
1482     }
1483
1484     bcx = scope_cx.fcx.join_blocks(match_id, arm_cxs.as_slice());
1485     return bcx;
1486 }
1487
1488 enum IrrefutablePatternBindingMode {
1489     // Stores the association between node ID and LLVM value in `lllocals`.
1490     BindLocal,
1491     // Stores the association between node ID and LLVM value in `llargs`.
1492     BindArgument
1493 }
1494
1495 pub fn store_local<'a>(bcx: &'a Block<'a>,
1496                        local: &ast::Local)
1497                        -> &'a Block<'a> {
1498     /*!
1499      * Generates code for a local variable declaration like
1500      * `let <pat>;` or `let <pat> = <opt_init_expr>`.
1501      */
1502     let _icx = push_ctxt("match::store_local");
1503     let mut bcx = bcx;
1504     let tcx = bcx.tcx();
1505     let pat = local.pat;
1506     let opt_init_expr = local.init;
1507
1508     return match opt_init_expr {
1509         Some(init_expr) => {
1510             // Optimize the "let x = expr" case. This just writes
1511             // the result of evaluating `expr` directly into the alloca
1512             // for `x`. Often the general path results in similar or the
1513             // same code post-optimization, but not always. In particular,
1514             // in unsafe code, you can have expressions like
1515             //
1516             //    let x = intrinsics::uninit();
1517             //
1518             // In such cases, the more general path is unsafe, because
1519             // it assumes it is matching against a valid value.
1520             match simple_identifier(&*pat) {
1521                 Some(ident) => {
1522                     let var_scope = cleanup::var_scope(tcx, local.id);
1523                     return mk_binding_alloca(
1524                         bcx, pat.id, ident, BindLocal, var_scope, (),
1525                         |(), bcx, v, _| expr::trans_into(bcx, &*init_expr,
1526                                                          expr::SaveIn(v)));
1527                 }
1528
1529                 None => {}
1530             }
1531
1532             // General path.
1533             let init_datum =
1534                 unpack_datum!(bcx, expr::trans_to_lvalue(bcx, &*init_expr, "let"));
1535             if ty::type_is_bot(expr_ty(bcx, &*init_expr)) {
1536                 create_dummy_locals(bcx, pat)
1537             } else {
1538                 if bcx.sess().asm_comments() {
1539                     add_comment(bcx, "creating zeroable ref llval");
1540                 }
1541                 let var_scope = cleanup::var_scope(tcx, local.id);
1542                 bind_irrefutable_pat(bcx, pat, init_datum.val, BindLocal, var_scope)
1543             }
1544         }
1545         None => {
1546             create_dummy_locals(bcx, pat)
1547         }
1548     };
1549
1550     fn create_dummy_locals<'a>(mut bcx: &'a Block<'a>,
1551                                pat: Gc<ast::Pat>)
1552                                -> &'a Block<'a> {
1553         // create dummy memory for the variables if we have no
1554         // value to store into them immediately
1555         let tcx = bcx.tcx();
1556         pat_bindings(&tcx.def_map, &*pat, |_, p_id, _, path1| {
1557                 let scope = cleanup::var_scope(tcx, p_id);
1558                 bcx = mk_binding_alloca(
1559                     bcx, p_id, &path1.node, BindLocal, scope, (),
1560                     |(), bcx, llval, ty| { zero_mem(bcx, llval, ty); bcx });
1561             });
1562         bcx
1563     }
1564 }
1565
1566 pub fn store_arg<'a>(mut bcx: &'a Block<'a>,
1567                      pat: Gc<ast::Pat>,
1568                      arg: Datum<Rvalue>,
1569                      arg_scope: cleanup::ScopeId)
1570                      -> &'a Block<'a> {
1571     /*!
1572      * Generates code for argument patterns like `fn foo(<pat>: T)`.
1573      * Creates entries in the `llargs` map for each of the bindings
1574      * in `pat`.
1575      *
1576      * # Arguments
1577      *
1578      * - `pat` is the argument pattern
1579      * - `llval` is a pointer to the argument value (in other words,
1580      *   if the argument type is `T`, then `llval` is a `T*`). In some
1581      *   cases, this code may zero out the memory `llval` points at.
1582      */
1583
1584     let _icx = push_ctxt("match::store_arg");
1585
1586     match simple_identifier(&*pat) {
1587         Some(ident) => {
1588             // Generate nicer LLVM for the common case of fn a pattern
1589             // like `x: T`
1590             let arg_ty = node_id_type(bcx, pat.id);
1591             if type_of::arg_is_indirect(bcx.ccx(), arg_ty)
1592                 && bcx.sess().opts.debuginfo != FullDebugInfo {
1593                 // Don't copy an indirect argument to an alloca, the caller
1594                 // already put it in a temporary alloca and gave it up, unless
1595                 // we emit extra-debug-info, which requires local allocas :(.
1596                 let arg_val = arg.add_clean(bcx.fcx, arg_scope);
1597                 bcx.fcx.llargs.borrow_mut()
1598                    .insert(pat.id, Datum::new(arg_val, arg_ty, Lvalue));
1599                 bcx
1600             } else {
1601                 mk_binding_alloca(
1602                     bcx, pat.id, ident, BindArgument, arg_scope, arg,
1603                     |arg, bcx, llval, _| arg.store_to(bcx, llval))
1604             }
1605         }
1606
1607         None => {
1608             // General path. Copy out the values that are used in the
1609             // pattern.
1610             let arg = unpack_datum!(
1611                 bcx, arg.to_lvalue_datum_in_scope(bcx, "__arg", arg_scope));
1612             bind_irrefutable_pat(bcx, pat, arg.val,
1613                                  BindArgument, arg_scope)
1614         }
1615     }
1616 }
1617
1618 fn mk_binding_alloca<'a,A>(bcx: &'a Block<'a>,
1619                            p_id: ast::NodeId,
1620                            ident: &ast::Ident,
1621                            binding_mode: IrrefutablePatternBindingMode,
1622                            cleanup_scope: cleanup::ScopeId,
1623                            arg: A,
1624                            populate: |A, &'a Block<'a>, ValueRef, ty::t| -> &'a Block<'a>)
1625                          -> &'a Block<'a> {
1626     let var_ty = node_id_type(bcx, p_id);
1627
1628     // Allocate memory on stack for the binding.
1629     let llval = alloc_ty(bcx, var_ty, bcx.ident(*ident).as_slice());
1630
1631     // Subtle: be sure that we *populate* the memory *before*
1632     // we schedule the cleanup.
1633     let bcx = populate(arg, bcx, llval, var_ty);
1634     bcx.fcx.schedule_drop_mem(cleanup_scope, llval, var_ty);
1635
1636     // Now that memory is initialized and has cleanup scheduled,
1637     // create the datum and insert into the local variable map.
1638     let datum = Datum::new(llval, var_ty, Lvalue);
1639     let mut llmap = match binding_mode {
1640         BindLocal => bcx.fcx.lllocals.borrow_mut(),
1641         BindArgument => bcx.fcx.llargs.borrow_mut()
1642     };
1643     llmap.insert(p_id, datum);
1644     bcx
1645 }
1646
1647 fn bind_irrefutable_pat<'a>(
1648                         bcx: &'a Block<'a>,
1649                         pat: Gc<ast::Pat>,
1650                         val: ValueRef,
1651                         binding_mode: IrrefutablePatternBindingMode,
1652                         cleanup_scope: cleanup::ScopeId)
1653                         -> &'a Block<'a> {
1654     /*!
1655      * A simple version of the pattern matching code that only handles
1656      * irrefutable patterns. This is used in let/argument patterns,
1657      * not in match statements. Unifying this code with the code above
1658      * sounds nice, but in practice it produces very inefficient code,
1659      * since the match code is so much more general. In most cases,
1660      * LLVM is able to optimize the code, but it causes longer compile
1661      * times and makes the generated code nigh impossible to read.
1662      *
1663      * # Arguments
1664      * - bcx: starting basic block context
1665      * - pat: the irrefutable pattern being matched.
1666      * - val: the value being matched -- must be an lvalue (by ref, with cleanup)
1667      * - binding_mode: is this for an argument or a local variable?
1668      */
1669
1670     debug!("bind_irrefutable_pat(bcx={}, pat={}, binding_mode={:?})",
1671            bcx.to_str(),
1672            pat.repr(bcx.tcx()),
1673            binding_mode);
1674
1675     if bcx.sess().asm_comments() {
1676         add_comment(bcx, format!("bind_irrefutable_pat(pat={})",
1677                                  pat.repr(bcx.tcx())).as_slice());
1678     }
1679
1680     let _indenter = indenter();
1681
1682     let _icx = push_ctxt("match::bind_irrefutable_pat");
1683     let mut bcx = bcx;
1684     let tcx = bcx.tcx();
1685     let ccx = bcx.ccx();
1686     match pat.node {
1687         ast::PatIdent(pat_binding_mode, ref path1, inner) => {
1688             if pat_is_binding(&tcx.def_map, &*pat) {
1689                 // Allocate the stack slot where the value of this
1690                 // binding will live and place it into the appropriate
1691                 // map.
1692                 bcx = mk_binding_alloca(
1693                     bcx, pat.id, &path1.node, binding_mode, cleanup_scope, (),
1694                     |(), bcx, llval, ty| {
1695                         match pat_binding_mode {
1696                             ast::BindByValue(_) => {
1697                                 // By value binding: move the value that `val`
1698                                 // points at into the binding's stack slot.
1699                                 let d = Datum::new(val, ty, Lvalue);
1700                                 d.store_to(bcx, llval)
1701                             }
1702
1703                             ast::BindByRef(_) => {
1704                                 // By ref binding: the value of the variable
1705                                 // is the pointer `val` itself.
1706                                 Store(bcx, val, llval);
1707                                 bcx
1708                             }
1709                         }
1710                     });
1711             }
1712
1713             for &inner_pat in inner.iter() {
1714                 bcx = bind_irrefutable_pat(bcx, inner_pat, val,
1715                                            binding_mode, cleanup_scope);
1716             }
1717         }
1718         ast::PatEnum(_, ref sub_pats) => {
1719             let opt_def = bcx.tcx().def_map.borrow().find_copy(&pat.id);
1720             match opt_def {
1721                 Some(def::DefVariant(enum_id, var_id, _)) => {
1722                     let repr = adt::represent_node(bcx, pat.id);
1723                     let vinfo = ty::enum_variant_with_id(ccx.tcx(),
1724                                                          enum_id,
1725                                                          var_id);
1726                     let args = extract_variant_args(bcx,
1727                                                     &*repr,
1728                                                     vinfo.disr_val,
1729                                                     val);
1730                     for sub_pat in sub_pats.iter() {
1731                         for (i, argval) in args.vals.iter().enumerate() {
1732                             bcx = bind_irrefutable_pat(bcx, *sub_pat.get(i),
1733                                                        *argval, binding_mode,
1734                                                        cleanup_scope);
1735                         }
1736                     }
1737                 }
1738                 Some(def::DefFn(..)) |
1739                 Some(def::DefStruct(..)) => {
1740                     match *sub_pats {
1741                         None => {
1742                             // This is a unit-like struct. Nothing to do here.
1743                         }
1744                         Some(ref elems) => {
1745                             // This is the tuple struct case.
1746                             let repr = adt::represent_node(bcx, pat.id);
1747                             for (i, elem) in elems.iter().enumerate() {
1748                                 let fldptr = adt::trans_field_ptr(bcx, &*repr,
1749                                                                   val, 0, i);
1750                                 bcx = bind_irrefutable_pat(bcx, *elem,
1751                                                            fldptr, binding_mode,
1752                                                            cleanup_scope);
1753                             }
1754                         }
1755                     }
1756                 }
1757                 Some(def::DefStatic(_, false)) => {
1758                 }
1759                 _ => {
1760                     // Nothing to do here.
1761                 }
1762             }
1763         }
1764         ast::PatStruct(_, ref fields, _) => {
1765             let tcx = bcx.tcx();
1766             let pat_ty = node_id_type(bcx, pat.id);
1767             let pat_repr = adt::represent_type(bcx.ccx(), pat_ty);
1768             expr::with_field_tys(tcx, pat_ty, Some(pat.id), |discr, field_tys| {
1769                 for f in fields.iter() {
1770                     let ix = ty::field_idx_strict(tcx, f.ident.name, field_tys);
1771                     let fldptr = adt::trans_field_ptr(bcx, &*pat_repr, val,
1772                                                       discr, ix);
1773                     bcx = bind_irrefutable_pat(bcx, f.pat, fldptr,
1774                                                binding_mode, cleanup_scope);
1775                 }
1776             })
1777         }
1778         ast::PatTup(ref elems) => {
1779             let repr = adt::represent_node(bcx, pat.id);
1780             for (i, elem) in elems.iter().enumerate() {
1781                 let fldptr = adt::trans_field_ptr(bcx, &*repr, val, 0, i);
1782                 bcx = bind_irrefutable_pat(bcx, *elem, fldptr,
1783                                            binding_mode, cleanup_scope);
1784             }
1785         }
1786         ast::PatBox(inner) => {
1787             let llbox = Load(bcx, val);
1788             bcx = bind_irrefutable_pat(bcx, inner, llbox, binding_mode, cleanup_scope);
1789         }
1790         ast::PatRegion(inner) => {
1791             let loaded_val = Load(bcx, val);
1792             bcx = bind_irrefutable_pat(bcx, inner, loaded_val, binding_mode, cleanup_scope);
1793         }
1794         ast::PatVec(ref before, ref slice, ref after) => {
1795             let extracted = extract_vec_elems(
1796                 bcx, pat.id, before.len() + 1u + after.len(),
1797                 slice.map(|_| before.len()), val
1798             );
1799             bcx = before
1800                 .iter().map(|v| Some(*v))
1801                 .chain(Some(*slice).move_iter())
1802                 .chain(after.iter().map(|v| Some(*v)))
1803                 .zip(extracted.vals.iter())
1804                 .fold(bcx, |bcx, (inner, elem)| {
1805                     inner.map_or(bcx, |inner| {
1806                         bind_irrefutable_pat(bcx, inner, *elem, binding_mode, cleanup_scope)
1807                     })
1808                 });
1809         }
1810         ast::PatMac(..) => {
1811             bcx.sess().span_bug(pat.span, "unexpanded macro");
1812         }
1813         ast::PatWild | ast::PatWildMulti | ast::PatLit(_) | ast::PatRange(_, _) => ()
1814     }
1815     return bcx;
1816 }