Remove unused tcx parameter

This commit is contained in:
Mark Rousskov 2020-08-12 16:00:44 -04:00
parent 1275cc15d6
commit bff104d4db
2 changed files with 8 additions and 11 deletions

View File

@ -43,9 +43,8 @@ fn lookup<CTX: QueryContext, R, OnHit, OnMiss>(
OnHit: FnOnce(&Self::Stored, DepNodeIndex) -> R,
OnMiss: FnOnce(Self::Key, QueryLookup<'_, CTX, Self::Key, Self::Sharded>) -> R;
fn complete<CTX: QueryContext>(
fn complete(
&self,
tcx: CTX,
lock_sharded_storage: &mut Self::Sharded,
key: Self::Key,
value: Self::Value,
@ -112,9 +111,8 @@ fn lookup<CTX: QueryContext, R, OnHit, OnMiss>(
}
#[inline]
fn complete<CTX: QueryContext>(
fn complete(
&self,
_: CTX,
lock_sharded_storage: &mut Self::Sharded,
key: K,
value: V,
@ -195,9 +193,8 @@ fn lookup<CTX: QueryContext, R, OnHit, OnMiss>(
}
#[inline]
fn complete<CTX: QueryContext>(
fn complete(
&self,
_: CTX,
lock_sharded_storage: &mut Self::Sharded,
key: K,
value: V,

View File

@ -264,7 +264,7 @@ fn try_start<'a, 'b>(
/// Completes the query by updating the query cache with the `result`,
/// signals the waiter and forgets the JobOwner, so it won't poison the query
#[inline(always)]
fn complete(self, tcx: CTX, result: C::Value, dep_node_index: DepNodeIndex) -> C::Stored {
fn complete(self, result: C::Value, dep_node_index: DepNodeIndex) -> C::Stored {
// We can move out of `self` here because we `mem::forget` it below
let key = unsafe { ptr::read(&self.key) };
let state = self.state;
@ -278,7 +278,7 @@ fn complete(self, tcx: CTX, result: C::Value, dep_node_index: DepNodeIndex) -> C
QueryResult::Started(job) => job,
QueryResult::Poisoned => panic!(),
};
let result = state.cache.complete(tcx, &mut lock.cache, key, result, dep_node_index);
let result = state.cache.complete(&mut lock.cache, key, result, dep_node_index);
(job, result)
};
@ -432,7 +432,7 @@ fn try_execute_query<CTX, C>(
tcx.store_diagnostics_for_anon_node(dep_node_index, diagnostics);
}
return job.complete(tcx, result, dep_node_index);
return job.complete(result, dep_node_index);
}
let dep_node = query.to_dep_node(tcx, &key);
@ -458,7 +458,7 @@ fn try_execute_query<CTX, C>(
})
});
if let Some((result, dep_node_index)) = loaded {
return job.complete(tcx, result, dep_node_index);
return job.complete(result, dep_node_index);
}
}
@ -609,7 +609,7 @@ fn force_query_with_job<C, CTX>(
}
}
let result = job.complete(tcx, result, dep_node_index);
let result = job.complete(result, dep_node_index);
(result, dep_node_index)
}