about summary refs log tree commit diff
path: root/src/librustc_incremental
AgeCommit message (Expand)AuthorLines
2016-12-30Compilation fixesest31-0/+3
2016-12-28rustc: move function arguments into hir::Body.Eduard-Mihai Burtescu-2/+4
2016-12-28rustc: separate bodies for static/(associated)const and embedded constants.Eduard-Mihai Burtescu-5/+15
2016-12-28rustc: separate TraitItem from their parent Item, just like ImplItem.Eduard-Mihai Burtescu-4/+20
2016-12-28Auto merge of #38479 - michaelwoerister:extern_mod_ich, r=nikomatsakisbors-9/+27
2016-12-24Rollup merge of #38557 - michaelwoerister:inline-asm-ich, r=nikomatsakisSteve Klabnik-3/+43
2016-12-22ICH: Make InlineAsm hashes stable.Michael Woerister-3/+43
2016-12-22ICH: Don't store hashes for individual foreign items.Michael Woerister-5/+0
2016-12-22Refactor how global paths are represented (for both ast and hir).Jeffrey Seyfried-2/+0
2016-12-21ICH: Fix some omissions around foreign mods in hasher.Michael Woerister-4/+27
2016-12-16Remove some more things that were only needed for inlined-HIR DefIdsMichael Woerister-5/+0
2016-12-15Use StableHasher everywhereAriel Ben-Yehuda-96/+22
2016-12-12incr.comp.: Avoid creating an edge to DepNode::Krate when generating debuginf...Michael Woerister-3/+24
2016-12-09incr.comp.: Take symbol visibility into account for CGU hashes.Michael Woerister-0/+1
2016-12-03Rollup merge of #38113 - nikomatsakis:incremental-dump-hash, r=michaelwoeristerCorey Farwell-0/+28
2016-12-03Rollup merge of #38096 - michaelwoerister:more-incremental-info, r=nikomatsakisCorey Farwell-15/+39
2016-12-01add a `-Z incremental-dump-hash` flagNiko Matsakis-0/+28
2016-11-30incr.comp.: Add more output to -Z incremental-info.Michael Woerister-15/+39
2016-11-30Update the bootstrap compilerAlex Crichton-2/+0
2016-11-29revamp `Visitor` with a single method for controlling nested visitsNiko Matsakis-5/+7
2016-11-29Split nested_visit_mode function off from nested_visit_mapFlorian Diebold-2/+4
2016-11-29Add make tidy fixesFlorian Diebold-1/+4
2016-11-29Give function bodies their own dep graph nodeFlorian Diebold-17/+43
2016-11-29rustc_incremental: fix compilationFlorian Diebold-12/+0
2016-11-29rustc_incremental: fix compilationFlorian Diebold-0/+12
2016-11-28rustc: embed path resolutions into the HIR instead of keeping DefMap.Eduard-Mihai Burtescu-13/+7
2016-11-28rustc: desugar `use a::{b,c};` into `use a::b; use a::c;` in HIR.Eduard-Mihai Burtescu-11/+2
2016-11-28rustc: desugar UFCS as much as possible during HIR lowering.Eduard Burtescu-4/+12
2016-11-21Implement the `loop_break_value` feature.Geoffry Song-2/+2
2016-11-21Fix incremental compilation hashing.Jeffrey Seyfried-16/+20
2016-11-21Use `Symbol` instead of `InternedString` in the AST, HIR, and various other p...Jeffrey Seyfried-9/+8
2016-11-20Move `syntax::util::interner` -> `syntax::symbol`, cleanup.Jeffrey Seyfried-8/+9
2016-11-20Refactor `P<ast::MetaItem>` -> `ast::MetaItem`.Jeffrey Seyfried-1/+1
2016-11-20Move `MetaItemKind`'s `Name` to a field of `MetaItem`.Jeffrey Seyfried-12/+10
2016-11-20Refactor `CrateConfig`.Jeffrey Seyfried-12/+5
2016-11-20Refactor `MetaItemKind` to use `Name`s instead of `InternedString`s.Jeffrey Seyfried-12/+14
2016-11-20Refactor away `ast::Attribute_`.Jeffrey Seyfried-1/+1
2016-11-18Add span to warning about incr. comp. vs Token::Interpolated.Michael Woerister-4/+6
2016-11-18Remove outdated comment about SVH.Michael Woerister-5/+0
2016-11-18ICH: Hash MacroDefs in a mostly stable way.Michael Woerister-3/+143
2016-11-18Add error message when not finding the ICH of a DepNode.Michael Woerister-1/+6
2016-11-17canonicalize base incremental path on windowsNiko Matsakis-0/+13
2016-11-17hash the contents of impl-item-ref by adding them to visitorNiko Matsakis-0/+14
2016-11-16add a `nested_visit_map` methodNiko Matsakis-8/+0
2016-11-16fix dep-graph checking to account for implitemsNiko Matsakis-2/+2
2016-11-16make distinct Hir() nodes in the graph for impl itemsNiko Matsakis-4/+7
2016-11-16fallout from separating impl-items from implsNiko Matsakis-0/+16
2016-11-16refactor Visitor into ItemLikeVisitor and intravisit::VisitorNiko Matsakis-10/+12
2016-11-13Make names of types used in LLVM IR stable.Michael Woerister-40/+15
2016-11-10Add variants `Def::Macro` and `Namespace::MacroNS`.Jeffrey Seyfried-1/+2