]> git.lizzy.rs Git - rust.git/blob - src/librustc_front/lowering.rs
aab987b07e6be1c0339a67b89959b323a6060518
[rust.git] / src / librustc_front / lowering.rs
1 // Copyright 2015 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 // Lowers the AST to the HIR.
12 //
13 // Since the AST and HIR are fairly similar, this is mostly a simple procedure,
14 // much like a fold. Where lowering involves a bit more work things get more
15 // interesting and there are some invariants you should know about. These mostly
16 // concern spans and ids.
17 //
18 // Spans are assigned to AST nodes during parsing and then are modified during
19 // expansion to indicate the origin of a node and the process it went through
20 // being expanded. Ids are assigned to AST nodes just before lowering.
21 //
22 // For the simpler lowering steps, ids and spans should be preserved. Unlike
23 // expansion we do not preserve the process of lowering in the spans, so spans
24 // should not be modified here. When creating a new node (as opposed to
25 // 'folding' an existing one), then you create a new id using `next_id()`.
26 //
27 // You must ensure that ids are unique. That means that you should only use the
28 // id from an AST node in a single HIR node (you can assume that AST node ids
29 // are unique). Every new node must have a unique id. Avoid cloning HIR nodes.
30 // If you do, you must then set the new node's id to a fresh one.
31 //
32 // Lowering must be reproducable (the compiler only lowers once, but tools and
33 // custom lints may lower an AST node to a HIR node to interact with the
34 // compiler). The most interesting bit of this is ids - if you lower an AST node
35 // and create new HIR nodes with fresh ids, when re-lowering the same node, you
36 // must ensure you get the same ids! To do this, we keep track of the next id
37 // when we translate a node which requires new ids. By checking this cache and
38 // using node ids starting with the cached id, we ensure ids are reproducible.
39 // To use this system, you just need to hold on to a CachedIdSetter object
40 // whilst lowering. This is an RAII object that takes care of setting and
41 // restoring the cached id, etc.
42 //
43 // This whole system relies on node ids being incremented one at a time and
44 // all increments being for lowering. This means that you should not call any
45 // non-lowering function which will use new node ids.
46 //
47 // We must also cache gensym'ed Idents to ensure that we get the same Ident
48 // every time we lower a node with gensym'ed names. One consequence of this is
49 // that you can only gensym a name once in a lowering (you don't need to worry
50 // about nested lowering though). That's because we cache based on the name and
51 // the currently cached node id, which is unique per lowered node.
52 //
53 // Spans are used for error messages and for tools to map semantics back to
54 // source code. It is therefore not as important with spans as ids to be strict
55 // about use (you can't break the compiler by screwing up a span). Obviously, a
56 // HIR node can only have a single span. But multiple nodes can have the same
57 // span and spans don't need to be kept in order, etc. Where code is preserved
58 // by lowering, it should have the same span as in the AST. Where HIR nodes are
59 // new it is probably best to give a span for the whole AST node being lowered.
60 // All nodes should have real spans, don't use dummy spans. Tools are likely to
61 // get confused if the spans from leaf AST nodes occur in multiple places
62 // in the HIR, especially for multiple identifiers.
63
64 use hir;
65
66 use std::collections::BTreeMap;
67 use std::collections::HashMap;
68 use syntax::ast::*;
69 use syntax::attr::{ThinAttributes, ThinAttributesExt};
70 use syntax::ext::mtwt;
71 use syntax::ptr::P;
72 use syntax::codemap::{respan, Spanned, Span};
73 use syntax::parse::token;
74 use syntax::std_inject;
75 use syntax::visit::{self, Visitor};
76
77 use std::cell::{Cell, RefCell};
78
79 pub struct LoweringContext<'a> {
80     crate_root: Option<&'static str>,
81     // Map AST ids to ids used for expanded nodes.
82     id_cache: RefCell<HashMap<NodeId, NodeId>>,
83     // Use if there are no cached ids for the current node.
84     id_assigner: &'a NodeIdAssigner,
85     // 0 == no cached id. Must be incremented to align with previous id
86     // incrementing.
87     cached_id: Cell<u32>,
88     // Keep track of gensym'ed idents.
89     gensym_cache: RefCell<HashMap<(NodeId, &'static str), hir::Ident>>,
90     // A copy of cached_id, but is also set to an id while a node is lowered for
91     // the first time.
92     gensym_key: Cell<u32>,
93 }
94
95 impl<'a, 'hir> LoweringContext<'a> {
96     pub fn new(id_assigner: &'a NodeIdAssigner, c: Option<&Crate>) -> LoweringContext<'a> {
97         let crate_root = c.and_then(|c| {
98             if std_inject::no_core(c) {
99                 None
100             } else if std_inject::no_std(c) {
101                 Some("core")
102             } else {
103                 Some("std")
104             }
105         });
106
107         LoweringContext {
108             crate_root: crate_root,
109             id_cache: RefCell::new(HashMap::new()),
110             id_assigner: id_assigner,
111             cached_id: Cell::new(0),
112             gensym_cache: RefCell::new(HashMap::new()),
113             gensym_key: Cell::new(0),
114         }
115     }
116
117     fn next_id(&self) -> NodeId {
118         let cached_id = self.cached_id.get();
119         if cached_id == 0 {
120             return self.id_assigner.next_node_id();
121         }
122
123         self.cached_id.set(cached_id + 1);
124         cached_id
125     }
126
127     fn str_to_ident(&self, s: &'static str) -> hir::Ident {
128         let gensym_key = self.gensym_key.get();
129         if gensym_key == 0 {
130             return hir::Ident::from_name(token::gensym(s));
131         }
132
133         let cached = self.gensym_cache.borrow().contains_key(&(gensym_key, s));
134         if cached {
135             self.gensym_cache.borrow()[&(gensym_key, s)]
136         } else {
137             let result = hir::Ident::from_name(token::gensym(s));
138             self.gensym_cache.borrow_mut().insert((gensym_key, s), result);
139             result
140         }
141     }
142 }
143
144 // Utility fn for setting and unsetting the cached id.
145 fn cache_ids<'a, OP, R>(lctx: &LoweringContext, expr_id: NodeId, op: OP) -> R
146     where OP: FnOnce(&LoweringContext) -> R
147 {
148     // Only reset the id if it was previously 0, i.e., was not cached.
149     // If it was cached, we are in a nested node, but our id count will
150     // still count towards the parent's count.
151     let reset_cached_id = lctx.cached_id.get() == 0;
152     // We always reset gensym_key so that if we use the same name in a nested
153     // node and after that node, they get different values.
154     let old_gensym_key = lctx.gensym_key.get();
155
156     {
157         let id_cache: &mut HashMap<_, _> = &mut lctx.id_cache.borrow_mut();
158
159         if id_cache.contains_key(&expr_id) {
160             let cached_id = lctx.cached_id.get();
161             if cached_id == 0 {
162                 // We're entering a node where we need to track ids, but are not
163                 // yet tracking.
164                 lctx.cached_id.set(id_cache[&expr_id]);
165             } else {
166                 // We're already tracking - check that the tracked id is the same
167                 // as the expected id.
168                 assert!(cached_id == id_cache[&expr_id], "id mismatch");
169             }
170             lctx.gensym_key.set(id_cache[&expr_id]);
171         } else {
172             // We've never lowered this node before, remember it for next time.
173             let next_id = lctx.id_assigner.peek_node_id();
174             id_cache.insert(expr_id, next_id);
175             lctx.gensym_key.set(next_id);
176             // self.cached_id is not set when we lower a node for the first time,
177             // only on re-lowering.
178         }
179     }
180
181     let result = op(lctx);
182
183     if reset_cached_id {
184         lctx.cached_id.set(0);
185     }
186     lctx.gensym_key.set(old_gensym_key);
187
188     result
189 }
190
191 pub fn lower_ident(_lctx: &LoweringContext, ident: Ident) -> hir::Ident {
192     hir::Ident {
193         name: mtwt::resolve(ident),
194         unhygienic_name: ident.name,
195     }
196 }
197
198 pub fn lower_attrs(_lctx: &LoweringContext, attrs: &Vec<Attribute>) -> hir::HirVec<Attribute> {
199     attrs.clone().into()
200 }
201
202 pub fn lower_view_path(lctx: &LoweringContext, view_path: &ViewPath) -> P<hir::ViewPath> {
203     P(Spanned {
204         node: match view_path.node {
205             ViewPathSimple(ident, ref path) => {
206                 hir::ViewPathSimple(ident.name, lower_path(lctx, path))
207             }
208             ViewPathGlob(ref path) => {
209                 hir::ViewPathGlob(lower_path(lctx, path))
210             }
211             ViewPathList(ref path, ref path_list_idents) => {
212                 hir::ViewPathList(lower_path(lctx, path),
213                                   path_list_idents.iter()
214                                                   .map(lower_path_list_item)
215                                                   .collect())
216             }
217         },
218         span: view_path.span,
219     })
220 }
221
222 fn lower_path_list_item(path_list_ident: &PathListItem) -> hir::PathListItem {
223     Spanned {
224         node: match path_list_ident.node {
225             PathListItemKind::Ident { id, name, rename } => hir::PathListIdent {
226                 id: id,
227                 name: name.name,
228                 rename: rename.map(|x| x.name),
229             },
230             PathListItemKind::Mod { id, rename } => hir::PathListMod {
231                 id: id,
232                 rename: rename.map(|x| x.name),
233             },
234         },
235         span: path_list_ident.span,
236     }
237 }
238
239 pub fn lower_arm(lctx: &LoweringContext, arm: &Arm) -> hir::Arm {
240     hir::Arm {
241         attrs: lower_attrs(lctx, &arm.attrs),
242         pats: arm.pats.iter().map(|x| lower_pat(lctx, x)).collect(),
243         guard: arm.guard.as_ref().map(|ref x| lower_expr(lctx, x)),
244         body: lower_expr(lctx, &arm.body),
245     }
246 }
247
248 pub fn lower_decl(lctx: &LoweringContext, d: &Decl) -> P<hir::Decl> {
249     match d.node {
250         DeclKind::Local(ref l) => P(Spanned {
251             node: hir::DeclLocal(lower_local(lctx, l)),
252             span: d.span,
253         }),
254         DeclKind::Item(ref it) => P(Spanned {
255             node: hir::DeclItem(lower_item_id(lctx, it)),
256             span: d.span,
257         }),
258     }
259 }
260
261 pub fn lower_ty_binding(lctx: &LoweringContext, b: &TypeBinding) -> hir::TypeBinding {
262     hir::TypeBinding {
263         id: b.id,
264         name: b.ident.name,
265         ty: lower_ty(lctx, &b.ty),
266         span: b.span,
267     }
268 }
269
270 pub fn lower_ty(lctx: &LoweringContext, t: &Ty) -> P<hir::Ty> {
271     use syntax::ast::TyKind::*;
272     P(hir::Ty {
273         id: t.id,
274         node: match t.node {
275             Infer => hir::TyInfer,
276             Vec(ref ty) => hir::TyVec(lower_ty(lctx, ty)),
277             Ptr(ref mt) => hir::TyPtr(lower_mt(lctx, mt)),
278             Rptr(ref region, ref mt) => {
279                 hir::TyRptr(lower_opt_lifetime(lctx, region), lower_mt(lctx, mt))
280             }
281             BareFn(ref f) => {
282                 hir::TyBareFn(P(hir::BareFnTy {
283                     lifetimes: lower_lifetime_defs(lctx, &f.lifetimes),
284                     unsafety: lower_unsafety(lctx, f.unsafety),
285                     abi: f.abi,
286                     decl: lower_fn_decl(lctx, &f.decl),
287                 }))
288             }
289             Tup(ref tys) => hir::TyTup(tys.iter().map(|ty| lower_ty(lctx, ty)).collect()),
290             Paren(ref ty) => {
291                 return lower_ty(lctx, ty);
292             }
293             Path(ref qself, ref path) => {
294                 let qself = qself.as_ref().map(|&QSelf { ref ty, position }| {
295                     hir::QSelf {
296                         ty: lower_ty(lctx, ty),
297                         position: position,
298                     }
299                 });
300                 hir::TyPath(qself, lower_path(lctx, path))
301             }
302             ObjectSum(ref ty, ref bounds) => {
303                 hir::TyObjectSum(lower_ty(lctx, ty), lower_bounds(lctx, bounds))
304             }
305             FixedLengthVec(ref ty, ref e) => {
306                 hir::TyFixedLengthVec(lower_ty(lctx, ty), lower_expr(lctx, e))
307             }
308             Typeof(ref expr) => {
309                 hir::TyTypeof(lower_expr(lctx, expr))
310             }
311             PolyTraitRef(ref bounds) => {
312                 hir::TyPolyTraitRef(bounds.iter().map(|b| lower_ty_param_bound(lctx, b)).collect())
313             }
314             Mac(_) => panic!("TyMac should have been expanded by now."),
315         },
316         span: t.span,
317     })
318 }
319
320 pub fn lower_foreign_mod(lctx: &LoweringContext, fm: &ForeignMod) -> hir::ForeignMod {
321     hir::ForeignMod {
322         abi: fm.abi,
323         items: fm.items.iter().map(|x| lower_foreign_item(lctx, x)).collect(),
324     }
325 }
326
327 pub fn lower_variant(lctx: &LoweringContext, v: &Variant) -> hir::Variant {
328     Spanned {
329         node: hir::Variant_ {
330             name: v.node.name.name,
331             attrs: lower_attrs(lctx, &v.node.attrs),
332             data: lower_variant_data(lctx, &v.node.data),
333             disr_expr: v.node.disr_expr.as_ref().map(|e| lower_expr(lctx, e)),
334         },
335         span: v.span,
336     }
337 }
338
339 // Path segments are usually unhygienic, hygienic path segments can occur only in
340 // identifier-like paths originating from `ExprPath`.
341 // Make life simpler for rustc_resolve by renaming only such segments.
342 pub fn lower_path_full(lctx: &LoweringContext, p: &Path, maybe_hygienic: bool) -> hir::Path {
343     let maybe_hygienic = maybe_hygienic && !p.global && p.segments.len() == 1;
344     hir::Path {
345         global: p.global,
346         segments: p.segments
347                    .iter()
348                    .map(|&PathSegment { identifier, ref parameters }| {
349                        hir::PathSegment {
350                            identifier: if maybe_hygienic {
351                                lower_ident(lctx, identifier)
352                            } else {
353                                hir::Ident::from_name(identifier.name)
354                            },
355                            parameters: lower_path_parameters(lctx, parameters),
356                        }
357                    })
358                    .collect(),
359         span: p.span,
360     }
361 }
362
363 pub fn lower_path(lctx: &LoweringContext, p: &Path) -> hir::Path {
364     lower_path_full(lctx, p, false)
365 }
366
367 pub fn lower_path_parameters(lctx: &LoweringContext,
368                              path_parameters: &PathParameters)
369                              -> hir::PathParameters {
370     match *path_parameters {
371         PathParameters::AngleBracketed(ref data) =>
372             hir::AngleBracketedParameters(lower_angle_bracketed_parameter_data(lctx, data)),
373         PathParameters::Parenthesized(ref data) =>
374             hir::ParenthesizedParameters(lower_parenthesized_parameter_data(lctx, data)),
375     }
376 }
377
378 pub fn lower_angle_bracketed_parameter_data(lctx: &LoweringContext,
379                                             data: &AngleBracketedParameterData)
380                                             -> hir::AngleBracketedParameterData {
381     let &AngleBracketedParameterData { ref lifetimes, ref types, ref bindings } = data;
382     hir::AngleBracketedParameterData {
383         lifetimes: lower_lifetimes(lctx, lifetimes),
384         types: types.iter().map(|ty| lower_ty(lctx, ty)).collect(),
385         bindings: bindings.iter().map(|b| lower_ty_binding(lctx, b)).collect(),
386     }
387 }
388
389 pub fn lower_parenthesized_parameter_data(lctx: &LoweringContext,
390                                           data: &ParenthesizedParameterData)
391                                           -> hir::ParenthesizedParameterData {
392     let &ParenthesizedParameterData { ref inputs, ref output, span } = data;
393     hir::ParenthesizedParameterData {
394         inputs: inputs.iter().map(|ty| lower_ty(lctx, ty)).collect(),
395         output: output.as_ref().map(|ty| lower_ty(lctx, ty)),
396         span: span,
397     }
398 }
399
400 pub fn lower_local(lctx: &LoweringContext, l: &Local) -> P<hir::Local> {
401     P(hir::Local {
402         id: l.id,
403         ty: l.ty.as_ref().map(|t| lower_ty(lctx, t)),
404         pat: lower_pat(lctx, &l.pat),
405         init: l.init.as_ref().map(|e| lower_expr(lctx, e)),
406         span: l.span,
407         attrs: l.attrs.clone(),
408     })
409 }
410
411 pub fn lower_explicit_self_underscore(lctx: &LoweringContext,
412                                       es: &SelfKind)
413                                       -> hir::ExplicitSelf_ {
414     match *es {
415         SelfKind::Static => hir::SelfStatic,
416         SelfKind::Value(v) => hir::SelfValue(v.name),
417         SelfKind::Region(ref lifetime, m, ident) => {
418             hir::SelfRegion(lower_opt_lifetime(lctx, lifetime),
419                             lower_mutability(lctx, m),
420                             ident.name)
421         }
422         SelfKind::Explicit(ref typ, ident) => {
423             hir::SelfExplicit(lower_ty(lctx, typ), ident.name)
424         }
425     }
426 }
427
428 pub fn lower_mutability(_lctx: &LoweringContext, m: Mutability) -> hir::Mutability {
429     match m {
430         Mutability::Mutable => hir::MutMutable,
431         Mutability::Immutable => hir::MutImmutable,
432     }
433 }
434
435 pub fn lower_explicit_self(lctx: &LoweringContext, s: &ExplicitSelf) -> hir::ExplicitSelf {
436     Spanned {
437         node: lower_explicit_self_underscore(lctx, &s.node),
438         span: s.span,
439     }
440 }
441
442 pub fn lower_arg(lctx: &LoweringContext, arg: &Arg) -> hir::Arg {
443     hir::Arg {
444         id: arg.id,
445         pat: lower_pat(lctx, &arg.pat),
446         ty: lower_ty(lctx, &arg.ty),
447     }
448 }
449
450 pub fn lower_fn_decl(lctx: &LoweringContext, decl: &FnDecl) -> P<hir::FnDecl> {
451     P(hir::FnDecl {
452         inputs: decl.inputs.iter().map(|x| lower_arg(lctx, x)).collect(),
453         output: match decl.output {
454             FunctionRetTy::Ty(ref ty) => hir::Return(lower_ty(lctx, ty)),
455             FunctionRetTy::Default(span) => hir::DefaultReturn(span),
456             FunctionRetTy::None(span) => hir::NoReturn(span),
457         },
458         variadic: decl.variadic,
459     })
460 }
461
462 pub fn lower_ty_param_bound(lctx: &LoweringContext, tpb: &TyParamBound) -> hir::TyParamBound {
463     match *tpb {
464         TraitTyParamBound(ref ty, modifier) => {
465             hir::TraitTyParamBound(lower_poly_trait_ref(lctx, ty),
466                                    lower_trait_bound_modifier(lctx, modifier))
467         }
468         RegionTyParamBound(ref lifetime) => {
469             hir::RegionTyParamBound(lower_lifetime(lctx, lifetime))
470         }
471     }
472 }
473
474 pub fn lower_ty_param(lctx: &LoweringContext, tp: &TyParam) -> hir::TyParam {
475     hir::TyParam {
476         id: tp.id,
477         name: tp.ident.name,
478         bounds: lower_bounds(lctx, &tp.bounds),
479         default: tp.default.as_ref().map(|x| lower_ty(lctx, x)),
480         span: tp.span,
481     }
482 }
483
484 pub fn lower_ty_params(lctx: &LoweringContext,
485                        tps: &P<[TyParam]>)
486                        -> hir::HirVec<hir::TyParam> {
487     tps.iter().map(|tp| lower_ty_param(lctx, tp)).collect()
488 }
489
490 pub fn lower_lifetime(_lctx: &LoweringContext, l: &Lifetime) -> hir::Lifetime {
491     hir::Lifetime {
492         id: l.id,
493         name: l.name,
494         span: l.span,
495     }
496 }
497
498 pub fn lower_lifetime_def(lctx: &LoweringContext, l: &LifetimeDef) -> hir::LifetimeDef {
499     hir::LifetimeDef {
500         lifetime: lower_lifetime(lctx, &l.lifetime),
501         bounds: lower_lifetimes(lctx, &l.bounds),
502     }
503 }
504
505 pub fn lower_lifetimes(lctx: &LoweringContext, lts: &Vec<Lifetime>) -> hir::HirVec<hir::Lifetime> {
506     lts.iter().map(|l| lower_lifetime(lctx, l)).collect()
507 }
508
509 pub fn lower_lifetime_defs(lctx: &LoweringContext,
510                            lts: &Vec<LifetimeDef>)
511                            -> hir::HirVec<hir::LifetimeDef> {
512     lts.iter().map(|l| lower_lifetime_def(lctx, l)).collect()
513 }
514
515 pub fn lower_opt_lifetime(lctx: &LoweringContext,
516                           o_lt: &Option<Lifetime>)
517                           -> Option<hir::Lifetime> {
518     o_lt.as_ref().map(|lt| lower_lifetime(lctx, lt))
519 }
520
521 pub fn lower_generics(lctx: &LoweringContext, g: &Generics) -> hir::Generics {
522     hir::Generics {
523         ty_params: lower_ty_params(lctx, &g.ty_params),
524         lifetimes: lower_lifetime_defs(lctx, &g.lifetimes),
525         where_clause: lower_where_clause(lctx, &g.where_clause),
526     }
527 }
528
529 pub fn lower_where_clause(lctx: &LoweringContext, wc: &WhereClause) -> hir::WhereClause {
530     hir::WhereClause {
531         id: wc.id,
532         predicates: wc.predicates
533                       .iter()
534                       .map(|predicate| lower_where_predicate(lctx, predicate))
535                       .collect(),
536     }
537 }
538
539 pub fn lower_where_predicate(lctx: &LoweringContext,
540                              pred: &WherePredicate)
541                              -> hir::WherePredicate {
542     match *pred {
543         WherePredicate::BoundPredicate(WhereBoundPredicate{ ref bound_lifetimes,
544                                                             ref bounded_ty,
545                                                             ref bounds,
546                                                             span}) => {
547             hir::WherePredicate::BoundPredicate(hir::WhereBoundPredicate {
548                 bound_lifetimes: lower_lifetime_defs(lctx, bound_lifetimes),
549                 bounded_ty: lower_ty(lctx, bounded_ty),
550                 bounds: bounds.iter().map(|x| lower_ty_param_bound(lctx, x)).collect(),
551                 span: span,
552             })
553         }
554         WherePredicate::RegionPredicate(WhereRegionPredicate{ ref lifetime,
555                                                               ref bounds,
556                                                               span}) => {
557             hir::WherePredicate::RegionPredicate(hir::WhereRegionPredicate {
558                 span: span,
559                 lifetime: lower_lifetime(lctx, lifetime),
560                 bounds: bounds.iter().map(|bound| lower_lifetime(lctx, bound)).collect(),
561             })
562         }
563         WherePredicate::EqPredicate(WhereEqPredicate{ id,
564                                                       ref path,
565                                                       ref ty,
566                                                       span}) => {
567             hir::WherePredicate::EqPredicate(hir::WhereEqPredicate {
568                 id: id,
569                 path: lower_path(lctx, path),
570                 ty: lower_ty(lctx, ty),
571                 span: span,
572             })
573         }
574     }
575 }
576
577 pub fn lower_variant_data(lctx: &LoweringContext, vdata: &VariantData) -> hir::VariantData {
578     match *vdata {
579         VariantData::Struct(ref fields, id) => {
580             hir::VariantData::Struct(fields.iter()
581                                            .map(|f| lower_struct_field(lctx, f))
582                                            .collect(),
583                                      id)
584         }
585         VariantData::Tuple(ref fields, id) => {
586             hir::VariantData::Tuple(fields.iter()
587                                           .map(|f| lower_struct_field(lctx, f))
588                                           .collect(),
589                                     id)
590         }
591         VariantData::Unit(id) => hir::VariantData::Unit(id),
592     }
593 }
594
595 pub fn lower_trait_ref(lctx: &LoweringContext, p: &TraitRef) -> hir::TraitRef {
596     hir::TraitRef {
597         path: lower_path(lctx, &p.path),
598         ref_id: p.ref_id,
599     }
600 }
601
602 pub fn lower_poly_trait_ref(lctx: &LoweringContext, p: &PolyTraitRef) -> hir::PolyTraitRef {
603     hir::PolyTraitRef {
604         bound_lifetimes: lower_lifetime_defs(lctx, &p.bound_lifetimes),
605         trait_ref: lower_trait_ref(lctx, &p.trait_ref),
606         span: p.span,
607     }
608 }
609
610 pub fn lower_struct_field(lctx: &LoweringContext, f: &StructField) -> hir::StructField {
611     Spanned {
612         node: hir::StructField_ {
613             id: f.node.id,
614             name: f.node.ident().map(|ident| ident.name),
615             vis: lower_visibility(lctx, f.node.kind.visibility()),
616             ty: lower_ty(lctx, &f.node.ty),
617             attrs: lower_attrs(lctx, &f.node.attrs),
618         },
619         span: f.span,
620     }
621 }
622
623 pub fn lower_field(lctx: &LoweringContext, f: &Field) -> hir::Field {
624     hir::Field {
625         name: respan(f.ident.span, f.ident.node.name),
626         expr: lower_expr(lctx, &f.expr),
627         span: f.span,
628     }
629 }
630
631 pub fn lower_mt(lctx: &LoweringContext, mt: &MutTy) -> hir::MutTy {
632     hir::MutTy {
633         ty: lower_ty(lctx, &mt.ty),
634         mutbl: lower_mutability(lctx, mt.mutbl),
635     }
636 }
637
638 pub fn lower_opt_bounds(lctx: &LoweringContext,
639                         b: &Option<TyParamBounds>)
640                         -> Option<hir::TyParamBounds> {
641     b.as_ref().map(|ref bounds| lower_bounds(lctx, bounds))
642 }
643
644 fn lower_bounds(lctx: &LoweringContext, bounds: &TyParamBounds) -> hir::TyParamBounds {
645     bounds.iter().map(|bound| lower_ty_param_bound(lctx, bound)).collect()
646 }
647
648 pub fn lower_block(lctx: &LoweringContext, b: &Block) -> P<hir::Block> {
649     P(hir::Block {
650         id: b.id,
651         stmts: b.stmts.iter().map(|s| lower_stmt(lctx, s)).collect(),
652         expr: b.expr.as_ref().map(|ref x| lower_expr(lctx, x)),
653         rules: lower_block_check_mode(lctx, &b.rules),
654         span: b.span,
655     })
656 }
657
658 pub fn lower_item_kind(lctx: &LoweringContext, i: &ItemKind) -> hir::Item_ {
659     match *i {
660         ItemKind::ExternCrate(string) => hir::ItemExternCrate(string),
661         ItemKind::Use(ref view_path) => {
662             hir::ItemUse(lower_view_path(lctx, view_path))
663         }
664         ItemKind::Static(ref t, m, ref e) => {
665             hir::ItemStatic(lower_ty(lctx, t),
666                             lower_mutability(lctx, m),
667                             lower_expr(lctx, e))
668         }
669         ItemKind::Const(ref t, ref e) => {
670             hir::ItemConst(lower_ty(lctx, t), lower_expr(lctx, e))
671         }
672         ItemKind::Fn(ref decl, unsafety, constness, abi, ref generics, ref body) => {
673             hir::ItemFn(lower_fn_decl(lctx, decl),
674                         lower_unsafety(lctx, unsafety),
675                         lower_constness(lctx, constness),
676                         abi,
677                         lower_generics(lctx, generics),
678                         lower_block(lctx, body))
679         }
680         ItemKind::Mod(ref m) => hir::ItemMod(lower_mod(lctx, m)),
681         ItemKind::ForeignMod(ref nm) => hir::ItemForeignMod(lower_foreign_mod(lctx, nm)),
682         ItemKind::Ty(ref t, ref generics) => {
683             hir::ItemTy(lower_ty(lctx, t), lower_generics(lctx, generics))
684         }
685         ItemKind::Enum(ref enum_definition, ref generics) => {
686             hir::ItemEnum(hir::EnumDef {
687                               variants: enum_definition.variants
688                                                        .iter()
689                                                        .map(|x| lower_variant(lctx, x))
690                                                        .collect(),
691                           },
692                           lower_generics(lctx, generics))
693         }
694         ItemKind::Struct(ref struct_def, ref generics) => {
695             let struct_def = lower_variant_data(lctx, struct_def);
696             hir::ItemStruct(struct_def, lower_generics(lctx, generics))
697         }
698         ItemKind::DefaultImpl(unsafety, ref trait_ref) => {
699             hir::ItemDefaultImpl(lower_unsafety(lctx, unsafety),
700                                  lower_trait_ref(lctx, trait_ref))
701         }
702         ItemKind::Impl(unsafety, polarity, ref generics, ref ifce, ref ty, ref impl_items) => {
703             let new_impl_items = impl_items.iter()
704                                            .map(|item| lower_impl_item(lctx, item))
705                                            .collect();
706             let ifce = ifce.as_ref().map(|trait_ref| lower_trait_ref(lctx, trait_ref));
707             hir::ItemImpl(lower_unsafety(lctx, unsafety),
708                           lower_impl_polarity(lctx, polarity),
709                           lower_generics(lctx, generics),
710                           ifce,
711                           lower_ty(lctx, ty),
712                           new_impl_items)
713         }
714         ItemKind::Trait(unsafety, ref generics, ref bounds, ref items) => {
715             let bounds = lower_bounds(lctx, bounds);
716             let items = items.iter().map(|item| lower_trait_item(lctx, item)).collect();
717             hir::ItemTrait(lower_unsafety(lctx, unsafety),
718                            lower_generics(lctx, generics),
719                            bounds,
720                            items)
721         }
722         ItemKind::Mac(_) => panic!("Shouldn't still be around"),
723     }
724 }
725
726 pub fn lower_trait_item(lctx: &LoweringContext, i: &TraitItem) -> hir::TraitItem {
727     hir::TraitItem {
728         id: i.id,
729         name: i.ident.name,
730         attrs: lower_attrs(lctx, &i.attrs),
731         node: match i.node {
732             TraitItemKind::Const(ref ty, ref default) => {
733                 hir::ConstTraitItem(lower_ty(lctx, ty),
734                                     default.as_ref().map(|x| lower_expr(lctx, x)))
735             }
736             TraitItemKind::Method(ref sig, ref body) => {
737                 hir::MethodTraitItem(lower_method_sig(lctx, sig),
738                                      body.as_ref().map(|x| lower_block(lctx, x)))
739             }
740             TraitItemKind::Type(ref bounds, ref default) => {
741                 hir::TypeTraitItem(lower_bounds(lctx, bounds),
742                                    default.as_ref().map(|x| lower_ty(lctx, x)))
743             }
744         },
745         span: i.span,
746     }
747 }
748
749 pub fn lower_impl_item(lctx: &LoweringContext, i: &ImplItem) -> hir::ImplItem {
750     hir::ImplItem {
751         id: i.id,
752         name: i.ident.name,
753         attrs: lower_attrs(lctx, &i.attrs),
754         vis: lower_visibility(lctx, i.vis),
755         node: match i.node {
756             ImplItemKind::Const(ref ty, ref expr) => {
757                 hir::ImplItemKind::Const(lower_ty(lctx, ty), lower_expr(lctx, expr))
758             }
759             ImplItemKind::Method(ref sig, ref body) => {
760                 hir::ImplItemKind::Method(lower_method_sig(lctx, sig), lower_block(lctx, body))
761             }
762             ImplItemKind::Type(ref ty) => hir::ImplItemKind::Type(lower_ty(lctx, ty)),
763             ImplItemKind::Macro(..) => panic!("Shouldn't exist any more"),
764         },
765         span: i.span,
766     }
767 }
768
769 pub fn lower_mod(lctx: &LoweringContext, m: &Mod) -> hir::Mod {
770     hir::Mod {
771         inner: m.inner,
772         item_ids: m.items.iter().map(|x| lower_item_id(lctx, x)).collect(),
773     }
774 }
775
776 struct ItemLowerer<'lcx, 'interner: 'lcx> {
777     items: BTreeMap<NodeId, hir::Item>,
778     lctx: &'lcx LoweringContext<'interner>,
779 }
780
781 impl<'lcx, 'interner> Visitor<'lcx> for ItemLowerer<'lcx, 'interner> {
782     fn visit_item(&mut self, item: &'lcx Item) {
783         self.items.insert(item.id, lower_item(self.lctx, item));
784         visit::walk_item(self, item);
785     }
786 }
787
788 pub fn lower_crate(lctx: &LoweringContext, c: &Crate) -> hir::Crate {
789     let items = {
790         let mut item_lowerer = ItemLowerer { items: BTreeMap::new(), lctx: lctx };
791         visit::walk_crate(&mut item_lowerer, c);
792         item_lowerer.items
793     };
794
795     hir::Crate {
796         module: lower_mod(lctx, &c.module),
797         attrs: lower_attrs(lctx, &c.attrs),
798         config: c.config.clone().into(),
799         span: c.span,
800         exported_macros: c.exported_macros.iter().map(|m| lower_macro_def(lctx, m)).collect(),
801         items: items,
802     }
803 }
804
805 pub fn lower_macro_def(lctx: &LoweringContext, m: &MacroDef) -> hir::MacroDef {
806     hir::MacroDef {
807         name: m.ident.name,
808         attrs: lower_attrs(lctx, &m.attrs),
809         id: m.id,
810         span: m.span,
811         imported_from: m.imported_from.map(|x| x.name),
812         export: m.export,
813         use_locally: m.use_locally,
814         allow_internal_unstable: m.allow_internal_unstable,
815         body: m.body.clone().into(),
816     }
817 }
818
819 pub fn lower_item_id(_lctx: &LoweringContext, i: &Item) -> hir::ItemId {
820     hir::ItemId { id: i.id }
821 }
822
823 pub fn lower_item(lctx: &LoweringContext, i: &Item) -> hir::Item {
824     let node = lower_item_kind(lctx, &i.node);
825
826     hir::Item {
827         id: i.id,
828         name: i.ident.name,
829         attrs: lower_attrs(lctx, &i.attrs),
830         node: node,
831         vis: lower_visibility(lctx, i.vis),
832         span: i.span,
833     }
834 }
835
836 pub fn lower_foreign_item(lctx: &LoweringContext, i: &ForeignItem) -> hir::ForeignItem {
837     hir::ForeignItem {
838         id: i.id,
839         name: i.ident.name,
840         attrs: lower_attrs(lctx, &i.attrs),
841         node: match i.node {
842             ForeignItemKind::Fn(ref fdec, ref generics) => {
843                 hir::ForeignItemFn(lower_fn_decl(lctx, fdec), lower_generics(lctx, generics))
844             }
845             ForeignItemKind::Static(ref t, m) => {
846                 hir::ForeignItemStatic(lower_ty(lctx, t), m)
847             }
848         },
849         vis: lower_visibility(lctx, i.vis),
850         span: i.span,
851     }
852 }
853
854 pub fn lower_method_sig(lctx: &LoweringContext, sig: &MethodSig) -> hir::MethodSig {
855     hir::MethodSig {
856         generics: lower_generics(lctx, &sig.generics),
857         abi: sig.abi,
858         explicit_self: lower_explicit_self(lctx, &sig.explicit_self),
859         unsafety: lower_unsafety(lctx, sig.unsafety),
860         constness: lower_constness(lctx, sig.constness),
861         decl: lower_fn_decl(lctx, &sig.decl),
862     }
863 }
864
865 pub fn lower_unsafety(_lctx: &LoweringContext, u: Unsafety) -> hir::Unsafety {
866     match u {
867         Unsafety::Unsafe => hir::Unsafety::Unsafe,
868         Unsafety::Normal => hir::Unsafety::Normal,
869     }
870 }
871
872 pub fn lower_constness(_lctx: &LoweringContext, c: Constness) -> hir::Constness {
873     match c {
874         Constness::Const => hir::Constness::Const,
875         Constness::NotConst => hir::Constness::NotConst,
876     }
877 }
878
879 pub fn lower_unop(_lctx: &LoweringContext, u: UnOp) -> hir::UnOp {
880     match u {
881         UnOp::Deref => hir::UnDeref,
882         UnOp::Not => hir::UnNot,
883         UnOp::Neg => hir::UnNeg,
884     }
885 }
886
887 pub fn lower_binop(_lctx: &LoweringContext, b: BinOp) -> hir::BinOp {
888     Spanned {
889         node: match b.node {
890             BinOpKind::Add => hir::BiAdd,
891             BinOpKind::Sub => hir::BiSub,
892             BinOpKind::Mul => hir::BiMul,
893             BinOpKind::Div => hir::BiDiv,
894             BinOpKind::Rem => hir::BiRem,
895             BinOpKind::And => hir::BiAnd,
896             BinOpKind::Or => hir::BiOr,
897             BinOpKind::BitXor => hir::BiBitXor,
898             BinOpKind::BitAnd => hir::BiBitAnd,
899             BinOpKind::BitOr => hir::BiBitOr,
900             BinOpKind::Shl => hir::BiShl,
901             BinOpKind::Shr => hir::BiShr,
902             BinOpKind::Eq => hir::BiEq,
903             BinOpKind::Lt => hir::BiLt,
904             BinOpKind::Le => hir::BiLe,
905             BinOpKind::Ne => hir::BiNe,
906             BinOpKind::Ge => hir::BiGe,
907             BinOpKind::Gt => hir::BiGt,
908         },
909         span: b.span,
910     }
911 }
912
913 pub fn lower_pat(lctx: &LoweringContext, p: &Pat) -> P<hir::Pat> {
914     P(hir::Pat {
915         id: p.id,
916         node: match p.node {
917             PatKind::Wild => hir::PatKind::Wild,
918             PatKind::Ident(ref binding_mode, pth1, ref sub) => {
919                 hir::PatKind::Ident(lower_binding_mode(lctx, binding_mode),
920                               respan(pth1.span, lower_ident(lctx, pth1.node)),
921                               sub.as_ref().map(|x| lower_pat(lctx, x)))
922             }
923             PatKind::Lit(ref e) => hir::PatKind::Lit(lower_expr(lctx, e)),
924             PatKind::TupleStruct(ref pth, ref pats) => {
925                 hir::PatKind::TupleStruct(lower_path(lctx, pth),
926                              pats.as_ref()
927                                  .map(|pats| pats.iter().map(|x| lower_pat(lctx, x)).collect()))
928             }
929             PatKind::Path(ref pth) => {
930                 hir::PatKind::Path(lower_path(lctx, pth))
931             }
932             PatKind::QPath(ref qself, ref pth) => {
933                 let qself = hir::QSelf {
934                     ty: lower_ty(lctx, &qself.ty),
935                     position: qself.position,
936                 };
937                 hir::PatKind::QPath(qself, lower_path(lctx, pth))
938             }
939             PatKind::Struct(ref pth, ref fields, etc) => {
940                 let pth = lower_path(lctx, pth);
941                 let fs = fields.iter()
942                                .map(|f| {
943                                    Spanned {
944                                        span: f.span,
945                                        node: hir::FieldPat {
946                                            name: f.node.ident.name,
947                                            pat: lower_pat(lctx, &f.node.pat),
948                                            is_shorthand: f.node.is_shorthand,
949                                        },
950                                    }
951                                })
952                                .collect();
953                 hir::PatKind::Struct(pth, fs, etc)
954             }
955             PatKind::Tup(ref elts) => {
956                 hir::PatKind::Tup(elts.iter().map(|x| lower_pat(lctx, x)).collect())
957             }
958             PatKind::Box(ref inner) => hir::PatKind::Box(lower_pat(lctx, inner)),
959             PatKind::Ref(ref inner, mutbl) => {
960                 hir::PatKind::Ref(lower_pat(lctx, inner), lower_mutability(lctx, mutbl))
961             }
962             PatKind::Range(ref e1, ref e2) => {
963                 hir::PatKind::Range(lower_expr(lctx, e1), lower_expr(lctx, e2))
964             }
965             PatKind::Vec(ref before, ref slice, ref after) => {
966                 hir::PatKind::Vec(before.iter().map(|x| lower_pat(lctx, x)).collect(),
967                             slice.as_ref().map(|x| lower_pat(lctx, x)),
968                             after.iter().map(|x| lower_pat(lctx, x)).collect())
969             }
970             PatKind::Mac(_) => panic!("Shouldn't exist here"),
971         },
972         span: p.span,
973     })
974 }
975
976 pub fn lower_expr(lctx: &LoweringContext, e: &Expr) -> P<hir::Expr> {
977     P(hir::Expr {
978         id: e.id,
979         node: match e.node {
980             // Issue #22181:
981             // Eventually a desugaring for `box EXPR`
982             // (similar to the desugaring above for `in PLACE BLOCK`)
983             // should go here, desugaring
984             //
985             // to:
986             //
987             // let mut place = BoxPlace::make_place();
988             // let raw_place = Place::pointer(&mut place);
989             // let value = $value;
990             // unsafe {
991             //     ::std::ptr::write(raw_place, value);
992             //     Boxed::finalize(place)
993             // }
994             //
995             // But for now there are type-inference issues doing that.
996             ExprKind::Box(ref e) => {
997                 hir::ExprBox(lower_expr(lctx, e))
998             }
999
1000             // Desugar ExprBox: `in (PLACE) EXPR`
1001             ExprKind::InPlace(ref placer, ref value_expr) => {
1002                 // to:
1003                 //
1004                 // let p = PLACE;
1005                 // let mut place = Placer::make_place(p);
1006                 // let raw_place = Place::pointer(&mut place);
1007                 // push_unsafe!({
1008                 //     std::intrinsics::move_val_init(raw_place, pop_unsafe!( EXPR ));
1009                 //     InPlace::finalize(place)
1010                 // })
1011                 return cache_ids(lctx, e.id, |lctx| {
1012                     let placer_expr = lower_expr(lctx, placer);
1013                     let value_expr = lower_expr(lctx, value_expr);
1014
1015                     let placer_ident = lctx.str_to_ident("placer");
1016                     let place_ident = lctx.str_to_ident("place");
1017                     let p_ptr_ident = lctx.str_to_ident("p_ptr");
1018
1019                     let make_place = ["ops", "Placer", "make_place"];
1020                     let place_pointer = ["ops", "Place", "pointer"];
1021                     let move_val_init = ["intrinsics", "move_val_init"];
1022                     let inplace_finalize = ["ops", "InPlace", "finalize"];
1023
1024                     let make_call = |lctx: &LoweringContext, p, args| {
1025                         let path = core_path(lctx, e.span, p);
1026                         let path = expr_path(lctx, path, None);
1027                         expr_call(lctx, e.span, path, args, None)
1028                     };
1029
1030                     let mk_stmt_let = |lctx: &LoweringContext, bind, expr| {
1031                         stmt_let(lctx, e.span, false, bind, expr, None)
1032                     };
1033
1034                     let mk_stmt_let_mut = |lctx: &LoweringContext, bind, expr| {
1035                         stmt_let(lctx, e.span, true, bind, expr, None)
1036                     };
1037
1038                     // let placer = <placer_expr> ;
1039                     let s1 = {
1040                         let placer_expr = signal_block_expr(lctx,
1041                                                             hir_vec![],
1042                                                             placer_expr,
1043                                                             e.span,
1044                                                             hir::PopUnstableBlock,
1045                                                             None);
1046                         mk_stmt_let(lctx, placer_ident, placer_expr)
1047                     };
1048
1049                     // let mut place = Placer::make_place(placer);
1050                     let s2 = {
1051                         let placer = expr_ident(lctx, e.span, placer_ident, None);
1052                         let call = make_call(lctx, &make_place, hir_vec![placer]);
1053                         mk_stmt_let_mut(lctx, place_ident, call)
1054                     };
1055
1056                     // let p_ptr = Place::pointer(&mut place);
1057                     let s3 = {
1058                         let agent = expr_ident(lctx, e.span, place_ident, None);
1059                         let args = hir_vec![expr_mut_addr_of(lctx, e.span, agent, None)];
1060                         let call = make_call(lctx, &place_pointer, args);
1061                         mk_stmt_let(lctx, p_ptr_ident, call)
1062                     };
1063
1064                     // pop_unsafe!(EXPR));
1065                     let pop_unsafe_expr = {
1066                         let value_expr = signal_block_expr(lctx,
1067                                                            hir_vec![],
1068                                                            value_expr,
1069                                                            e.span,
1070                                                            hir::PopUnstableBlock,
1071                                                            None);
1072                         signal_block_expr(lctx,
1073                                           hir_vec![],
1074                                           value_expr,
1075                                           e.span,
1076                                           hir::PopUnsafeBlock(hir::CompilerGenerated), None)
1077                     };
1078
1079                     // push_unsafe!({
1080                     //     std::intrinsics::move_val_init(raw_place, pop_unsafe!( EXPR ));
1081                     //     InPlace::finalize(place)
1082                     // })
1083                     let expr = {
1084                         let ptr = expr_ident(lctx, e.span, p_ptr_ident, None);
1085                         let call_move_val_init =
1086                             hir::StmtSemi(
1087                                 make_call(lctx, &move_val_init, hir_vec![ptr, pop_unsafe_expr]),
1088                                 lctx.next_id());
1089                         let call_move_val_init = respan(e.span, call_move_val_init);
1090
1091                         let place = expr_ident(lctx, e.span, place_ident, None);
1092                         let call = make_call(lctx, &inplace_finalize, hir_vec![place]);
1093                         signal_block_expr(lctx,
1094                                           hir_vec![call_move_val_init],
1095                                           call,
1096                                           e.span,
1097                                           hir::PushUnsafeBlock(hir::CompilerGenerated), None)
1098                     };
1099
1100                     signal_block_expr(lctx,
1101                                       hir_vec![s1, s2, s3],
1102                                       expr,
1103                                       e.span,
1104                                       hir::PushUnstableBlock,
1105                                       e.attrs.clone())
1106                 });
1107             }
1108
1109             ExprKind::Vec(ref exprs) => {
1110                 hir::ExprVec(exprs.iter().map(|x| lower_expr(lctx, x)).collect())
1111             }
1112             ExprKind::Repeat(ref expr, ref count) => {
1113                 let expr = lower_expr(lctx, expr);
1114                 let count = lower_expr(lctx, count);
1115                 hir::ExprRepeat(expr, count)
1116             }
1117             ExprKind::Tup(ref elts) => {
1118                 hir::ExprTup(elts.iter().map(|x| lower_expr(lctx, x)).collect())
1119             }
1120             ExprKind::Call(ref f, ref args) => {
1121                 let f = lower_expr(lctx, f);
1122                 hir::ExprCall(f, args.iter().map(|x| lower_expr(lctx, x)).collect())
1123             }
1124             ExprKind::MethodCall(i, ref tps, ref args) => {
1125                 let tps = tps.iter().map(|x| lower_ty(lctx, x)).collect();
1126                 let args = args.iter().map(|x| lower_expr(lctx, x)).collect();
1127                 hir::ExprMethodCall(respan(i.span, i.node.name), tps, args)
1128             }
1129             ExprKind::Binary(binop, ref lhs, ref rhs) => {
1130                 let binop = lower_binop(lctx, binop);
1131                 let lhs = lower_expr(lctx, lhs);
1132                 let rhs = lower_expr(lctx, rhs);
1133                 hir::ExprBinary(binop, lhs, rhs)
1134             }
1135             ExprKind::Unary(op, ref ohs) => {
1136                 let op = lower_unop(lctx, op);
1137                 let ohs = lower_expr(lctx, ohs);
1138                 hir::ExprUnary(op, ohs)
1139             }
1140             ExprKind::Lit(ref l) => hir::ExprLit(P((**l).clone())),
1141             ExprKind::Cast(ref expr, ref ty) => {
1142                 let expr = lower_expr(lctx, expr);
1143                 hir::ExprCast(expr, lower_ty(lctx, ty))
1144             }
1145             ExprKind::Type(ref expr, ref ty) => {
1146                 let expr = lower_expr(lctx, expr);
1147                 hir::ExprType(expr, lower_ty(lctx, ty))
1148             }
1149             ExprKind::AddrOf(m, ref ohs) => {
1150                 let m = lower_mutability(lctx, m);
1151                 let ohs = lower_expr(lctx, ohs);
1152                 hir::ExprAddrOf(m, ohs)
1153             }
1154             // More complicated than you might expect because the else branch
1155             // might be `if let`.
1156             ExprKind::If(ref cond, ref blk, ref else_opt) => {
1157                 let else_opt = else_opt.as_ref().map(|els| {
1158                     match els.node {
1159                         ExprKind::IfLet(..) => {
1160                             cache_ids(lctx, e.id, |lctx| {
1161                                 // wrap the if-let expr in a block
1162                                 let span = els.span;
1163                                 let els = lower_expr(lctx, els);
1164                                 let id = lctx.next_id();
1165                                 let blk = P(hir::Block {
1166                                     stmts: hir_vec![],
1167                                     expr: Some(els),
1168                                     id: id,
1169                                     rules: hir::DefaultBlock,
1170                                     span: span,
1171                                 });
1172                                 expr_block(lctx, blk, None)
1173                             })
1174                         }
1175                         _ => lower_expr(lctx, els),
1176                     }
1177                 });
1178
1179                 hir::ExprIf(lower_expr(lctx, cond), lower_block(lctx, blk), else_opt)
1180             }
1181             ExprKind::While(ref cond, ref body, opt_ident) => {
1182                 hir::ExprWhile(lower_expr(lctx, cond), lower_block(lctx, body),
1183                                opt_ident.map(|ident| lower_ident(lctx, ident)))
1184             }
1185             ExprKind::Loop(ref body, opt_ident) => {
1186                 hir::ExprLoop(lower_block(lctx, body),
1187                               opt_ident.map(|ident| lower_ident(lctx, ident)))
1188             }
1189             ExprKind::Match(ref expr, ref arms) => {
1190                 hir::ExprMatch(lower_expr(lctx, expr),
1191                                arms.iter().map(|x| lower_arm(lctx, x)).collect(),
1192                                hir::MatchSource::Normal)
1193             }
1194             ExprKind::Closure(capture_clause, ref decl, ref body) => {
1195                 hir::ExprClosure(lower_capture_clause(lctx, capture_clause),
1196                                  lower_fn_decl(lctx, decl),
1197                                  lower_block(lctx, body))
1198             }
1199             ExprKind::Block(ref blk) => hir::ExprBlock(lower_block(lctx, blk)),
1200             ExprKind::Assign(ref el, ref er) => {
1201                 hir::ExprAssign(lower_expr(lctx, el), lower_expr(lctx, er))
1202             }
1203             ExprKind::AssignOp(op, ref el, ref er) => {
1204                 hir::ExprAssignOp(lower_binop(lctx, op),
1205                                   lower_expr(lctx, el),
1206                                   lower_expr(lctx, er))
1207             }
1208             ExprKind::Field(ref el, ident) => {
1209                 hir::ExprField(lower_expr(lctx, el), respan(ident.span, ident.node.name))
1210             }
1211             ExprKind::TupField(ref el, ident) => {
1212                 hir::ExprTupField(lower_expr(lctx, el), ident)
1213             }
1214             ExprKind::Index(ref el, ref er) => {
1215                 hir::ExprIndex(lower_expr(lctx, el), lower_expr(lctx, er))
1216             }
1217             ExprKind::Range(ref e1, ref e2) => {
1218                 hir::ExprRange(e1.as_ref().map(|x| lower_expr(lctx, x)),
1219                                e2.as_ref().map(|x| lower_expr(lctx, x)))
1220             }
1221             ExprKind::Path(ref qself, ref path) => {
1222                 let hir_qself = qself.as_ref().map(|&QSelf { ref ty, position }| {
1223                     hir::QSelf {
1224                         ty: lower_ty(lctx, ty),
1225                         position: position,
1226                     }
1227                 });
1228                 hir::ExprPath(hir_qself, lower_path_full(lctx, path, qself.is_none()))
1229             }
1230             ExprKind::Break(opt_ident) => hir::ExprBreak(opt_ident.map(|sp_ident| {
1231                 respan(sp_ident.span, lower_ident(lctx, sp_ident.node))
1232             })),
1233             ExprKind::Again(opt_ident) => hir::ExprAgain(opt_ident.map(|sp_ident| {
1234                 respan(sp_ident.span, lower_ident(lctx, sp_ident.node))
1235             })),
1236             ExprKind::Ret(ref e) => hir::ExprRet(e.as_ref().map(|x| lower_expr(lctx, x))),
1237             ExprKind::InlineAsm(InlineAsm {
1238                     ref inputs,
1239                     ref outputs,
1240                     ref asm,
1241                     asm_str_style,
1242                     ref clobbers,
1243                     volatile,
1244                     alignstack,
1245                     dialect,
1246                     expn_id,
1247                 }) => hir::ExprInlineAsm(hir::InlineAsm {
1248                 inputs: inputs.iter()
1249                               .map(|&(ref c, ref input)| (c.clone(), lower_expr(lctx, input)))
1250                               .collect(),
1251                 outputs: outputs.iter()
1252                                 .map(|out| {
1253                                     hir::InlineAsmOutput {
1254                                         constraint: out.constraint.clone(),
1255                                         expr: lower_expr(lctx, &out.expr),
1256                                         is_rw: out.is_rw,
1257                                         is_indirect: out.is_indirect,
1258                                     }
1259                                 })
1260                                 .collect(),
1261                 asm: asm.clone(),
1262                 asm_str_style: asm_str_style,
1263                 clobbers: clobbers.clone().into(),
1264                 volatile: volatile,
1265                 alignstack: alignstack,
1266                 dialect: dialect,
1267                 expn_id: expn_id,
1268             }),
1269             ExprKind::Struct(ref path, ref fields, ref maybe_expr) => {
1270                 hir::ExprStruct(lower_path(lctx, path),
1271                                 fields.iter().map(|x| lower_field(lctx, x)).collect(),
1272                                 maybe_expr.as_ref().map(|x| lower_expr(lctx, x)))
1273             }
1274             ExprKind::Paren(ref ex) => {
1275                 // merge attributes into the inner expression.
1276                 return lower_expr(lctx, ex).map(|mut ex| {
1277                     ex.attrs.update(|attrs| {
1278                         attrs.prepend(e.attrs.clone())
1279                     });
1280                     ex
1281                 });
1282             }
1283
1284             // Desugar ExprIfLet
1285             // From: `if let <pat> = <sub_expr> <body> [<else_opt>]`
1286             ExprKind::IfLet(ref pat, ref sub_expr, ref body, ref else_opt) => {
1287                 // to:
1288                 //
1289                 //   match <sub_expr> {
1290                 //     <pat> => <body>,
1291                 //     [_ if <else_opt_if_cond> => <else_opt_if_body>,]
1292                 //     _ => [<else_opt> | ()]
1293                 //   }
1294
1295                 return cache_ids(lctx, e.id, |lctx| {
1296                     // `<pat> => <body>`
1297                     let pat_arm = {
1298                         let body = lower_block(lctx, body);
1299                         let body_expr = expr_block(lctx, body, None);
1300                         arm(hir_vec![lower_pat(lctx, pat)], body_expr)
1301                     };
1302
1303                     // `[_ if <else_opt_if_cond> => <else_opt_if_body>,]`
1304                     let mut else_opt = else_opt.as_ref().map(|e| lower_expr(lctx, e));
1305                     let else_if_arms = {
1306                         let mut arms = vec![];
1307                         loop {
1308                             let else_opt_continue = else_opt.and_then(|els| {
1309                                 els.and_then(|els| {
1310                                     match els.node {
1311                                         // else if
1312                                         hir::ExprIf(cond, then, else_opt) => {
1313                                             let pat_under = pat_wild(lctx, e.span);
1314                                             arms.push(hir::Arm {
1315                                                 attrs: hir_vec![],
1316                                                 pats: hir_vec![pat_under],
1317                                                 guard: Some(cond),
1318                                                 body: expr_block(lctx, then, None),
1319                                             });
1320                                             else_opt.map(|else_opt| (else_opt, true))
1321                                         }
1322                                         _ => Some((P(els), false)),
1323                                     }
1324                                 })
1325                             });
1326                             match else_opt_continue {
1327                                 Some((e, true)) => {
1328                                     else_opt = Some(e);
1329                                 }
1330                                 Some((e, false)) => {
1331                                     else_opt = Some(e);
1332                                     break;
1333                                 }
1334                                 None => {
1335                                     else_opt = None;
1336                                     break;
1337                                 }
1338                             }
1339                         }
1340                         arms
1341                     };
1342
1343                     let contains_else_clause = else_opt.is_some();
1344
1345                     // `_ => [<else_opt> | ()]`
1346                     let else_arm = {
1347                         let pat_under = pat_wild(lctx, e.span);
1348                         let else_expr =
1349                             else_opt.unwrap_or_else(
1350                                 || expr_tuple(lctx, e.span, hir_vec![], None));
1351                         arm(hir_vec![pat_under], else_expr)
1352                     };
1353
1354                     let mut arms = Vec::with_capacity(else_if_arms.len() + 2);
1355                     arms.push(pat_arm);
1356                     arms.extend(else_if_arms);
1357                     arms.push(else_arm);
1358
1359                     let sub_expr = lower_expr(lctx, sub_expr);
1360                     // add attributes to the outer returned expr node
1361                     expr(lctx,
1362                          e.span,
1363                          hir::ExprMatch(sub_expr,
1364                                         arms.into(),
1365                                         hir::MatchSource::IfLetDesugar {
1366                                             contains_else_clause: contains_else_clause,
1367                                         }),
1368                          e.attrs.clone())
1369                 });
1370             }
1371
1372             // Desugar ExprWhileLet
1373             // From: `[opt_ident]: while let <pat> = <sub_expr> <body>`
1374             ExprKind::WhileLet(ref pat, ref sub_expr, ref body, opt_ident) => {
1375                 // to:
1376                 //
1377                 //   [opt_ident]: loop {
1378                 //     match <sub_expr> {
1379                 //       <pat> => <body>,
1380                 //       _ => break
1381                 //     }
1382                 //   }
1383
1384                 return cache_ids(lctx, e.id, |lctx| {
1385                     // `<pat> => <body>`
1386                     let pat_arm = {
1387                         let body = lower_block(lctx, body);
1388                         let body_expr = expr_block(lctx, body, None);
1389                         arm(hir_vec![lower_pat(lctx, pat)], body_expr)
1390                     };
1391
1392                     // `_ => break`
1393                     let break_arm = {
1394                         let pat_under = pat_wild(lctx, e.span);
1395                         let break_expr = expr_break(lctx, e.span, None);
1396                         arm(hir_vec![pat_under], break_expr)
1397                     };
1398
1399                     // `match <sub_expr> { ... }`
1400                     let arms = hir_vec![pat_arm, break_arm];
1401                     let sub_expr = lower_expr(lctx, sub_expr);
1402                     let match_expr = expr(lctx,
1403                                           e.span,
1404                                           hir::ExprMatch(sub_expr,
1405                                                          arms,
1406                                                          hir::MatchSource::WhileLetDesugar),
1407                                           None);
1408
1409                     // `[opt_ident]: loop { ... }`
1410                     let loop_block = block_expr(lctx, match_expr);
1411                     let loop_expr = hir::ExprLoop(loop_block,
1412                                                   opt_ident.map(|ident| lower_ident(lctx, ident)));
1413                     // add attributes to the outer returned expr node
1414                     expr(lctx, e.span, loop_expr, e.attrs.clone())
1415                 });
1416             }
1417
1418             // Desugar ExprForLoop
1419             // From: `[opt_ident]: for <pat> in <head> <body>`
1420             ExprKind::ForLoop(ref pat, ref head, ref body, opt_ident) => {
1421                 // to:
1422                 //
1423                 //   {
1424                 //     let result = match ::std::iter::IntoIterator::into_iter(<head>) {
1425                 //       mut iter => {
1426                 //         [opt_ident]: loop {
1427                 //           match ::std::iter::Iterator::next(&mut iter) {
1428                 //             ::std::option::Option::Some(<pat>) => <body>,
1429                 //             ::std::option::Option::None => break
1430                 //           }
1431                 //         }
1432                 //       }
1433                 //     };
1434                 //     result
1435                 //   }
1436
1437                 return cache_ids(lctx, e.id, |lctx| {
1438                     // expand <head>
1439                     let head = lower_expr(lctx, head);
1440
1441                     let iter = lctx.str_to_ident("iter");
1442
1443                     // `::std::option::Option::Some(<pat>) => <body>`
1444                     let pat_arm = {
1445                         let body_block = lower_block(lctx, body);
1446                         let body_span = body_block.span;
1447                         let body_expr = P(hir::Expr {
1448                             id: lctx.next_id(),
1449                             node: hir::ExprBlock(body_block),
1450                             span: body_span,
1451                             attrs: None,
1452                         });
1453                         let pat = lower_pat(lctx, pat);
1454                         let some_pat = pat_some(lctx, e.span, pat);
1455
1456                         arm(hir_vec![some_pat], body_expr)
1457                     };
1458
1459                     // `::std::option::Option::None => break`
1460                     let break_arm = {
1461                         let break_expr = expr_break(lctx, e.span, None);
1462
1463                         arm(hir_vec![pat_none(lctx, e.span)], break_expr)
1464                     };
1465
1466                     // `match ::std::iter::Iterator::next(&mut iter) { ... }`
1467                     let match_expr = {
1468                         let next_path = {
1469                             let strs = std_path(lctx, &["iter", "Iterator", "next"]);
1470
1471                             path_global(e.span, strs)
1472                         };
1473                         let iter = expr_ident(lctx, e.span, iter, None);
1474                         let ref_mut_iter = expr_mut_addr_of(lctx, e.span, iter, None);
1475                         let next_path = expr_path(lctx, next_path, None);
1476                         let next_expr = expr_call(lctx,
1477                                                   e.span,
1478                                                   next_path,
1479                                                   hir_vec![ref_mut_iter],
1480                                                   None);
1481                         let arms = hir_vec![pat_arm, break_arm];
1482
1483                         expr(lctx,
1484                              e.span,
1485                              hir::ExprMatch(next_expr, arms, hir::MatchSource::ForLoopDesugar),
1486                              None)
1487                     };
1488
1489                     // `[opt_ident]: loop { ... }`
1490                     let loop_block = block_expr(lctx, match_expr);
1491                     let loop_expr = hir::ExprLoop(loop_block,
1492                                                   opt_ident.map(|ident| lower_ident(lctx, ident)));
1493                     let loop_expr = expr(lctx, e.span, loop_expr, None);
1494
1495                     // `mut iter => { ... }`
1496                     let iter_arm = {
1497                         let iter_pat = pat_ident_binding_mode(lctx,
1498                                                               e.span,
1499                                                               iter,
1500                                                               hir::BindByValue(hir::MutMutable));
1501                         arm(hir_vec![iter_pat], loop_expr)
1502                     };
1503
1504                     // `match ::std::iter::IntoIterator::into_iter(<head>) { ... }`
1505                     let into_iter_expr = {
1506                         let into_iter_path = {
1507                             let strs = std_path(lctx, &["iter", "IntoIterator", "into_iter"]);
1508
1509                             path_global(e.span, strs)
1510                         };
1511
1512                         let into_iter = expr_path(lctx, into_iter_path, None);
1513                         expr_call(lctx, e.span, into_iter, hir_vec![head], None)
1514                     };
1515
1516                     let match_expr = expr_match(lctx,
1517                                                 e.span,
1518                                                 into_iter_expr,
1519                                                 hir_vec![iter_arm],
1520                                                 hir::MatchSource::ForLoopDesugar,
1521                                                 None);
1522
1523                     // `{ let _result = ...; _result }`
1524                     // underscore prevents an unused_variables lint if the head diverges
1525                     let result_ident = lctx.str_to_ident("_result");
1526                     let let_stmt = stmt_let(lctx, e.span, false, result_ident, match_expr, None);
1527                     let result = expr_ident(lctx, e.span, result_ident, None);
1528                     let block = block_all(lctx, e.span, hir_vec![let_stmt], Some(result));
1529                     // add the attributes to the outer returned expr node
1530                     expr_block(lctx, block, e.attrs.clone())
1531                 });
1532             }
1533
1534             ExprKind::Mac(_) => panic!("Shouldn't exist here"),
1535         },
1536         span: e.span,
1537         attrs: e.attrs.clone(),
1538     })
1539 }
1540
1541 pub fn lower_stmt(lctx: &LoweringContext, s: &Stmt) -> hir::Stmt {
1542     match s.node {
1543         StmtKind::Decl(ref d, id) => {
1544             Spanned {
1545                 node: hir::StmtDecl(lower_decl(lctx, d), id),
1546                 span: s.span,
1547             }
1548         }
1549         StmtKind::Expr(ref e, id) => {
1550             Spanned {
1551                 node: hir::StmtExpr(lower_expr(lctx, e), id),
1552                 span: s.span,
1553             }
1554         }
1555         StmtKind::Semi(ref e, id) => {
1556             Spanned {
1557                 node: hir::StmtSemi(lower_expr(lctx, e), id),
1558                 span: s.span,
1559             }
1560         }
1561         StmtKind::Mac(..) => panic!("Shouldn't exist here"),
1562     }
1563 }
1564
1565 pub fn lower_capture_clause(_lctx: &LoweringContext, c: CaptureBy) -> hir::CaptureClause {
1566     match c {
1567         CaptureBy::Value => hir::CaptureByValue,
1568         CaptureBy::Ref => hir::CaptureByRef,
1569     }
1570 }
1571
1572 pub fn lower_visibility(_lctx: &LoweringContext, v: Visibility) -> hir::Visibility {
1573     match v {
1574         Visibility::Public => hir::Public,
1575         Visibility::Inherited => hir::Inherited,
1576     }
1577 }
1578
1579 pub fn lower_block_check_mode(lctx: &LoweringContext, b: &BlockCheckMode) -> hir::BlockCheckMode {
1580     match *b {
1581         BlockCheckMode::Default => hir::DefaultBlock,
1582         BlockCheckMode::Unsafe(u) => hir::UnsafeBlock(lower_unsafe_source(lctx, u)),
1583     }
1584 }
1585
1586 pub fn lower_binding_mode(lctx: &LoweringContext, b: &BindingMode) -> hir::BindingMode {
1587     match *b {
1588         BindingMode::ByRef(m) => hir::BindByRef(lower_mutability(lctx, m)),
1589         BindingMode::ByValue(m) => hir::BindByValue(lower_mutability(lctx, m)),
1590     }
1591 }
1592
1593 pub fn lower_unsafe_source(_lctx: &LoweringContext, u: UnsafeSource) -> hir::UnsafeSource {
1594     match u {
1595         CompilerGenerated => hir::CompilerGenerated,
1596         UserProvided => hir::UserProvided,
1597     }
1598 }
1599
1600 pub fn lower_impl_polarity(_lctx: &LoweringContext, i: ImplPolarity) -> hir::ImplPolarity {
1601     match i {
1602         ImplPolarity::Positive => hir::ImplPolarity::Positive,
1603         ImplPolarity::Negative => hir::ImplPolarity::Negative,
1604     }
1605 }
1606
1607 pub fn lower_trait_bound_modifier(_lctx: &LoweringContext,
1608                                   f: TraitBoundModifier)
1609                                   -> hir::TraitBoundModifier {
1610     match f {
1611         TraitBoundModifier::None => hir::TraitBoundModifier::None,
1612         TraitBoundModifier::Maybe => hir::TraitBoundModifier::Maybe,
1613     }
1614 }
1615
1616 // Helper methods for building HIR.
1617
1618 fn arm(pats: hir::HirVec<P<hir::Pat>>, expr: P<hir::Expr>) -> hir::Arm {
1619     hir::Arm {
1620         attrs: hir_vec![],
1621         pats: pats,
1622         guard: None,
1623         body: expr,
1624     }
1625 }
1626
1627 fn expr_break(lctx: &LoweringContext, span: Span,
1628               attrs: ThinAttributes) -> P<hir::Expr> {
1629     expr(lctx, span, hir::ExprBreak(None), attrs)
1630 }
1631
1632 fn expr_call(lctx: &LoweringContext,
1633              span: Span,
1634              e: P<hir::Expr>,
1635              args: hir::HirVec<P<hir::Expr>>,
1636              attrs: ThinAttributes)
1637              -> P<hir::Expr> {
1638     expr(lctx, span, hir::ExprCall(e, args), attrs)
1639 }
1640
1641 fn expr_ident(lctx: &LoweringContext, span: Span, id: hir::Ident,
1642               attrs: ThinAttributes) -> P<hir::Expr> {
1643     expr_path(lctx, path_ident(span, id), attrs)
1644 }
1645
1646 fn expr_mut_addr_of(lctx: &LoweringContext, span: Span, e: P<hir::Expr>,
1647                     attrs: ThinAttributes) -> P<hir::Expr> {
1648     expr(lctx, span, hir::ExprAddrOf(hir::MutMutable, e), attrs)
1649 }
1650
1651 fn expr_path(lctx: &LoweringContext, path: hir::Path,
1652              attrs: ThinAttributes) -> P<hir::Expr> {
1653     expr(lctx, path.span, hir::ExprPath(None, path), attrs)
1654 }
1655
1656 fn expr_match(lctx: &LoweringContext,
1657               span: Span,
1658               arg: P<hir::Expr>,
1659               arms: hir::HirVec<hir::Arm>,
1660               source: hir::MatchSource,
1661               attrs: ThinAttributes)
1662               -> P<hir::Expr> {
1663     expr(lctx, span, hir::ExprMatch(arg, arms, source), attrs)
1664 }
1665
1666 fn expr_block(lctx: &LoweringContext, b: P<hir::Block>,
1667               attrs: ThinAttributes) -> P<hir::Expr> {
1668     expr(lctx, b.span, hir::ExprBlock(b), attrs)
1669 }
1670
1671 fn expr_tuple(lctx: &LoweringContext, sp: Span, exprs: hir::HirVec<P<hir::Expr>>,
1672               attrs: ThinAttributes) -> P<hir::Expr> {
1673     expr(lctx, sp, hir::ExprTup(exprs), attrs)
1674 }
1675
1676 fn expr(lctx: &LoweringContext, span: Span, node: hir::Expr_,
1677         attrs: ThinAttributes) -> P<hir::Expr> {
1678     P(hir::Expr {
1679         id: lctx.next_id(),
1680         node: node,
1681         span: span,
1682         attrs: attrs,
1683     })
1684 }
1685
1686 fn stmt_let(lctx: &LoweringContext,
1687             sp: Span,
1688             mutbl: bool,
1689             ident: hir::Ident,
1690             ex: P<hir::Expr>,
1691             attrs: ThinAttributes)
1692             -> hir::Stmt {
1693     let pat = if mutbl {
1694         pat_ident_binding_mode(lctx, sp, ident, hir::BindByValue(hir::MutMutable))
1695     } else {
1696         pat_ident(lctx, sp, ident)
1697     };
1698     let local = P(hir::Local {
1699         pat: pat,
1700         ty: None,
1701         init: Some(ex),
1702         id: lctx.next_id(),
1703         span: sp,
1704         attrs: attrs,
1705     });
1706     let decl = respan(sp, hir::DeclLocal(local));
1707     respan(sp, hir::StmtDecl(P(decl), lctx.next_id()))
1708 }
1709
1710 fn block_expr(lctx: &LoweringContext, expr: P<hir::Expr>) -> P<hir::Block> {
1711     block_all(lctx, expr.span, hir::HirVec::new(), Some(expr))
1712 }
1713
1714 fn block_all(lctx: &LoweringContext,
1715              span: Span,
1716              stmts: hir::HirVec<hir::Stmt>,
1717              expr: Option<P<hir::Expr>>)
1718              -> P<hir::Block> {
1719     P(hir::Block {
1720         stmts: stmts,
1721         expr: expr,
1722         id: lctx.next_id(),
1723         rules: hir::DefaultBlock,
1724         span: span,
1725     })
1726 }
1727
1728 fn pat_some(lctx: &LoweringContext, span: Span, pat: P<hir::Pat>) -> P<hir::Pat> {
1729     let some = std_path(lctx, &["option", "Option", "Some"]);
1730     let path = path_global(span, some);
1731     pat_enum(lctx, span, path, hir_vec![pat])
1732 }
1733
1734 fn pat_none(lctx: &LoweringContext, span: Span) -> P<hir::Pat> {
1735     let none = std_path(lctx, &["option", "Option", "None"]);
1736     let path = path_global(span, none);
1737     pat_enum(lctx, span, path, hir_vec![])
1738 }
1739
1740 fn pat_enum(lctx: &LoweringContext,
1741             span: Span,
1742             path: hir::Path,
1743             subpats: hir::HirVec<P<hir::Pat>>)
1744             -> P<hir::Pat> {
1745     let pt = if subpats.is_empty() {
1746         hir::PatKind::Path(path)
1747     } else {
1748         hir::PatKind::TupleStruct(path, Some(subpats))
1749     };
1750     pat(lctx, span, pt)
1751 }
1752
1753 fn pat_ident(lctx: &LoweringContext, span: Span, ident: hir::Ident) -> P<hir::Pat> {
1754     pat_ident_binding_mode(lctx, span, ident, hir::BindByValue(hir::MutImmutable))
1755 }
1756
1757 fn pat_ident_binding_mode(lctx: &LoweringContext,
1758                           span: Span,
1759                           ident: hir::Ident,
1760                           bm: hir::BindingMode)
1761                           -> P<hir::Pat> {
1762     let pat_ident = hir::PatKind::Ident(bm,
1763                                   Spanned {
1764                                       span: span,
1765                                       node: ident,
1766                                   },
1767                                   None);
1768     pat(lctx, span, pat_ident)
1769 }
1770
1771 fn pat_wild(lctx: &LoweringContext, span: Span) -> P<hir::Pat> {
1772     pat(lctx, span, hir::PatKind::Wild)
1773 }
1774
1775 fn pat(lctx: &LoweringContext, span: Span, pat: hir::PatKind) -> P<hir::Pat> {
1776     P(hir::Pat {
1777         id: lctx.next_id(),
1778         node: pat,
1779         span: span,
1780     })
1781 }
1782
1783 fn path_ident(span: Span, id: hir::Ident) -> hir::Path {
1784     path(span, vec![id])
1785 }
1786
1787 fn path(span: Span, strs: Vec<hir::Ident>) -> hir::Path {
1788     path_all(span, false, strs, hir::HirVec::new(), hir::HirVec::new(), hir::HirVec::new())
1789 }
1790
1791 fn path_global(span: Span, strs: Vec<hir::Ident>) -> hir::Path {
1792     path_all(span, true, strs, hir::HirVec::new(), hir::HirVec::new(), hir::HirVec::new())
1793 }
1794
1795 fn path_all(sp: Span,
1796             global: bool,
1797             mut idents: Vec<hir::Ident>,
1798             lifetimes: hir::HirVec<hir::Lifetime>,
1799             types: hir::HirVec<P<hir::Ty>>,
1800             bindings: hir::HirVec<hir::TypeBinding>)
1801             -> hir::Path {
1802     let last_identifier = idents.pop().unwrap();
1803     let mut segments: Vec<hir::PathSegment> = idents.into_iter()
1804                                                     .map(|ident| {
1805                                                         hir::PathSegment {
1806                                                             identifier: ident,
1807                                                             parameters: hir::PathParameters::none(),
1808                                                         }
1809                                                     })
1810                                                     .collect();
1811     segments.push(hir::PathSegment {
1812         identifier: last_identifier,
1813         parameters: hir::AngleBracketedParameters(hir::AngleBracketedParameterData {
1814             lifetimes: lifetimes,
1815             types: types,
1816             bindings: bindings,
1817         }),
1818     });
1819     hir::Path {
1820         span: sp,
1821         global: global,
1822         segments: segments.into(),
1823     }
1824 }
1825
1826 fn std_path(lctx: &LoweringContext, components: &[&str]) -> Vec<hir::Ident> {
1827     let mut v = Vec::new();
1828     if let Some(s) = lctx.crate_root {
1829         v.push(hir::Ident::from_name(token::intern(s)));
1830     }
1831     v.extend(components.iter().map(|s| hir::Ident::from_name(token::intern(s))));
1832     return v;
1833 }
1834
1835 // Given suffix ["b","c","d"], returns path `::std::b::c::d` when
1836 // `fld.cx.use_std`, and `::core::b::c::d` otherwise.
1837 fn core_path(lctx: &LoweringContext, span: Span, components: &[&str]) -> hir::Path {
1838     let idents = std_path(lctx, components);
1839     path_global(span, idents)
1840 }
1841
1842 fn signal_block_expr(lctx: &LoweringContext,
1843                      stmts: hir::HirVec<hir::Stmt>,
1844                      expr: P<hir::Expr>,
1845                      span: Span,
1846                      rule: hir::BlockCheckMode,
1847                      attrs: ThinAttributes)
1848                      -> P<hir::Expr> {
1849     let id = lctx.next_id();
1850     expr_block(lctx,
1851                P(hir::Block {
1852                    rules: rule,
1853                    span: span,
1854                    id: id,
1855                    stmts: stmts,
1856                    expr: Some(expr),
1857                }),
1858                attrs)
1859 }
1860
1861
1862
1863 #[cfg(test)]
1864 mod test {
1865     use super::*;
1866     use syntax::ast::{self, NodeId, NodeIdAssigner};
1867     use syntax::{parse, codemap};
1868     use syntax::fold::Folder;
1869     use std::cell::Cell;
1870
1871     struct MockAssigner {
1872         next_id: Cell<NodeId>,
1873     }
1874
1875     impl MockAssigner {
1876         fn new() -> MockAssigner {
1877             MockAssigner { next_id: Cell::new(0) }
1878         }
1879     }
1880
1881     trait FakeExtCtxt {
1882         fn call_site(&self) -> codemap::Span;
1883         fn cfg(&self) -> ast::CrateConfig;
1884         fn ident_of(&self, st: &str) -> ast::Ident;
1885         fn name_of(&self, st: &str) -> ast::Name;
1886         fn parse_sess(&self) -> &parse::ParseSess;
1887     }
1888
1889     impl FakeExtCtxt for parse::ParseSess {
1890         fn call_site(&self) -> codemap::Span {
1891             codemap::Span {
1892                 lo: codemap::BytePos(0),
1893                 hi: codemap::BytePos(0),
1894                 expn_id: codemap::NO_EXPANSION,
1895             }
1896         }
1897         fn cfg(&self) -> ast::CrateConfig {
1898             Vec::new()
1899         }
1900         fn ident_of(&self, st: &str) -> ast::Ident {
1901             parse::token::str_to_ident(st)
1902         }
1903         fn name_of(&self, st: &str) -> ast::Name {
1904             parse::token::intern(st)
1905         }
1906         fn parse_sess(&self) -> &parse::ParseSess {
1907             self
1908         }
1909     }
1910
1911     impl NodeIdAssigner for MockAssigner {
1912         fn next_node_id(&self) -> NodeId {
1913             let result = self.next_id.get();
1914             self.next_id.set(result + 1);
1915             result
1916         }
1917
1918         fn peek_node_id(&self) -> NodeId {
1919             self.next_id.get()
1920         }
1921     }
1922
1923     impl Folder for MockAssigner {
1924         fn new_id(&mut self, old_id: NodeId) -> NodeId {
1925             assert_eq!(old_id, ast::DUMMY_NODE_ID);
1926             self.next_node_id()
1927         }
1928     }
1929
1930     #[test]
1931     fn test_preserves_ids() {
1932         let cx = parse::ParseSess::new();
1933         let mut assigner = MockAssigner::new();
1934
1935         let ast_if_let = quote_expr!(&cx,
1936                                      if let Some(foo) = baz {
1937                                          bar(foo);
1938                                      });
1939         let ast_if_let = assigner.fold_expr(ast_if_let);
1940         let ast_while_let = quote_expr!(&cx,
1941                                         while let Some(foo) = baz {
1942                                             bar(foo);
1943                                         });
1944         let ast_while_let = assigner.fold_expr(ast_while_let);
1945         let ast_for = quote_expr!(&cx,
1946                                   for i in 0..10 {
1947                                       for j in 0..10 {
1948                                           foo(i, j);
1949                                       }
1950                                   });
1951         let ast_for = assigner.fold_expr(ast_for);
1952         let ast_in = quote_expr!(&cx, in HEAP { foo() });
1953         let ast_in = assigner.fold_expr(ast_in);
1954
1955         let lctx = LoweringContext::new(&assigner, None);
1956         let hir1 = lower_expr(&lctx, &ast_if_let);
1957         let hir2 = lower_expr(&lctx, &ast_if_let);
1958         assert!(hir1 == hir2);
1959
1960         let hir1 = lower_expr(&lctx, &ast_while_let);
1961         let hir2 = lower_expr(&lctx, &ast_while_let);
1962         assert!(hir1 == hir2);
1963
1964         let hir1 = lower_expr(&lctx, &ast_for);
1965         let hir2 = lower_expr(&lctx, &ast_for);
1966         assert!(hir1 == hir2);
1967
1968         let hir1 = lower_expr(&lctx, &ast_in);
1969         let hir2 = lower_expr(&lctx, &ast_in);
1970         assert!(hir1 == hir2);
1971     }
1972 }