diff --git a/compiler/rustc_query_system/src/query/plumbing.rs b/compiler/rustc_query_system/src/query/plumbing.rs index 36532135f01..cbbb449b4f8 100644 --- a/compiler/rustc_query_system/src/query/plumbing.rs +++ b/compiler/rustc_query_system/src/query/plumbing.rs @@ -50,7 +50,6 @@ pub struct QueryState { } impl QueryState { - #[inline] pub(super) fn get_lookup<'tcx>( &'tcx self, key: &C::Key, @@ -84,7 +83,6 @@ where Q: Clone, C: QueryCache, { - #[inline(always)] pub fn iter_results( &self, f: impl for<'a> FnOnce( @@ -94,7 +92,6 @@ where self.cache.iter(&self.shards, |shard| &mut shard.cache, f) } - #[inline(always)] pub fn all_inactive(&self) -> bool { let shards = self.shards.lock_shards(); shards.iter().all(|shard| shard.active.is_empty()) @@ -270,7 +267,6 @@ where /// 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, 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) }; @@ -294,7 +290,6 @@ where } } -#[inline(always)] fn with_diagnostics(f: F) -> (R, ThinVec) where F: FnOnce(Option<&Lock>>) -> R, @@ -362,7 +357,6 @@ where /// It returns the shard index and a lock guard to the shard, /// which will be used if the query is not in the cache and we need /// to compute it. -#[inline(always)] fn try_get_cached( tcx: CTX, state: &QueryState, @@ -394,7 +388,6 @@ where ) } -#[inline(always)] fn try_execute_query( tcx: CTX, state: &QueryState, @@ -727,7 +720,6 @@ fn force_query_impl( ); } -#[inline(always)] pub fn get_query(tcx: CTX, span: Span, key: Q::Key) -> Q::Stored where Q: QueryDescription, @@ -739,7 +731,6 @@ where get_query_impl(tcx, Q::query_state(tcx), span, key, &Q::VTABLE) } -#[inline(always)] pub fn ensure_query(tcx: CTX, key: Q::Key) where Q: QueryDescription, @@ -749,7 +740,6 @@ where ensure_query_impl(tcx, Q::query_state(tcx), key, &Q::VTABLE) } -#[inline(always)] pub fn force_query(tcx: CTX, key: Q::Key, span: Span, dep_node: DepNode) where Q: QueryDescription,