summary refs log tree commit diff
path: root/src/librustc/hir/map
AgeCommit message (Expand)AuthorLines
2017-08-22incr.comp.: Cache Hir-DepNodeIndices in the HIR map.Michael Woerister-222/+297
2017-08-18rustc: Add `Local` to the HIR map of parentsAlex Crichton-1/+19
2017-08-17rustc: Rename NodeLocal to NodeBindingAlex Crichton-12/+12
2017-08-15Fix typos & us spellingsFourchaux-1/+1
2017-08-14Auto merge of #43740 - michaelwoerister:local-id-in-typecktables, r=arielb1bors-0/+40
2017-08-12Fix some typosBastien Orivel-1/+1
2017-08-11Add some ID conversion methods to HIR map and Definitions.Michael Woerister-0/+23
2017-08-11Make Definitions::find_node_for_hir_id() a linear search instead of a binary ...Michael Woerister-1/+5
2017-08-11Make TypeckTables::type_dependent_defs use ItemLocalId instead of NodeId.Michael Woerister-0/+13
2017-08-04Auto merge of #43403 - RalfJung:mir-validate, r=nikomatsakisbors-0/+12
2017-08-02Auto merge of #43605 - RalfJung:mapdoc, r=michaelwoeristerbors-2/+4
2017-08-01improve hir::map::Map::get_parent_node docRalf Jung-2/+4
2017-08-01use FnLike to recognize functions for usRalf Jung-0/+12
2017-08-01rustc::hir::map::definitions - fix O(n^2) when disambiguatingAriel Ben-Yehuda-14/+14
2017-07-20Remove unused DefTable::retrace_path().Michael Woerister-71/+20
2017-07-05use field init shorthand in src/librustcZack M. Davis-21/+21
2017-06-27Review commentsEsteban Küber-0/+22
2017-06-24Detect missing `;` on methods with return type `()`Esteban Küber-5/+39
2017-06-13incr.comp.: Don't use Ident in DefPath because that's unstable across compila...Michael Woerister-86/+92
2017-06-09incr.comp.: Uniformly represent DepNodes as (Kind, StableHash) pairs.Michael Woerister-20/+25
2017-06-07Allocate DefIndices for global crate metadata.Michael Woerister-12/+106
2017-05-31Don't print the whole crate disambiguator value in debug outputMichael Woerister-1/+3
2017-05-31Build DefPathHash->DefId table when incr.comp. is enabledMichael Woerister-0/+24
2017-05-31Make a newtype for DefPathHash so they are not confused with content hashesMichael Woerister-11/+17
2017-05-25Improve intercrate hygiene.Jeffrey Seyfried-54/+78
2017-05-25Improve efficiency.Jeffrey Seyfried-2/+4
2017-05-25Hygienize lifetimes.Jeffrey Seyfried-1/+1
2017-05-25Hygienize `librustc_typeck`.Jeffrey Seyfried-6/+31
2017-05-18Use 128 instead of 64 bits for DefPath hashesMichael Woerister-8/+9
2017-05-15ICH: Hash lists of local trait impls as part of the HIR.Michael Woerister-2/+2
2017-05-06rustc: treat const bodies like fn bodies in middle::region.Eduard-Mihai Burtescu-5/+14
2017-05-02run MIR borrowck on the validated, not optimized, MIRNiko Matsakis-1/+1
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