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
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
librustc
/
dep_graph
/
graph.rs
Age
Commit message (
Expand
)
Author
Lines
2018-03-19
Convert SerializedDepGraph to be a struct-of-arrays
Wesley Wiser
-4
/
+3
2018-03-16
incr.comp.: Make sanity check in try_mark_green() aware of error conditions.
Michael Woerister
-2
/
+9
2018-03-09
Move PROFQ_CHAN to a Session field
John Kåre Alsaker
-18
/
+19
2018-03-02
Replace Rc with Lrc for shared data
John Kåre Alsaker
-6
/
+6
2018-02-28
Rollup merge of #48479 - mark-i-m:rustc-guide, r=nikomatsakis
kennytm
-2
/
+2
2018-02-25
Change links to readmes
Mark Mansi
-2
/
+2
2018-02-14
incr.comp.: Store DepNode colors in a dense array instead of a hashmap.
Michael Woerister
-44
/
+104
2018-01-09
Replace uses of DepGraph.in_ignore with DepGraph.with_ignore
John Kåre Alsaker
-3
/
+11
2018-01-01
Fix broken links in internal docs
Malo Jaffré
-3
/
+3
2017-12-20
incr.comp.: Replace Fingerprint::zero() with a constant.
Michael Woerister
-6
/
+6
2017-12-20
incr.comp.: Use an IndexVec instead of a hashmap for storing result hashes.
Michael Woerister
-37
/
+73
2017-12-01
incr.comp.: Use the awesome new '_ in a few places.
Michael Woerister
-4
/
+4
2017-12-01
incr.comp.: Load diagnostics from previous session lazily and clean up on-dis...
Michael Woerister
-5
/
+5
2017-11-20
incr.comp.: Make sure we don't lose unused green results from the query cache.
Michael Woerister
-0
/
+33
2017-11-17
[incremental] Collect stats about duplicated edge reads from queries
Wesley Wiser
-0
/
+14
2017-11-14
incr.comp.: Cache TypeckTables and add -Zincremental-queries flag.
Michael Woerister
-0
/
+6
2017-11-10
incr.comp.: Don't crash in DepGraph::try_mark_green() when encountering a rem...
Michael Woerister
-4
/
+12
2017-11-08
Auto merge of #45867 - michaelwoerister:check-ich-stability, r=nikomatsakis
bors
-51
/
+83
2017-11-08
incr.comp.: Make DefSpan an input dep-node so it is not affected by the exist...
Michael Woerister
-0
/
+3
2017-11-07
incr.comp.: Make assertion in try_mark_green() more targeted.
Michael Woerister
-4
/
+14
2017-11-07
incr.comp.: Allow for forcing input nodes lazily.
Michael Woerister
-51
/
+70
2017-11-07
incr.comp.: Improve error message for unknown fingerprint.
Michael Woerister
-1
/
+6
2017-11-04
Make DepNodeIndex use newtype_index macro
Santiago Pastorino
-17
/
+2
2017-11-01
Auto merge of #45472 - michaelwoerister:incr-comp-caching-base, r=nikomatsakis
bors
-0
/
+19
2017-10-26
[incremental] Add support for eval always queries
Wesley Wiser
-3
/
+57
2017-10-25
incr.comp.: Implement query diagnostic persistence.
Michael Woerister
-0
/
+19
2017-10-21
rustc: Move bytecode compression into codegen
Alex Crichton
-2
/
+8
2017-10-08
Rollup merge of #45018 - michaelwoerister:fix-dep-node-debug-recursion, r=eddyb
kennytm
-1
/
+1
2017-10-05
Fix infinite recursion in <DepNode as Debug>.
Michael Woerister
-1
/
+1
2017-10-04
Generate SerializedDepNodeIndex using newtype_index macro
Santiago Pastorino
-1
/
+1
2017-10-04
Generate DepNodeIndexNew using newtype_index macro
Santiago Pastorino
-1
/
+1
2017-10-04
incr.comp.: Address review comments.
Michael Woerister
-25
/
+54
2017-10-02
incr.comp.: Do some cleanup.
Michael Woerister
-1
/
+4
2017-10-02
incr.comp.: Remove legacy dep-graph runtime.
Michael Woerister
-117
/
+78
2017-10-02
incr.comp.: Remove saving and loading of legacy dep-graph.
Michael Woerister
-1
/
+3
2017-10-02
incr.comp.: Build DepGraphQuery from new dep-graph impl.
Michael Woerister
-1
/
+12
2017-10-02
incr.comp.: Use red/green tracking for CGU re-use.
Michael Woerister
-19
/
+50
2017-10-02
incr.comp.: Add some logging to DepGraph::try_mark_green().
Michael Woerister
-0
/
+28
2017-10-02
incr.comp.: Re-execute queries during red/green marking in order to find out ...
Michael Woerister
-5
/
+29
2017-10-02
incr.comp.: Add minimal version of try_mark_green procedure.
Michael Woerister
-15
/
+131
2017-10-02
incr.comp.: Determine red/green state of every new node.
Michael Woerister
-7
/
+50
2017-09-27
Remove DepNodeIndexNew::new and ::index, they are already impl for Idx
Santiago Pastorino
-13
/
+5
2017-09-23
incr.comp.: Remove out-dated unit test and unnecessary assertion.
Michael Woerister
-3
/
+0
2017-09-23
incr.comp.: Serialize and deserialize new DepGraph
Michael Woerister
-53
/
+75
2017-09-23
incr.comp.: Initial implemenation of append-only dep-graph.
Michael Woerister
-10
/
+262
2017-09-20
incr.comp.: Add some comments.
Michael Woerister
-0
/
+8
2017-09-20
incr.comp.: Store result fingerprints in DepGraph.
Michael Woerister
-4
/
+26
2017-09-18
incr.comp.: Move result fingerprinting to DepGraph::with_task().
Michael Woerister
-11
/
+25
2017-09-05
rustc: Fix a borrow mut error with debug assertions
Alex Crichton
-3
/
+6
2017-08-25
Auto merge of #44012 - michaelwoerister:cache-hir-dep-node-index, r=nikomatsakis
bors
-0
/
+8
[next]