Make queries thread safe. Remove the query stack and make queries point to their parents instead.
This commit is contained in:
parent
4be5d360cd
commit
29a4ec0d43
6 changed files with 486 additions and 182 deletions
|
@ -1222,7 +1222,7 @@ impl<'a, 'gcx, 'tcx> TyCtxt<'a, 'gcx, 'tcx> {
|
|||
Lrc::new(StableVec::new(v)));
|
||||
}
|
||||
|
||||
tls::enter_global(GlobalCtxt {
|
||||
let gcx = &GlobalCtxt {
|
||||
sess: s,
|
||||
cstore,
|
||||
global_arenas: &arenas.global,
|
||||
|
@ -1263,7 +1263,9 @@ impl<'a, 'gcx, 'tcx> TyCtxt<'a, 'gcx, 'tcx> {
|
|||
all_traits: RefCell::new(None),
|
||||
tx_to_llvm_workers: tx,
|
||||
output_filenames: Arc::new(output_filenames.clone()),
|
||||
}, f)
|
||||
};
|
||||
|
||||
tls::enter_global(gcx, f)
|
||||
}
|
||||
|
||||
pub fn consider_optimizing<T: Fn() -> String>(&self, msg: T) -> bool {
|
||||
|
@ -1487,11 +1489,25 @@ impl<'a, 'tcx> TyCtxt<'a, 'tcx, 'tcx> {
|
|||
|
||||
impl<'gcx: 'tcx, 'tcx> GlobalCtxt<'gcx> {
|
||||
/// Call the closure with a local `TyCtxt` using the given arena.
|
||||
pub fn enter_local<F, R>(&self, arena: &'tcx DroplessArena, f: F) -> R
|
||||
pub fn enter_local<F, R>(&self,
|
||||
arena: &'tcx DroplessArena,
|
||||
f: F) -> R
|
||||
where F: for<'a> FnOnce(TyCtxt<'a, 'gcx, 'tcx>) -> R
|
||||
{
|
||||
let interners = CtxtInterners::new(arena);
|
||||
tls::enter(self, &interners, f)
|
||||
let tcx = TyCtxt {
|
||||
gcx: self,
|
||||
interners: &interners,
|
||||
};
|
||||
ty::tls::with_related_context(tcx.global_tcx(), |icx| {
|
||||
let new_icx = ty::tls::ImplicitCtxt {
|
||||
tcx,
|
||||
query: icx.query.clone(),
|
||||
};
|
||||
ty::tls::enter_context(&new_icx, |new_icx| {
|
||||
f(new_icx.tcx)
|
||||
})
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1638,21 +1654,34 @@ impl<'a, 'tcx> Lift<'tcx> for &'a Slice<Predicate<'a>> {
|
|||
}
|
||||
|
||||
pub mod tls {
|
||||
use super::{CtxtInterners, GlobalCtxt, TyCtxt};
|
||||
use super::{GlobalCtxt, TyCtxt};
|
||||
|
||||
use std::cell::Cell;
|
||||
use std::fmt;
|
||||
use std::mem;
|
||||
use syntax_pos;
|
||||
use ty::maps;
|
||||
use errors::{Diagnostic, TRACK_DIAGNOSTICS};
|
||||
use rustc_data_structures::OnDrop;
|
||||
use rustc_data_structures::sync::Lrc;
|
||||
|
||||
/// Marker types used for the scoped TLS slot.
|
||||
/// The type context cannot be used directly because the scoped TLS
|
||||
/// in libstd doesn't allow types generic over lifetimes.
|
||||
enum ThreadLocalGlobalCtxt {}
|
||||
enum ThreadLocalInterners {}
|
||||
#[derive(Clone)]
|
||||
pub struct ImplicitCtxt<'a, 'gcx: 'a+'tcx, 'tcx: 'a> {
|
||||
pub tcx: TyCtxt<'a, 'gcx, 'tcx>,
|
||||
pub query: Option<Lrc<maps::QueryJob<'gcx>>>,
|
||||
}
|
||||
|
||||
thread_local! {
|
||||
static TLS_TCX: Cell<Option<(*const ThreadLocalGlobalCtxt,
|
||||
*const ThreadLocalInterners)>> = Cell::new(None)
|
||||
thread_local!(static TLV: Cell<usize> = Cell::new(0));
|
||||
|
||||
fn set_tlv<F: FnOnce() -> R, R>(value: usize, f: F) -> R {
|
||||
let old = get_tlv();
|
||||
let _reset = OnDrop(move || TLV.with(|tlv| tlv.set(old)));
|
||||
TLV.with(|tlv| tlv.set(value));
|
||||
f()
|
||||
}
|
||||
|
||||
fn get_tlv() -> usize {
|
||||
TLV.with(|tlv| tlv.get())
|
||||
}
|
||||
|
||||
fn span_debug(span: syntax_pos::Span, f: &mut fmt::Formatter) -> fmt::Result {
|
||||
|
@ -1661,59 +1690,120 @@ pub mod tls {
|
|||
})
|
||||
}
|
||||
|
||||
pub fn enter_global<'gcx, F, R>(gcx: GlobalCtxt<'gcx>, f: F) -> R
|
||||
where F: for<'a> FnOnce(TyCtxt<'a, 'gcx, 'gcx>) -> R
|
||||
fn track_diagnostic(diagnostic: &Diagnostic) {
|
||||
with_context(|context| {
|
||||
if let Some(ref query) = context.query {
|
||||
query.diagnostics.lock().push(diagnostic.clone());
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
pub fn with_thread_locals<F, R>(f: F) -> R
|
||||
where F: FnOnce() -> R
|
||||
{
|
||||
syntax_pos::SPAN_DEBUG.with(|span_dbg| {
|
||||
let original_span_debug = span_dbg.get();
|
||||
span_dbg.set(span_debug);
|
||||
let result = enter(&gcx, &gcx.global_interners, f);
|
||||
|
||||
let _on_drop = OnDrop(move || {
|
||||
span_dbg.set(original_span_debug);
|
||||
result
|
||||
});
|
||||
|
||||
TRACK_DIAGNOSTICS.with(|current| {
|
||||
let original = current.get();
|
||||
current.set(track_diagnostic);
|
||||
|
||||
let _on_drop = OnDrop(move || {
|
||||
current.set(original);
|
||||
});
|
||||
|
||||
f()
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
pub fn enter<'a, 'gcx: 'tcx, 'tcx, F, R>(gcx: &'a GlobalCtxt<'gcx>,
|
||||
interners: &'a CtxtInterners<'tcx>,
|
||||
f: F) -> R
|
||||
where F: FnOnce(TyCtxt<'a, 'gcx, 'tcx>) -> R
|
||||
pub fn enter_global<'gcx, F, R>(gcx: &GlobalCtxt<'gcx>, f: F) -> R
|
||||
where F: for<'a> FnOnce(TyCtxt<'a, 'gcx, 'gcx>) -> R
|
||||
{
|
||||
let gcx_ptr = gcx as *const _ as *const ThreadLocalGlobalCtxt;
|
||||
let interners_ptr = interners as *const _ as *const ThreadLocalInterners;
|
||||
TLS_TCX.with(|tls| {
|
||||
let prev = tls.get();
|
||||
tls.set(Some((gcx_ptr, interners_ptr)));
|
||||
let ret = f(TyCtxt {
|
||||
with_thread_locals(|| {
|
||||
let tcx = TyCtxt {
|
||||
gcx,
|
||||
interners,
|
||||
});
|
||||
tls.set(prev);
|
||||
ret
|
||||
interners: &gcx.global_interners,
|
||||
};
|
||||
let icx = ImplicitCtxt {
|
||||
tcx,
|
||||
query: None,
|
||||
};
|
||||
enter_context(&icx, |_| {
|
||||
f(tcx)
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
pub fn enter_context<'a, 'gcx: 'tcx, 'tcx, F, R>(context: &ImplicitCtxt<'a, 'gcx, 'tcx>,
|
||||
f: F) -> R
|
||||
where F: FnOnce(&ImplicitCtxt<'a, 'gcx, 'tcx>) -> R
|
||||
{
|
||||
set_tlv(context as *const _ as usize, || {
|
||||
f(&context)
|
||||
})
|
||||
}
|
||||
|
||||
pub fn with_context_opt<F, R>(f: F) -> R
|
||||
where F: for<'a, 'gcx, 'tcx> FnOnce(Option<&ImplicitCtxt<'a, 'gcx, 'tcx>>) -> R
|
||||
{
|
||||
let context = get_tlv();
|
||||
if context == 0 {
|
||||
f(None)
|
||||
} else {
|
||||
unsafe { f(Some(&*(context as *const ImplicitCtxt))) }
|
||||
}
|
||||
}
|
||||
|
||||
pub fn with_fully_related_context<'a, 'gcx, 'tcx, F, R>(tcx: TyCtxt<'a, 'gcx, 'tcx>, f: F) -> R
|
||||
where F: for<'b> FnOnce(&ImplicitCtxt<'b, 'gcx, 'tcx>) -> R
|
||||
{
|
||||
with_context(|context| {
|
||||
unsafe {
|
||||
let gcx = tcx.gcx as *const _ as usize;
|
||||
let interners = tcx.interners as *const _ as usize;
|
||||
assert!(context.tcx.gcx as *const _ as usize == gcx);
|
||||
assert!(context.tcx.interners as *const _ as usize == interners);
|
||||
let context: &ImplicitCtxt = mem::transmute(context);
|
||||
f(context)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
pub fn with_related_context<'a, 'gcx, 'tcx1, F, R>(tcx: TyCtxt<'a, 'gcx, 'tcx1>, f: F) -> R
|
||||
where F: for<'b, 'tcx2> FnOnce(&ImplicitCtxt<'b, 'gcx, 'tcx2>) -> R
|
||||
{
|
||||
with_context(|context| {
|
||||
unsafe {
|
||||
let gcx = tcx.gcx as *const _ as usize;
|
||||
assert!(context.tcx.gcx as *const _ as usize == gcx);
|
||||
let context: &ImplicitCtxt = mem::transmute(context);
|
||||
f(context)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
pub fn with_context<F, R>(f: F) -> R
|
||||
where F: for<'a, 'gcx, 'tcx> FnOnce(&ImplicitCtxt<'a, 'gcx, 'tcx>) -> R
|
||||
{
|
||||
with_context_opt(|opt_context| f(opt_context.expect("no ImplicitCtxt stored in tls")))
|
||||
}
|
||||
|
||||
pub fn with<F, R>(f: F) -> R
|
||||
where F: for<'a, 'gcx, 'tcx> FnOnce(TyCtxt<'a, 'gcx, 'tcx>) -> R
|
||||
{
|
||||
TLS_TCX.with(|tcx| {
|
||||
let (gcx, interners) = tcx.get().unwrap();
|
||||
let gcx = unsafe { &*(gcx as *const GlobalCtxt) };
|
||||
let interners = unsafe { &*(interners as *const CtxtInterners) };
|
||||
f(TyCtxt {
|
||||
gcx,
|
||||
interners,
|
||||
})
|
||||
})
|
||||
with_context(|context| f(context.tcx))
|
||||
}
|
||||
|
||||
pub fn with_opt<F, R>(f: F) -> R
|
||||
where F: for<'a, 'gcx, 'tcx> FnOnce(Option<TyCtxt<'a, 'gcx, 'tcx>>) -> R
|
||||
{
|
||||
if TLS_TCX.with(|tcx| tcx.get().is_some()) {
|
||||
with(|v| f(Some(v)))
|
||||
} else {
|
||||
f(None)
|
||||
}
|
||||
with_context_opt(|opt_context| f(opt_context.map(|context| context.tcx)))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
91
src/librustc/ty/maps/job.rs
Normal file
91
src/librustc/ty/maps/job.rs
Normal file
|
@ -0,0 +1,91 @@
|
|||
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
||||
// file at the top-level directory of this distribution and at
|
||||
// http://rust-lang.org/COPYRIGHT.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
#![allow(warnings)]
|
||||
|
||||
use std::mem;
|
||||
use std::sync::atomic::AtomicBool;
|
||||
use std::sync::atomic::Ordering;
|
||||
use rustc_data_structures::sync::{Lock, LockGuard, Lrc};
|
||||
use syntax_pos::Span;
|
||||
use ty::tls;
|
||||
use ty::maps::Query;
|
||||
use ty::maps::plumbing::CycleError;
|
||||
use ty::context::TyCtxt;
|
||||
use errors::Diagnostic;
|
||||
use std::process;
|
||||
use std::fmt;
|
||||
use std::sync::{Arc, Mutex};
|
||||
use std::collections::HashSet;
|
||||
|
||||
pub struct PoisonedJob;
|
||||
|
||||
#[derive(Clone, Debug)]
|
||||
pub struct StackEntry<'tcx> {
|
||||
pub span: Span,
|
||||
pub query: Query<'tcx>,
|
||||
}
|
||||
|
||||
pub struct QueryJob<'tcx> {
|
||||
pub entry: StackEntry<'tcx>,
|
||||
pub parent: Option<Lrc<QueryJob<'tcx>>>,
|
||||
pub track_diagnostics: bool,
|
||||
pub diagnostics: Lock<Vec<Diagnostic>>,
|
||||
}
|
||||
|
||||
impl<'tcx> QueryJob<'tcx> {
|
||||
pub fn new(
|
||||
entry: StackEntry<'tcx>,
|
||||
track_diagnostics: bool,
|
||||
parent: Option<Lrc<QueryJob<'tcx>>>,
|
||||
) -> Self {
|
||||
QueryJob {
|
||||
track_diagnostics,
|
||||
diagnostics: Lock::new(Vec::new()),
|
||||
entry,
|
||||
parent,
|
||||
}
|
||||
}
|
||||
|
||||
pub(super) fn await<'lcx>(
|
||||
&self,
|
||||
tcx: TyCtxt<'_, 'tcx, 'lcx>,
|
||||
span: Span,
|
||||
) -> Result<(), CycleError<'tcx>> {
|
||||
// The query is already executing, so this must be a cycle for single threaded rustc,
|
||||
// so we find the cycle and return it
|
||||
|
||||
let mut current_job = tls::with_related_context(tcx, |icx| icx.query.clone());
|
||||
let mut cycle = Vec::new();
|
||||
|
||||
while let Some(job) = current_job {
|
||||
cycle.insert(0, job.entry.clone());
|
||||
|
||||
if &*job as *const _ == self as *const _ {
|
||||
break;
|
||||
}
|
||||
|
||||
current_job = job.parent.clone();
|
||||
}
|
||||
|
||||
Err(CycleError { span, cycle })
|
||||
}
|
||||
|
||||
pub fn signal_complete(&self) {
|
||||
// Signals to waiters that the query is complete.
|
||||
// This is a no-op for single threaded rustc
|
||||
}
|
||||
}
|
||||
|
||||
pub(super) enum QueryResult<'tcx, T> {
|
||||
Started(Lrc<QueryJob<'tcx>>),
|
||||
Complete(T),
|
||||
Poisoned,
|
||||
}
|
|
@ -14,7 +14,7 @@ use hir::def_id::{CrateNum, DefId, DefIndex};
|
|||
use hir::def::{Def, Export};
|
||||
use hir::{self, TraitCandidate, ItemLocalId, TransFnAttrs};
|
||||
use hir::svh::Svh;
|
||||
use infer::canonical::{Canonical, QueryResult};
|
||||
use infer::canonical::{self, Canonical};
|
||||
use lint;
|
||||
use middle::borrowck::BorrowCheckResult;
|
||||
use middle::cstore::{ExternCrate, LinkagePreference, NativeLibrary,
|
||||
|
@ -66,6 +66,10 @@ mod plumbing;
|
|||
use self::plumbing::*;
|
||||
pub use self::plumbing::force_from_dep_node;
|
||||
|
||||
mod job;
|
||||
pub use self::job::{QueryJob, StackEntry, PoisonedJob};
|
||||
use self::job::QueryResult;
|
||||
|
||||
mod keys;
|
||||
pub use self::keys::Key;
|
||||
|
||||
|
@ -399,7 +403,7 @@ define_maps! { <'tcx>
|
|||
[] fn normalize_projection_ty: NormalizeProjectionTy(
|
||||
CanonicalProjectionGoal<'tcx>
|
||||
) -> Result<
|
||||
Lrc<Canonical<'tcx, QueryResult<'tcx, NormalizationResult<'tcx>>>>,
|
||||
Lrc<Canonical<'tcx, canonical::QueryResult<'tcx, NormalizationResult<'tcx>>>>,
|
||||
NoSolution,
|
||||
>,
|
||||
|
||||
|
@ -412,7 +416,7 @@ define_maps! { <'tcx>
|
|||
[] fn dropck_outlives: DropckOutlives(
|
||||
CanonicalTyGoal<'tcx>
|
||||
) -> Result<
|
||||
Lrc<Canonical<'tcx, QueryResult<'tcx, DropckOutlivesResult<'tcx>>>>,
|
||||
Lrc<Canonical<'tcx, canonical::QueryResult<'tcx, DropckOutlivesResult<'tcx>>>>,
|
||||
NoSolution,
|
||||
>,
|
||||
|
||||
|
|
|
@ -30,6 +30,7 @@ use syntax::codemap::{CodeMap, StableFilemapId};
|
|||
use syntax_pos::{BytePos, Span, DUMMY_SP, FileMap};
|
||||
use syntax_pos::hygiene::{Mark, SyntaxContext, ExpnInfo};
|
||||
use ty;
|
||||
use ty::maps::job::QueryResult;
|
||||
use ty::codec::{self as ty_codec, TyDecoder, TyEncoder};
|
||||
use ty::context::TyCtxt;
|
||||
|
||||
|
@ -239,6 +240,10 @@ impl<'sess> OnDiskCache<'sess> {
|
|||
for (key, entry) in const_eval::get_cache_internal(tcx).map.iter() {
|
||||
use ty::maps::config::QueryDescription;
|
||||
if const_eval::cache_on_disk(key.clone()) {
|
||||
let entry = match *entry {
|
||||
QueryResult::Complete(ref v) => v,
|
||||
_ => panic!("incomplete query"),
|
||||
};
|
||||
if let Ok(ref value) = entry.value {
|
||||
let dep_node = SerializedDepNodeIndex::new(entry.index.index());
|
||||
|
||||
|
@ -1109,6 +1114,10 @@ fn encode_query_results<'enc, 'a, 'tcx, Q, E>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
|||
{
|
||||
for (key, entry) in Q::get_cache_internal(tcx).map.iter() {
|
||||
if Q::cache_on_disk(key.clone()) {
|
||||
let entry = match *entry {
|
||||
QueryResult::Complete(ref v) => v,
|
||||
_ => panic!("incomplete query"),
|
||||
};
|
||||
let dep_node = SerializedDepNodeIndex::new(entry.index.index());
|
||||
|
||||
// Record position of the cache entry
|
||||
|
|
|
@ -15,19 +15,18 @@
|
|||
use dep_graph::{DepNodeIndex, DepNode, DepKind, DepNodeColor};
|
||||
use errors::DiagnosticBuilder;
|
||||
use ty::{TyCtxt};
|
||||
use ty::maps::Query; // NB: actually generated by the macros in this file
|
||||
use ty::maps::config::QueryDescription;
|
||||
use ty::maps::job::{QueryResult, StackEntry};
|
||||
use ty::item_path;
|
||||
|
||||
use rustc_data_structures::fx::{FxHashMap};
|
||||
use std::cell::{Ref, RefMut};
|
||||
use rustc_data_structures::sync::LockGuard;
|
||||
use std::marker::PhantomData;
|
||||
use std::mem;
|
||||
use syntax_pos::Span;
|
||||
|
||||
pub(super) struct QueryMap<'tcx, D: QueryDescription<'tcx>> {
|
||||
phantom: PhantomData<(D, &'tcx ())>,
|
||||
pub(super) map: FxHashMap<D::Key, QueryValue<D::Value>>,
|
||||
pub(super) map: FxHashMap<D::Key, QueryResult<'tcx, QueryValue<D::Value>>>,
|
||||
}
|
||||
|
||||
pub(super) struct QueryValue<T> {
|
||||
|
@ -57,23 +56,19 @@ impl<'tcx, M: QueryDescription<'tcx>> QueryMap<'tcx, M> {
|
|||
|
||||
pub(super) trait GetCacheInternal<'tcx>: QueryDescription<'tcx> + Sized {
|
||||
fn get_cache_internal<'a>(tcx: TyCtxt<'a, 'tcx, 'tcx>)
|
||||
-> Ref<'a, QueryMap<'tcx, Self>>;
|
||||
-> LockGuard<'a, QueryMap<'tcx, Self>>;
|
||||
}
|
||||
|
||||
pub(super) struct CycleError<'a, 'tcx: 'a> {
|
||||
span: Span,
|
||||
cycle: RefMut<'a, [(Span, Query<'tcx>)]>,
|
||||
#[derive(Clone)]
|
||||
pub(super) struct CycleError<'tcx> {
|
||||
pub(super) span: Span,
|
||||
pub(super) cycle: Vec<StackEntry<'tcx>>,
|
||||
}
|
||||
|
||||
impl<'a, 'gcx, 'tcx> TyCtxt<'a, 'gcx, 'tcx> {
|
||||
pub(super) fn report_cycle(self, CycleError { span, cycle }: CycleError)
|
||||
pub(super) fn report_cycle(self, CycleError { span, cycle: stack }: CycleError)
|
||||
-> DiagnosticBuilder<'a>
|
||||
{
|
||||
// Subtle: release the refcell lock before invoking `describe()`
|
||||
// below by dropping `cycle`.
|
||||
let stack = cycle.to_vec();
|
||||
mem::drop(cycle);
|
||||
|
||||
assert!(!stack.is_empty());
|
||||
|
||||
// Disable naming impls with types in this path, since that
|
||||
|
@ -87,44 +82,21 @@ impl<'a, 'gcx, 'tcx> TyCtxt<'a, 'gcx, 'tcx> {
|
|||
"cyclic dependency detected");
|
||||
err.span_label(span, "cyclic reference");
|
||||
|
||||
err.span_note(self.sess.codemap().def_span(stack[0].0),
|
||||
&format!("the cycle begins when {}...", stack[0].1.describe(self)));
|
||||
err.span_note(self.sess.codemap().def_span(stack[0].span),
|
||||
&format!("the cycle begins when {}...", stack[0].query.describe(self)));
|
||||
|
||||
for &(span, ref query) in &stack[1..] {
|
||||
for &StackEntry { span, ref query, .. } in &stack[1..] {
|
||||
err.span_note(self.sess.codemap().def_span(span),
|
||||
&format!("...which then requires {}...", query.describe(self)));
|
||||
}
|
||||
|
||||
err.note(&format!("...which then again requires {}, completing the cycle.",
|
||||
stack[0].1.describe(self)));
|
||||
stack[0].query.describe(self)));
|
||||
|
||||
return err
|
||||
})
|
||||
}
|
||||
|
||||
pub(super) fn cycle_check<F, R>(self, span: Span, query: Query<'gcx>, compute: F)
|
||||
-> Result<R, CycleError<'a, 'gcx>>
|
||||
where F: FnOnce() -> R
|
||||
{
|
||||
{
|
||||
let mut stack = self.maps.query_stack.borrow_mut();
|
||||
if let Some((i, _)) = stack.iter().enumerate().rev()
|
||||
.find(|&(_, &(_, ref q))| *q == query) {
|
||||
return Err(CycleError {
|
||||
span,
|
||||
cycle: RefMut::map(stack, |stack| &mut stack[i..])
|
||||
});
|
||||
}
|
||||
stack.push((span, query));
|
||||
}
|
||||
|
||||
let result = compute();
|
||||
|
||||
self.maps.query_stack.borrow_mut().pop();
|
||||
|
||||
Ok(result)
|
||||
}
|
||||
|
||||
/// Try to read a node index for the node dep_node.
|
||||
/// A node will have an index, when it's already been marked green, or when we can mark it
|
||||
/// green. This function will mark the current task as a reader of the specified node, when
|
||||
|
@ -202,7 +174,11 @@ macro_rules! define_maps {
|
|||
[$($modifiers:tt)*] fn $name:ident: $node:ident($K:ty) -> $V:ty,)*) => {
|
||||
|
||||
use dep_graph::DepNodeIndex;
|
||||
use std::cell::RefCell;
|
||||
use std::mem;
|
||||
use errors::Diagnostic;
|
||||
use errors::FatalError;
|
||||
use rustc_data_structures::sync::{Lock, LockGuard};
|
||||
use rustc_data_structures::OnDrop;
|
||||
|
||||
define_map_struct! {
|
||||
tcx: $tcx,
|
||||
|
@ -214,8 +190,7 @@ macro_rules! define_maps {
|
|||
-> Self {
|
||||
Maps {
|
||||
providers,
|
||||
query_stack: RefCell::new(vec![]),
|
||||
$($name: RefCell::new(QueryMap::new())),*
|
||||
$($name: Lock::new(QueryMap::new())),*
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -263,7 +238,7 @@ macro_rules! define_maps {
|
|||
|
||||
impl<$tcx> GetCacheInternal<$tcx> for queries::$name<$tcx> {
|
||||
fn get_cache_internal<'a>(tcx: TyCtxt<'a, $tcx, $tcx>)
|
||||
-> ::std::cell::Ref<'a, QueryMap<$tcx, Self>> {
|
||||
-> LockGuard<'a, QueryMap<$tcx, Self>> {
|
||||
tcx.maps.$name.borrow()
|
||||
}
|
||||
}
|
||||
|
@ -277,10 +252,47 @@ macro_rules! define_maps {
|
|||
DepNode::new(tcx, $node(*key))
|
||||
}
|
||||
|
||||
fn try_get_lock(tcx: TyCtxt<'a, $tcx, 'lcx>,
|
||||
mut span: Span,
|
||||
key: &$K)
|
||||
-> Result<LockGuard<'a, QueryMap<$tcx, Self>>,
|
||||
Result<($V, DepNodeIndex), CycleError<$tcx>>>
|
||||
{
|
||||
loop {
|
||||
let lock = tcx.maps.$name.borrow_mut();
|
||||
let job = if let Some(value) = lock.map.get(key) {
|
||||
match *value {
|
||||
QueryResult::Started(ref job) => Some(job.clone()),
|
||||
QueryResult::Complete(ref value) => {
|
||||
profq_msg!(tcx, ProfileQueriesMsg::CacheHit);
|
||||
return Err(Ok(((&value.value).clone(), value.index)));
|
||||
},
|
||||
QueryResult::Poisoned => FatalError.raise(),
|
||||
}
|
||||
} else {
|
||||
None
|
||||
};
|
||||
let job = if let Some(job) = job {
|
||||
job
|
||||
} else {
|
||||
return Ok(lock);
|
||||
};
|
||||
mem::drop(lock);
|
||||
|
||||
if span == DUMMY_SP && stringify!($name) != "def_span" {
|
||||
span = key.default_span(tcx);
|
||||
}
|
||||
|
||||
if let Err(cycle) = job.await(tcx, span) {
|
||||
return Err(Err(cycle));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn try_get_with(tcx: TyCtxt<'a, $tcx, 'lcx>,
|
||||
mut span: Span,
|
||||
key: $K)
|
||||
-> Result<$V, CycleError<'a, $tcx>>
|
||||
-> Result<$V, CycleError<$tcx>>
|
||||
{
|
||||
debug!("ty::queries::{}::try_get_with(key={:?}, span={:?})",
|
||||
stringify!($name),
|
||||
|
@ -294,24 +306,39 @@ macro_rules! define_maps {
|
|||
)
|
||||
);
|
||||
|
||||
if let Some(value) = tcx.maps.$name.borrow().map.get(&key) {
|
||||
profq_msg!(tcx, ProfileQueriesMsg::CacheHit);
|
||||
tcx.dep_graph.read_index(value.index);
|
||||
return Ok((&value.value).clone());
|
||||
macro_rules! get_lock {
|
||||
() => {{
|
||||
match Self::try_get_lock(tcx, span, &key) {
|
||||
Ok(lock) => lock,
|
||||
Err(result) => {
|
||||
return result.map(|(v, index)| {
|
||||
tcx.dep_graph.read_index(index);
|
||||
v
|
||||
});
|
||||
},
|
||||
}
|
||||
}}
|
||||
}
|
||||
|
||||
let mut lock = get_lock!();
|
||||
|
||||
// FIXME(eddyb) Get more valid Span's on queries.
|
||||
// def_span guard is necessary to prevent a recursive loop,
|
||||
// default_span calls def_span query internally.
|
||||
if span == DUMMY_SP && stringify!($name) != "def_span" {
|
||||
span = key.default_span(tcx)
|
||||
// This might deadlock if we hold the map lock since we might be
|
||||
// waiting for the def_span query and switch to some other fiber
|
||||
// So we drop the lock here and reacquire it
|
||||
mem::drop(lock);
|
||||
span = key.default_span(tcx);
|
||||
lock = get_lock!();
|
||||
}
|
||||
|
||||
// Fast path for when incr. comp. is off. `to_dep_node` is
|
||||
// expensive for some DepKinds.
|
||||
if !tcx.dep_graph.is_fully_enabled() {
|
||||
let null_dep_node = DepNode::new_no_params(::dep_graph::DepKind::Null);
|
||||
return Self::force(tcx, key, span, null_dep_node)
|
||||
return Self::force_with_lock(tcx, key, span, lock, null_dep_node)
|
||||
.map(|(v, _)| v);
|
||||
}
|
||||
|
||||
|
@ -320,34 +347,36 @@ macro_rules! define_maps {
|
|||
if dep_node.kind.is_anon() {
|
||||
profq_msg!(tcx, ProfileQueriesMsg::ProviderBegin);
|
||||
|
||||
let res = tcx.cycle_check(span, Query::$name(key), || {
|
||||
tcx.sess.diagnostic().track_diagnostics(|| {
|
||||
let res = Self::start_job(tcx, span, key, lock, |tcx| {
|
||||
tcx.dep_graph.with_anon_task(dep_node.kind, || {
|
||||
Self::compute_result(tcx.global_tcx(), key)
|
||||
})
|
||||
})
|
||||
})?;
|
||||
|
||||
profq_msg!(tcx, ProfileQueriesMsg::ProviderEnd);
|
||||
let ((result, dep_node_index), diagnostics) = res;
|
||||
let (((result, dep_node_index), diagnostics), job) = res;
|
||||
|
||||
tcx.dep_graph.read_index(dep_node_index);
|
||||
|
||||
tcx.on_disk_query_result_cache
|
||||
.store_diagnostics_for_anon_node(dep_node_index, diagnostics);
|
||||
|
||||
let value = QueryValue::new(result, dep_node_index);
|
||||
let value = QueryValue::new(Clone::clone(&result), dep_node_index);
|
||||
|
||||
return Ok((&tcx.maps
|
||||
tcx.maps
|
||||
.$name
|
||||
.borrow_mut()
|
||||
.map
|
||||
.entry(key)
|
||||
.or_insert(value)
|
||||
.value).clone());
|
||||
.insert(key, QueryResult::Complete(value));
|
||||
|
||||
job.signal_complete();
|
||||
|
||||
return Ok(result);
|
||||
}
|
||||
|
||||
if !dep_node.kind.is_input() {
|
||||
// try_mark_green_and_read may force queries. So we must drop our lock here
|
||||
mem::drop(lock);
|
||||
if let Some(dep_node_index) = tcx.try_mark_green_and_read(&dep_node) {
|
||||
profq_msg!(tcx, ProfileQueriesMsg::CacheHit);
|
||||
return Self::load_from_disk_and_cache_in_memory(tcx,
|
||||
|
@ -356,9 +385,10 @@ macro_rules! define_maps {
|
|||
dep_node_index,
|
||||
&dep_node)
|
||||
}
|
||||
lock = get_lock!();
|
||||
}
|
||||
|
||||
match Self::force(tcx, key, span, dep_node) {
|
||||
match Self::force_with_lock(tcx, key, span, lock, dep_node) {
|
||||
Ok((result, dep_node_index)) => {
|
||||
tcx.dep_graph.read_index(dep_node_index);
|
||||
Ok(result)
|
||||
|
@ -391,6 +421,63 @@ macro_rules! define_maps {
|
|||
}
|
||||
}
|
||||
|
||||
fn start_job<F, R>(tcx: TyCtxt<'_, $tcx, 'lcx>,
|
||||
span: Span,
|
||||
key: $K,
|
||||
mut map: LockGuard<'_, QueryMap<$tcx, Self>>,
|
||||
compute: F)
|
||||
-> Result<((R, Vec<Diagnostic>), Lrc<QueryJob<$tcx>>), CycleError<$tcx>>
|
||||
where F: for<'b> FnOnce(TyCtxt<'b, $tcx, 'lcx>) -> R
|
||||
{
|
||||
let query = Query::$name(Clone::clone(&key));
|
||||
|
||||
let entry = StackEntry {
|
||||
span,
|
||||
query,
|
||||
};
|
||||
|
||||
let (r, job) = ty::tls::with_related_context(tcx, move |icx| {
|
||||
let job = Lrc::new(QueryJob::new(entry, true, icx.query.clone()));
|
||||
|
||||
map.map.entry(key).or_insert(QueryResult::Started(job.clone()));
|
||||
|
||||
mem::drop(map);
|
||||
|
||||
let r = {
|
||||
let on_drop = OnDrop(|| {
|
||||
// Poison the query so jobs waiting on it panics
|
||||
tcx.maps
|
||||
.$name
|
||||
.borrow_mut()
|
||||
.map
|
||||
.insert(key, QueryResult::Poisoned);
|
||||
// Also signal the completion of the job, so waiters
|
||||
// will continue execution
|
||||
job.signal_complete();
|
||||
});
|
||||
|
||||
let icx = ty::tls::ImplicitCtxt {
|
||||
tcx,
|
||||
query: Some(job.clone()),
|
||||
};
|
||||
|
||||
let r = ty::tls::enter_context(&icx, |icx| {
|
||||
compute(icx.tcx)
|
||||
});
|
||||
|
||||
mem::forget(on_drop);
|
||||
|
||||
r
|
||||
};
|
||||
|
||||
(r, job)
|
||||
});
|
||||
|
||||
let diagnostics: Vec<_> = mem::replace(&mut *job.diagnostics.lock(), Vec::new());
|
||||
|
||||
Ok(((r, diagnostics), job))
|
||||
}
|
||||
|
||||
fn compute_result(tcx: TyCtxt<'a, $tcx, 'lcx>, key: $K) -> $V {
|
||||
let provider = tcx.maps.providers[key.map_crate()].$name;
|
||||
provider(tcx.global_tcx(), key)
|
||||
|
@ -401,8 +488,11 @@ macro_rules! define_maps {
|
|||
span: Span,
|
||||
dep_node_index: DepNodeIndex,
|
||||
dep_node: &DepNode)
|
||||
-> Result<$V, CycleError<'a, $tcx>>
|
||||
-> Result<$V, CycleError<$tcx>>
|
||||
{
|
||||
// Note this function can be called concurrently from the same query
|
||||
// We must ensure that this is handled correctly
|
||||
|
||||
debug_assert!(tcx.dep_graph.is_green(dep_node));
|
||||
|
||||
// First we try to load the result from the on-disk cache
|
||||
|
@ -425,24 +515,27 @@ macro_rules! define_maps {
|
|||
None
|
||||
};
|
||||
|
||||
let result = if let Some(result) = result {
|
||||
result
|
||||
let (result, job) = if let Some(result) = result {
|
||||
(result, None)
|
||||
} else {
|
||||
// We could not load a result from the on-disk cache, so
|
||||
// recompute.
|
||||
let (result, _ ) = tcx.cycle_check(span, Query::$name(key), || {
|
||||
|
||||
// The diagnostics for this query have already been
|
||||
// promoted to the current session during
|
||||
// try_mark_green(), so we can ignore them here.
|
||||
tcx.sess.diagnostic().track_diagnostics(|| {
|
||||
let ((result, _), job) = Self::start_job(tcx,
|
||||
span,
|
||||
key,
|
||||
tcx.maps.$name.borrow_mut(),
|
||||
|tcx| {
|
||||
// The dep-graph for this computation is already in
|
||||
// place
|
||||
tcx.dep_graph.with_ignore(|| {
|
||||
Self::compute_result(tcx, key)
|
||||
})
|
||||
})
|
||||
})?;
|
||||
result
|
||||
(result, Some(job))
|
||||
};
|
||||
|
||||
// If -Zincremental-verify-ich is specified, re-hash results from
|
||||
|
@ -475,27 +568,52 @@ macro_rules! define_maps {
|
|||
tcx.dep_graph.mark_loaded_from_cache(dep_node_index, true);
|
||||
}
|
||||
|
||||
let value = QueryValue::new(result, dep_node_index);
|
||||
let value = QueryValue::new(Clone::clone(&result), dep_node_index);
|
||||
|
||||
Ok((&tcx.maps
|
||||
tcx.maps
|
||||
.$name
|
||||
.borrow_mut()
|
||||
.map
|
||||
.entry(key)
|
||||
.or_insert(value)
|
||||
.value).clone())
|
||||
.insert(key, QueryResult::Complete(value));
|
||||
|
||||
job.map(|j| j.signal_complete());
|
||||
|
||||
Ok(result)
|
||||
}
|
||||
|
||||
#[allow(dead_code)]
|
||||
fn force(tcx: TyCtxt<'a, $tcx, 'lcx>,
|
||||
key: $K,
|
||||
span: Span,
|
||||
dep_node: DepNode)
|
||||
-> Result<($V, DepNodeIndex), CycleError<'a, $tcx>> {
|
||||
-> Result<($V, DepNodeIndex), CycleError<$tcx>> {
|
||||
// We may be concurrently trying both execute and force a query
|
||||
// Ensure that only one of them runs the query
|
||||
let lock = match Self::try_get_lock(tcx, span, &key) {
|
||||
Ok(lock) => lock,
|
||||
Err(result) => return result,
|
||||
};
|
||||
Self::force_with_lock(tcx,
|
||||
key,
|
||||
span,
|
||||
lock,
|
||||
dep_node)
|
||||
}
|
||||
|
||||
fn force_with_lock(tcx: TyCtxt<'a, $tcx, 'lcx>,
|
||||
key: $K,
|
||||
span: Span,
|
||||
map: LockGuard<'_, QueryMap<$tcx, Self>>,
|
||||
dep_node: DepNode)
|
||||
-> Result<($V, DepNodeIndex), CycleError<$tcx>> {
|
||||
debug_assert!(!tcx.dep_graph.dep_node_exists(&dep_node));
|
||||
|
||||
profq_msg!(tcx, ProfileQueriesMsg::ProviderBegin);
|
||||
let res = tcx.cycle_check(span, Query::$name(key), || {
|
||||
tcx.sess.diagnostic().track_diagnostics(|| {
|
||||
let res = Self::start_job(tcx,
|
||||
span,
|
||||
key,
|
||||
map,
|
||||
|tcx| {
|
||||
if dep_node.kind.is_eval_always() {
|
||||
tcx.dep_graph.with_eval_always_task(dep_node,
|
||||
tcx,
|
||||
|
@ -507,11 +625,10 @@ macro_rules! define_maps {
|
|||
key,
|
||||
Self::compute_result)
|
||||
}
|
||||
})
|
||||
})?;
|
||||
profq_msg!(tcx, ProfileQueriesMsg::ProviderEnd);
|
||||
|
||||
let ((result, dep_node_index), diagnostics) = res;
|
||||
let (((result, dep_node_index), diagnostics), job) = res;
|
||||
|
||||
if tcx.sess.opts.debugging_opts.query_dep_graph {
|
||||
tcx.dep_graph.mark_loaded_from_cache(dep_node_index, false);
|
||||
|
@ -522,16 +639,19 @@ macro_rules! define_maps {
|
|||
.store_diagnostics(dep_node_index, diagnostics);
|
||||
}
|
||||
|
||||
let value = QueryValue::new(result, dep_node_index);
|
||||
let value = QueryValue::new(Clone::clone(&result), dep_node_index);
|
||||
|
||||
Ok(((&tcx.maps
|
||||
tcx.maps
|
||||
.$name
|
||||
.borrow_mut()
|
||||
.map
|
||||
.entry(key)
|
||||
.or_insert(value)
|
||||
.value).clone(),
|
||||
dep_node_index))
|
||||
.insert(key, QueryResult::Complete(value));
|
||||
|
||||
let job: Lrc<QueryJob> = job;
|
||||
|
||||
job.signal_complete();
|
||||
|
||||
Ok((result, dep_node_index))
|
||||
}
|
||||
|
||||
pub fn try_get(tcx: TyCtxt<'a, $tcx, 'lcx>, span: Span, key: $K)
|
||||
|
@ -599,8 +719,7 @@ macro_rules! define_map_struct {
|
|||
input: ($(([$($modifiers:tt)*] [$($attr:tt)*] [$name:ident]))*)) => {
|
||||
pub struct Maps<$tcx> {
|
||||
providers: IndexVec<CrateNum, Providers<$tcx>>,
|
||||
query_stack: RefCell<Vec<(Span, Query<$tcx>)>>,
|
||||
$($(#[$attr])* $name: RefCell<QueryMap<$tcx, queries::$name<$tcx>>>,)*
|
||||
$($(#[$attr])* $name: Lock<QueryMap<$tcx, queries::$name<$tcx>>>,)*
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
@ -42,7 +42,6 @@ use rustc_data_structures::stable_hasher::StableHasher;
|
|||
|
||||
use std::borrow::Cow;
|
||||
use std::cell::{RefCell, Cell};
|
||||
use std::mem;
|
||||
use std::{error, fmt};
|
||||
use std::sync::atomic::AtomicUsize;
|
||||
use std::sync::atomic::Ordering::SeqCst;
|
||||
|
@ -269,7 +268,6 @@ pub struct Handler {
|
|||
emitter: RefCell<Box<Emitter>>,
|
||||
continue_after_error: Cell<bool>,
|
||||
delayed_span_bug: RefCell<Option<Diagnostic>>,
|
||||
tracked_diagnostics: RefCell<Option<Vec<Diagnostic>>>,
|
||||
|
||||
// This set contains the `DiagnosticId` of all emitted diagnostics to avoid
|
||||
// emitting the same diagnostic with extended help (`--teach`) twice, which
|
||||
|
@ -282,6 +280,11 @@ pub struct Handler {
|
|||
emitted_diagnostics: RefCell<FxHashSet<u128>>,
|
||||
}
|
||||
|
||||
fn default_track_diagnostic(_: &Diagnostic) {}
|
||||
|
||||
thread_local!(pub static TRACK_DIAGNOSTICS: Cell<fn(&Diagnostic)> =
|
||||
Cell::new(default_track_diagnostic));
|
||||
|
||||
#[derive(Default)]
|
||||
pub struct HandlerFlags {
|
||||
pub can_emit_warnings: bool,
|
||||
|
@ -333,7 +336,6 @@ impl Handler {
|
|||
emitter: RefCell::new(e),
|
||||
continue_after_error: Cell::new(true),
|
||||
delayed_span_bug: RefCell::new(None),
|
||||
tracked_diagnostics: RefCell::new(None),
|
||||
tracked_diagnostic_codes: RefCell::new(FxHashSet()),
|
||||
emitted_diagnostics: RefCell::new(FxHashSet()),
|
||||
}
|
||||
|
@ -629,17 +631,6 @@ impl Handler {
|
|||
}
|
||||
}
|
||||
|
||||
pub fn track_diagnostics<F, R>(&self, f: F) -> (R, Vec<Diagnostic>)
|
||||
where F: FnOnce() -> R
|
||||
{
|
||||
let prev = mem::replace(&mut *self.tracked_diagnostics.borrow_mut(),
|
||||
Some(Vec::new()));
|
||||
let ret = f();
|
||||
let diagnostics = mem::replace(&mut *self.tracked_diagnostics.borrow_mut(), prev)
|
||||
.unwrap();
|
||||
(ret, diagnostics)
|
||||
}
|
||||
|
||||
/// `true` if a diagnostic with this code has already been emitted in this handler.
|
||||
///
|
||||
/// Used to suppress emitting the same error multiple times with extended explanation when
|
||||
|
@ -651,9 +642,9 @@ impl Handler {
|
|||
fn emit_db(&self, db: &DiagnosticBuilder) {
|
||||
let diagnostic = &**db;
|
||||
|
||||
if let Some(ref mut list) = *self.tracked_diagnostics.borrow_mut() {
|
||||
list.push(diagnostic.clone());
|
||||
}
|
||||
TRACK_DIAGNOSTICS.with(|track_diagnostics| {
|
||||
track_diagnostics.get()(diagnostic);
|
||||
});
|
||||
|
||||
if let Some(ref code) = diagnostic.code {
|
||||
self.tracked_diagnostic_codes.borrow_mut().insert(code.clone());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue