summary refs log tree commit diff
path: root/src/librustc/hir/map
AgeCommit message (Expand)AuthorLines
2017-04-12First attempt at global_asm! macroA.J. Gardner-0/+2
2017-04-12Rollup merge of #41063 - nikomatsakis:issue-40746-always-exec-loops, r=eddybTim Neumann-0/+21
2017-04-07ICH: Centrally compute and cache DefPath hashes as part of DefPathTable.Michael Woerister-37/+97
2017-04-06Introduce HashStable trait and base ICH implementations on it.Michael Woerister-0/+4
2017-04-04push `borrowck` into its own taskNiko Matsakis-0/+21
2017-03-29Move `syntax::ext::hygiene` to `syntax_pos::hygiene`.Jeffrey Seyfried-1/+1
2017-03-23Remove internal liblogAlex Crichton-1/+1
2017-03-22Allocate numerical values of DefIndexes from two seperate ranges.Michael Woerister-52/+128
2017-03-22Introduce HirId, a replacement for NodeId after lowering to HIR.Michael Woerister-2/+221
2017-03-10Refactor out `ast::ItemKind::MacroDef`.Jeffrey Seyfried-5/+1
2017-03-05Fix const expression macro invocations.Jeffrey Seyfried-11/+11
2017-03-01fix tests to handle the Typeof bodiesNiko Matsakis-2/+7
2017-02-28walk the bodies "in order" by traversing the crateNiko Matsakis-12/+17
2017-02-25rustc_typeck: rework coherence to be almost completely on-demand.Eduard-Mihai Burtescu-0/+20
2017-02-25rustc_typeck: don't use Result for get_type_parameter_bounds and ensure_super...Eduard-Mihai Burtescu-0/+24
2017-01-26Point to immutable arg/fields when trying to use as &mutEsteban Küber-1/+1
2017-01-26rustc: don't call the HIR AST.Eduard-Mihai Burtescu-103/+103
2017-01-06rustc: store ty::Tables separately for each body (except closures').Eduard-Mihai Burtescu-197/+83
2017-01-06rustc: keep track of tables everywhere as if they were per-body.Eduard-Mihai Burtescu-19/+0
2016-12-28rustc: always print nested nodes where a HIR map is available.Eduard-Mihai Burtescu-25/+46
2016-12-28rustc: simplify constant cross-crate loading and rustc_passes::consts.Eduard-Mihai Burtescu-89/+98
2016-12-28rustc: move function arguments into hir::Body.Eduard-Mihai Burtescu-3/+8
2016-12-28rustc: separate bodies for static/(associated)const and embedded constants.Eduard-Mihai Burtescu-31/+57
2016-12-28rustc: separate TraitItem from their parent Item, just like ImplItem.Eduard-Mihai Burtescu-20/+39
2016-12-16Remove some more things that were only needed for inlined-HIR DefIdsMichael Woerister-204/+0
2016-12-16definitions: Add some documentation.Michael Woerister-2/+7
2016-12-16Move retrace_path() implementation to DefPathTableMichael Woerister-2/+31
2016-12-16No need to store Definitions in RefCell within HIR mapMichael Woerister-11/+11
2016-12-16definitions: Store DefPath data in separate table in metadataMichael Woerister-2/+10
2016-12-16definitions: Don't allocate DefIds for inlined HIRMichael Woerister-90/+5
2016-12-16Definitions: Extract DefPath interning into its own data structure.Michael Woerister-23/+85
2016-12-16Definitions: Split out NodeId <-> DefIndex mappingMichael Woerister-23/+21
2016-12-15Use StableHasher everywhereAriel Ben-Yehuda-3/+3
2016-12-12incr.comp.: Avoid creating an edge to DepNode::Krate when generating debuginf...Michael Woerister-3/+4
2016-12-06annotate stricter lifetimes on LateLintPass methods to allow them to forward ...Oliver Schneider-12/+12
2016-11-30rustc: track the Span's of definitions across crates.Eduard-Mihai Burtescu-33/+26
2016-11-29revamp `Visitor` with a single method for controlling nested visitsNiko Matsakis-6/+7
2016-11-29Split nested_visit_mode function off from nested_visit_mapFlorian Diebold-2/+6
2016-11-29Refactor inlined items some moreFlorian Diebold-14/+0
2016-11-29Add make tidy fixesFlorian Diebold-2/+5
2016-11-29Remove unused importFlorian Diebold-1/+0
2016-11-29Fix some commentsFlorian Diebold-6/+3
2016-11-29Give function bodies their own dep graph nodeFlorian Diebold-2/+50
2016-11-29Save bodies of functions for inlining into other cratesFlorian Diebold-10/+37
2016-11-29rustc: replace body exprs by their idsFlorian Diebold-17/+32
2016-11-28rustc: track fields in the HIR map.Eduard Burtescu-0/+25
2016-11-28rustc: embed path resolutions into the HIR instead of keeping DefMap.Eduard-Mihai Burtescu-2/+2
2016-11-28rustc: desugar `use a::{b,c};` into `use a::b; use a::c;` in HIR.Eduard-Mihai Burtescu-21/+16
2016-11-28rustc: track hir::{TraitRef, Visibility} in the HIR map.Eduard Burtescu-10/+49
2016-11-21Auto merge of #37824 - jseyfried:symbols, r=eddybbors-44/+24