9
9
// except according to those terms.
10
10
11
11
use errors:: DiagnosticBuilder ;
12
- use rustc_data_structures:: stable_hasher:: { HashStable , StableHasher ,
13
- StableHashingContextProvider } ;
12
+ use rustc_data_structures:: stable_hasher:: { HashStable , StableHasher } ;
14
13
use rustc_data_structures:: fx:: { FxHashMap , FxHashSet } ;
15
14
use rustc_data_structures:: indexed_vec:: { Idx , IndexVec } ;
16
15
use rustc_data_structures:: sync:: Lrc ;
@@ -20,7 +19,7 @@ use std::hash::Hash;
20
19
use ty:: TyCtxt ;
21
20
use util:: common:: { ProfileQueriesMsg , profq_msg} ;
22
21
23
- use ich:: Fingerprint ;
22
+ use ich:: { StableHashingContext , StableHashingContextProvider , Fingerprint } ;
24
23
25
24
use super :: debug:: EdgeFilter ;
26
25
use super :: dep_node:: { DepNode , DepKind , WorkProductId } ;
@@ -189,47 +188,49 @@ impl DepGraph {
189
188
/// `arg` parameter.
190
189
///
191
190
/// [rustc guide]: https://rust-lang-nursery.github.io/rustc-guide/incremental-compilation.html
192
- pub fn with_task < C , A , R , HCX > ( & self ,
191
+ pub fn with_task < ' gcx , C , A , R > ( & self ,
193
192
key : DepNode ,
194
193
cx : C ,
195
194
arg : A ,
196
195
task : fn ( C , A ) -> R )
197
196
-> ( R , DepNodeIndex )
198
- where C : DepGraphSafe + StableHashingContextProvider < ContextType = HCX > ,
199
- R : HashStable < HCX > ,
197
+ where C : DepGraphSafe + StableHashingContextProvider < ' gcx > ,
198
+ R : HashStable < StableHashingContext < ' gcx > > ,
200
199
{
201
200
self . with_task_impl ( key, cx, arg, task,
202
201
|data, key| data. borrow_mut ( ) . push_task ( key) ,
203
202
|data, key| data. borrow_mut ( ) . pop_task ( key) )
204
203
}
205
204
206
- fn with_task_impl < C , A , R , HCX > ( & self ,
205
+ fn with_task_impl < ' gcx , C , A , R > ( & self ,
207
206
key : DepNode ,
208
207
cx : C ,
209
208
arg : A ,
210
209
task : fn ( C , A ) -> R ,
211
210
push : fn ( & RefCell < CurrentDepGraph > , DepNode ) ,
212
211
pop : fn ( & RefCell < CurrentDepGraph > , DepNode ) -> DepNodeIndex )
213
212
-> ( R , DepNodeIndex )
214
- where C : DepGraphSafe + StableHashingContextProvider < ContextType = HCX > ,
215
- R : HashStable < HCX > ,
213
+ where C : DepGraphSafe + StableHashingContextProvider < ' gcx > ,
214
+ R : HashStable < StableHashingContext < ' gcx > > ,
216
215
{
217
216
if let Some ( ref data) = self . data {
218
217
push ( & data. current , key) ;
219
- if cfg ! ( debug_assertions) {
220
- profq_msg ( ProfileQueriesMsg :: TaskBegin ( key. clone ( ) ) )
221
- } ;
222
218
223
219
// In incremental mode, hash the result of the task. We don't
224
220
// do anything with the hash yet, but we are computing it
225
221
// anyway so that
226
222
// - we make sure that the infrastructure works and
227
223
// - we can get an idea of the runtime cost.
228
- let mut hcx = cx. create_stable_hashing_context ( ) ;
224
+ let mut hcx = cx. get_stable_hashing_context ( ) ;
225
+
226
+ if cfg ! ( debug_assertions) {
227
+ profq_msg ( hcx. sess ( ) , ProfileQueriesMsg :: TaskBegin ( key. clone ( ) ) )
228
+ } ;
229
229
230
230
let result = task ( cx, arg) ;
231
+
231
232
if cfg ! ( debug_assertions) {
232
- profq_msg ( ProfileQueriesMsg :: TaskEnd )
233
+ profq_msg ( hcx . sess ( ) , ProfileQueriesMsg :: TaskEnd )
233
234
} ;
234
235
235
236
let dep_node_index = pop ( & data. current , key) ;
@@ -274,7 +275,7 @@ impl DepGraph {
274
275
( result, dep_node_index)
275
276
} else {
276
277
if key. kind . fingerprint_needed_for_crate_hash ( ) {
277
- let mut hcx = cx. create_stable_hashing_context ( ) ;
278
+ let mut hcx = cx. get_stable_hashing_context ( ) ;
278
279
let result = task ( cx, arg) ;
279
280
let mut stable_hasher = StableHasher :: new ( ) ;
280
281
result. hash_stable ( & mut hcx, & mut stable_hasher) ;
@@ -314,14 +315,14 @@ impl DepGraph {
314
315
315
316
/// Execute something within an "eval-always" task which is a task
316
317
// that runs whenever anything changes.
317
- pub fn with_eval_always_task < C , A , R , HCX > ( & self ,
318
+ pub fn with_eval_always_task < ' gcx , C , A , R > ( & self ,
318
319
key : DepNode ,
319
320
cx : C ,
320
321
arg : A ,
321
322
task : fn ( C , A ) -> R )
322
323
-> ( R , DepNodeIndex )
323
- where C : DepGraphSafe + StableHashingContextProvider < ContextType = HCX > ,
324
- R : HashStable < HCX > ,
324
+ where C : DepGraphSafe + StableHashingContextProvider < ' gcx > ,
325
+ R : HashStable < StableHashingContext < ' gcx > > ,
325
326
{
326
327
self . with_task_impl ( key, cx, arg, task,
327
328
|data, key| data. borrow_mut ( ) . push_eval_always_task ( key) ,
0 commit comments