summary refs log tree commit diff
path: root/src/librustc/hir/map/mod.rs
AgeCommit message (Expand)AuthorLines
2017-04-12First attempt at global_asm! macroA.J. Gardner-0/+1
2017-04-04push `borrowck` into its own taskNiko Matsakis-0/+21
2017-03-23Remove internal liblogAlex Crichton-1/+1
2017-03-22Allocate numerical values of DefIndexes from two seperate ranges.Michael Woerister-5/+4
2017-03-22Introduce HirId, a replacement for NodeId after lowering to HIR.Michael Woerister-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-26rustc: don't call the HIR AST.Eduard-Mihai Burtescu-76/+76
2017-01-06rustc: store ty::Tables separately for each body (except closures').Eduard-Mihai Burtescu-163/+79
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-82/+92
2016-12-28rustc: move function arguments into hir::Body.Eduard-Mihai Burtescu-1/+3
2016-12-28rustc: separate bodies for static/(associated)const and embedded constants.Eduard-Mihai Burtescu-11/+29
2016-12-28rustc: separate TraitItem from their parent Item, just like ImplItem.Eduard-Mihai Burtescu-18/+33
2016-12-16Remove some more things that were only needed for inlined-HIR DefIdsMichael Woerister-12/+0
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-1/+5
2016-12-16definitions: Don't allocate DefIds for inlined HIRMichael Woerister-12/+1
2016-12-12incr.comp.: Avoid creating an edge to DepNode::Krate when generating debuginf...Michael Woerister-3/+4
2016-11-30rustc: track the Span's of definitions across crates.Eduard-Mihai Burtescu-33/+26
2016-11-29Add make tidy fixesFlorian Diebold-1/+1
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-9/+13
2016-11-29rustc: replace body exprs by their idsFlorian Diebold-0/+4
2016-11-28rustc: track fields in the HIR map.Eduard Burtescu-0/+18
2016-11-28rustc: embed path resolutions into the HIR instead of keeping DefMap.Eduard-Mihai Burtescu-1/+1
2016-11-28rustc: desugar `use a::{b,c};` into `use a::b; use a::c;` in HIR.Eduard-Mihai Burtescu-10/+2
2016-11-28rustc: track hir::{TraitRef, Visibility} in the HIR map.Eduard Burtescu-3/+27
2016-11-21Cleanup `InternedString`.Jeffrey Seyfried-3/+2
2016-11-16include a Name and Span for each item in the HIR of the implNiko Matsakis-1/+1
2016-11-16make distinct Hir() nodes in the graph for impl itemsNiko Matsakis-2/+6
2016-11-16separate impl-items from the impl in the HIRNiko Matsakis-0/+9
2016-09-28Rollup merge of #36376 - GuillaumeGomez:e0050, r=jonathandturnerJonathan Turner-1/+1
2016-09-28Update E0050 to new error formatGuillaume Gomez-1/+1
2016-09-27Fix def id collection for `const_integer`s in the AST.Jeffrey Seyfried-1/+1
2016-09-27Peform def id assignment during expansion.Jeffrey Seyfried-1/+1
2016-09-20rustc_metadata: move more RBML tags to auto-serialization.Eduard Burtescu-10/+12
2016-09-20rustc_metadata: go only through rustc_serialize in astencode.Eduard Burtescu-90/+16
2016-09-06ignore dep-graph when loading inlined HIRNiko Matsakis-0/+2
2016-09-03Add unions to HIRVadim Petrochenkov-0/+1
2016-08-24Remove AST from metadata except for consts and const fns.Eduard Burtescu-4/+1
2016-08-17Display secondary span for E0053 for Sort TypeErrorsKeith Yeung-0/+7
2016-08-12typeck: record `impl Trait` concrete resolutions.Eduard Burtescu-0/+12
2016-08-02replace graph rewriting with detecting inlined idsNiko Matsakis-49/+90
2016-08-02remap Hir(InlinedDefId) to MetaData(OriginalDefId)Niko Matsakis-5/+15
2016-08-01Move caching of HIR-inlining into CStore in order to avoid duplicating inline...Michael Woerister-5/+57
2016-06-28groundwork: create the `Resolver` earlier in phase 2Jeffrey Seyfried-9/+1
2016-06-26Rollup merge of #34339 - jseyfried:thin_vec, r=petrochenkov,ManishearthJeffrey Seyfried-2/+1