index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
librustc_incremental
/
persist
Age
Commit message (
Expand
)
Author
Lines
2017-09-14
rustc: Remove `Session::dep_graph`
Alex Crichton
-53
/
+49
2017-09-05
rustc: Move crate_hash to a query
Alex Crichton
-2
/
+2
2017-08-19
rustc: Remove some dead code
Vadim Petrochenkov
-1
/
+0
2017-08-17
Rollup merge of #43891 - Fourchaux:master, r=steveklabnik
Corey Farwell
-1
/
+1
2017-08-15
use field init shorthand EVERYWHERE
Zack M. Davis
-13
/
+13
2017-08-15
Fix typos & us spellings
Fourchaux
-1
/
+1
2017-07-31
async-llvm(18): Instantiate OngoingCrateTranslation before starting translation.
Michael Woerister
-2
/
+2
2017-07-10
incr.comp.: Manage dependency graph on main thread.
Michael Woerister
-8
/
+2
2017-07-10
incr.comp.: Improve debug output for work products.
Michael Woerister
-5
/
+10
2017-06-22
Print -Zincremental-info to stderr instead of stdout.
Michael Woerister
-18
/
+18
2017-06-12
kill various tasks we no longer need and remove outdated README text
Niko Matsakis
-2
/
+1
2017-06-09
incr.comp.: Clean up and optimize dep-graph loading.
Michael Woerister
-89
/
+116
2017-06-09
incr.comp.: Uniformly represent DepNodes as (Kind, StableHash) pairs.
Michael Woerister
-194
/
+177
2017-06-07
Allocate DefIndices for global crate metadata.
Michael Woerister
-37
/
+10
2017-06-06
incr.comp.: Make WorkProductId opaque so we don't accidentally rely on being ...
Michael Woerister
-8
/
+5
2017-06-01
incr.comp.: Use a more efficient encoding for the on-disk dependency graph.
Michael Woerister
-58
/
+110
2017-05-31
incr.comp.: Use DefPathHash-based DepNodes in the serialized DepGraph and rem...
Michael Woerister
-268
/
+74
2017-05-23
incr.comp.: Track expanded spans instead of FileMaps.
Michael Woerister
-17
/
+1
2017-05-14
librustc_incremental: remove unused macro in test case
est31
-11
/
+0
2017-05-10
ICH: Handle case of removed FileMaps.
Michael Woerister
-1
/
+5
2017-05-09
Auto merge of #41709 - michaelwoerister:close-metadata-ich-holes, r=nikomatsakis
bors
-49
/
+107
2017-05-08
Remove need for &format!(...) or &&"" dances in `span_label` calls
Oliver Schneider
-1
/
+1
2017-05-08
incr.comp.: Hash more pieces of crate metadata to detect changes there.
Michael Woerister
-49
/
+107
2017-04-16
rustc: use monomorphic const_eval for cross-crate enum discriminants.
Eduard-Mihai Burtescu
-0
/
+11
2017-04-12
ICH: Replace old, transitive metadata hashing with direct hashing approach.
Michael Woerister
-106
/
+81
2017-04-07
ICH: Centrally compute and cache DefPath hashes as part of DefPathTable.
Michael Woerister
-16
/
+1
2017-03-27
Fix various useless derefs and slicings
Oliver Schneider
-2
/
+2
2017-03-22
Move some constants to rustc::ich.
Michael Woerister
-3
/
+2
2017-03-22
Move Fingerprint to rustc::ich::Fingerprint.
Michael Woerister
-6
/
+6
2017-03-19
Auto merge of #39799 - dpc:create_dir_all, r=alexcrichton
bors
-1
/
+1
2017-03-17
Fix race condition in fs::create_dir_all
David Roundy
-1
/
+1
2017-03-14
Refactor `Attribute` to use `Path` and `TokenStream` instead of `MetaItem`.
Jeffrey Seyfried
-4
/
+4
2017-03-10
isolate dep-graph tasks
Niko Matsakis
-1
/
+5
2017-02-25
rustc_typeck: hook up collect and item/body check to on-demand.
Eduard-Mihai Burtescu
-0
/
+6
2017-02-22
detect "bootstrap outputs" when serializing the dep-graph
Niko Matsakis
-3
/
+42
2017-02-08
Rollup merge of #39582 - nikomatsakis:incr-comp-issue-39569, r=michaelwoerister
Corey Farwell
-35
/
+84
2017-02-06
fix case where some edges can't be recreated by expanding the graph
Niko Matsakis
-35
/
+84
2017-02-06
Auto merge of #39500 - michaelwoerister:fix-ich-testing, r=nikomatsakis
bors
-31
/
+122
2017-02-06
Add comment about why the regular unused-attributes infrastructure
Michael Woerister
-0
/
+6
2017-02-04
pacify the mercilous tidy, improve cycle unit test
Niko Matsakis
-8
/
+76
2017-02-03
Let the ICH testing framework check that all #[rustc_dirty] attrs have been a...
Michael Woerister
-31
/
+116
2017-02-03
add a comment about optimality that somehow got removed
Niko Matsakis
-58
/
+76
2017-02-03
s/in_index/input_index/
Niko Matsakis
-7
/
+7
2017-02-03
make dirty process O(dirty)
Niko Matsakis
-50
/
+66
2017-01-31
rewrite the predecessors code to create a reduced graph
Niko Matsakis
-467
/
+1092
2017-01-27
Auto merge of #39281 - michaelwoerister:make-cc-incr-comp-opt-in, r=nikomatsakis
bors
-13
/
+21
2017-01-26
rustc: rename TyCtxt's `map` field to `hir`.
Eduard-Mihai Burtescu
-4
/
+4
2017-01-25
rename `Tables` to `TypeckTables`
Niko Matsakis
-4
/
+4
2017-01-25
merge TypeckItemBody and Tables depnodes
Niko Matsakis
-4
/
+4
2017-01-24
incr.comp.: Make cross-crate tracking for incr. comp. opt-in.
Michael Woerister
-13
/
+21
[prev]
[next]