-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Define queries using a proc macro #56462
Merged
+760
−320
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
7d90547
Define queries using a proc macro
Zoxc 9e9d03f
Add load_cached query modifier and keep dep node names consistent wit…
Zoxc 4f49fff
Clean up parsing code and split out codegen for the QueryDescription …
Zoxc 198dfce
Preprocess query modifiers
Zoxc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
use crate::ty::query::QueryDescription; | ||
use crate::ty::query::queries; | ||
use crate::ty::TyCtxt; | ||
use crate::ty; | ||
use crate::hir::def_id::CrateNum; | ||
use crate::dep_graph::SerializedDepNodeIndex; | ||
use std::borrow::Cow; | ||
|
||
// Each of these queries corresponds to a function pointer field in the | ||
// `Providers` struct for requesting a value of that type, and a method | ||
// on `tcx: TyCtxt` (and `tcx.at(span)`) for doing that request in a way | ||
// which memoizes and does dep-graph tracking, wrapping around the actual | ||
// `Providers` that the driver creates (using several `rustc_*` crates). | ||
// | ||
// The result type of each query must implement `Clone`, and additionally | ||
// `ty::query::values::Value`, which produces an appropriate placeholder | ||
// (error) value if the query resulted in a query cycle. | ||
// Queries marked with `fatal_cycle` do not need the latter implementation, | ||
// as they will raise an fatal error on query cycles instead. | ||
rustc_queries! { | ||
Other { | ||
/// Records the type of every item. | ||
query type_of(key: DefId) -> Ty<'tcx> { | ||
cache { key.is_local() } | ||
} | ||
|
||
/// Maps from the `DefId` of an item (trait/struct/enum/fn) to its | ||
/// associated generics. | ||
query generics_of(key: DefId) -> &'tcx ty::Generics { | ||
cache { key.is_local() } | ||
load_cached(tcx, id) { | ||
let generics: Option<ty::Generics> = tcx.queries.on_disk_cache | ||
.try_load_query_result(tcx, id); | ||
generics.map(|x| tcx.alloc_generics(x)) | ||
} | ||
} | ||
|
||
/// Maps from the `DefId` of an item (trait/struct/enum/fn) to the | ||
/// predicates (where-clauses) that must be proven true in order | ||
/// to reference it. This is almost always the "predicates query" | ||
/// that you want. | ||
/// | ||
/// `predicates_of` builds on `predicates_defined_on` -- in fact, | ||
/// it is almost always the same as that query, except for the | ||
/// case of traits. For traits, `predicates_of` contains | ||
/// an additional `Self: Trait<...>` predicate that users don't | ||
/// actually write. This reflects the fact that to invoke the | ||
/// trait (e.g., via `Default::default`) you must supply types | ||
/// that actually implement the trait. (However, this extra | ||
/// predicate gets in the way of some checks, which are intended | ||
/// to operate over only the actual where-clauses written by the | ||
/// user.) | ||
query predicates_of(_: DefId) -> Lrc<ty::GenericPredicates<'tcx>> {} | ||
|
||
query native_libraries(_: CrateNum) -> Lrc<Vec<NativeLibrary>> { | ||
desc { "looking up the native libraries of a linked crate" } | ||
} | ||
} | ||
|
||
Codegen { | ||
query is_panic_runtime(_: CrateNum) -> bool { | ||
fatal_cycle | ||
desc { "checking if the crate is_panic_runtime" } | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,13 +80,14 @@ mod values; | |
use self::values::Value; | ||
|
||
mod config; | ||
pub(crate) use self::config::QueryDescription; | ||
pub use self::config::QueryConfig; | ||
use self::config::{QueryAccessors, QueryDescription}; | ||
use self::config::QueryAccessors; | ||
|
||
mod on_disk_cache; | ||
pub use self::on_disk_cache::OnDiskCache; | ||
|
||
// Each of these quries corresponds to a function pointer field in the | ||
// Each of these queries corresponds to a function pointer field in the | ||
// `Providers` struct for requesting a value of that type, and a method | ||
// on `tcx: TyCtxt` (and `tcx.at(span)`) for doing that request in a way | ||
// which memoizes and does dep-graph tracking, wrapping around the actual | ||
|
@@ -97,35 +98,12 @@ pub use self::on_disk_cache::OnDiskCache; | |
// (error) value if the query resulted in a query cycle. | ||
// Queries marked with `fatal_cycle` do not need the latter implementation, | ||
// as they will raise an fatal error on query cycles instead. | ||
define_queries! { <'tcx> | ||
|
||
rustc_query_append! { [define_queries!][ <'tcx> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is mind-bending, but cool! |
||
Other { | ||
/// Run analysis passes on the crate | ||
[] fn analysis: Analysis(CrateNum) -> Result<(), ErrorReported>, | ||
|
||
/// Records the type of every item. | ||
[] fn type_of: TypeOfItem(DefId) -> Ty<'tcx>, | ||
|
||
/// Maps from the `DefId` of an item (trait/struct/enum/fn) to its | ||
/// associated generics. | ||
[] fn generics_of: GenericsOfItem(DefId) -> &'tcx ty::Generics, | ||
|
||
/// Maps from the `DefId` of an item (trait/struct/enum/fn) to the | ||
/// predicates (where-clauses) that must be proven true in order | ||
/// to reference it. This is almost always the "predicates query" | ||
/// that you want. | ||
/// | ||
/// `predicates_of` builds on `predicates_defined_on` -- in fact, | ||
/// it is almost always the same as that query, except for the | ||
/// case of traits. For traits, `predicates_of` contains | ||
/// an additional `Self: Trait<...>` predicate that users don't | ||
/// actually write. This reflects the fact that to invoke the | ||
/// trait (e.g., via `Default::default`) you must supply types | ||
/// that actually implement the trait. (However, this extra | ||
/// predicate gets in the way of some checks, which are intended | ||
/// to operate over only the actual where-clauses written by the | ||
/// user.) | ||
[] fn predicates_of: PredicatesOfItem(DefId) -> Lrc<ty::GenericPredicates<'tcx>>, | ||
|
||
/// Maps from the `DefId` of an item (trait/struct/enum/fn) to the | ||
/// predicates (where-clauses) directly defined on it. This is | ||
/// equal to the `explicit_predicates_of` predicates plus the | ||
|
@@ -446,7 +424,6 @@ define_queries! { <'tcx> | |
}, | ||
|
||
Codegen { | ||
[fatal_cycle] fn is_panic_runtime: IsPanicRuntime(CrateNum) -> bool, | ||
[fatal_cycle] fn is_compiler_builtins: IsCompilerBuiltins(CrateNum) -> bool, | ||
[fatal_cycle] fn has_global_allocator: HasGlobalAllocator(CrateNum) -> bool, | ||
[fatal_cycle] fn has_panic_handler: HasPanicHandler(CrateNum) -> bool, | ||
|
@@ -504,8 +481,6 @@ define_queries! { <'tcx> | |
}, | ||
|
||
Other { | ||
[] fn native_libraries: NativeLibraries(CrateNum) -> Lrc<Vec<NativeLibrary>>, | ||
|
||
[] fn foreign_modules: ForeignModules(CrateNum) -> Lrc<Vec<ForeignModule>>, | ||
|
||
/// Identifies the entry-point (e.g., the `main` function) for a given | ||
|
@@ -752,7 +727,7 @@ define_queries! { <'tcx> | |
[] fn wasm_import_module_map: WasmImportModuleMap(CrateNum) | ||
-> Lrc<FxHashMap<DefId, String>>, | ||
}, | ||
} | ||
]} | ||
|
||
////////////////////////////////////////////////////////////////////// | ||
// These functions are little shims used to find the dep-node for a | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FWIW wherever possible it'd be great to stop using
#[macro_use]
for new macro-based code