@@ -1021,25 +1021,22 @@ impl CurrentDepGraph {
1021
1021
fn complete_anon_task ( & mut self , kind : DepKind , task_deps : TaskDeps ) -> DepNodeIndex {
1022
1022
debug_assert ! ( !kind. is_eval_always( ) ) ;
1023
1023
1024
- let mut fingerprint = self . anon_id_seed ;
1025
1024
let mut hasher = StableHasher :: new ( ) ;
1026
1025
1027
- for & read in task_deps. reads . iter ( ) {
1028
- let read_dep_node = self . data [ read] . node ;
1026
+ // The dep node indices are hashed here instead of hashing the dep nodes of the
1027
+ // dependencies. These indices may refer to different nodes per session, but this isn't
1028
+ // a problem here because we that ensure the final dep node hash is per session only by
1029
+ // combining it with the per session random number `anon_id_seed`. This hash only need
1030
+ // to map the dependencies to a single value on a per session basis.
1031
+ task_deps. reads . hash ( & mut hasher) ;
1029
1032
1030
- :: std:: mem:: discriminant ( & read_dep_node. kind ) . hash ( & mut hasher) ;
1033
+ let target_dep_node = DepNode {
1034
+ kind,
1031
1035
1032
1036
// Fingerprint::combine() is faster than sending Fingerprint
1033
1037
// through the StableHasher (at least as long as StableHasher
1034
1038
// is so slow).
1035
- fingerprint = fingerprint. combine ( read_dep_node. hash ) ;
1036
- }
1037
-
1038
- fingerprint = fingerprint. combine ( hasher. finish ( ) ) ;
1039
-
1040
- let target_dep_node = DepNode {
1041
- kind,
1042
- hash : fingerprint,
1039
+ hash : self . anon_id_seed . combine ( hasher. finish ( ) ) ,
1043
1040
} ;
1044
1041
1045
1042
self . intern_node ( target_dep_node, task_deps. reads , Fingerprint :: ZERO ) . 0
0 commit comments