about summary refs log tree commit diff
path: root/compiler/rustc_macros/src/query.rs
AgeCommit message (Expand)AuthorLines
2025-09-25resolve: Do not finalize shadowed bindingsVadim Petrochenkov-1/+1
2025-07-03Rollup merge of #134006 - klensy:typos, r=nnethercoteJana Dönszelmann-2/+2
2025-07-03setup CI and tidy to use typos for spellchecking and fix few typosklensy-2/+2
2025-07-01Remove doc comments from TyCtxtFeedMichael Goulet-1/+0
2025-05-20Allow trailing comma after argument in query definitionMichael Goulet-0/+1
2025-05-17Enable rust-analyzer to go from query definition to the corresponding provide...Lukas Wirth-0/+14
2025-04-29Rename `rustc_query_append!` to `rustc_with_all_queries!`Zalathar-3/+15
2025-02-01Rename `ensure_forwards_result_if_red` to `return_result_from_ensure_ok`Zalathar-10/+16
2024-09-22Reformat using the new identifier sorting from rustfmtMichael Goulet-2/+2
2024-08-29Add `warn(unreachable_pub)` to `rustc_macros`.Nicholas Nethercote-1/+1
2024-06-06Make the panic info more usefulOli Scherer-2/+19
2024-01-24Correctly explain `ensure_forwards_result_if_red`Oli Scherer-1/+2
2023-10-26Stash and cancel cycle errors for auto trait leakage in opaquesMichael Goulet-0/+8
2023-10-23Allow `ensure` queries to return `Result<(), ErrorGuaranteed>`Oli Scherer-0/+10
2023-05-18Merge query property modules into oneJohn Kåre Alsaker-3/+3
2023-05-15Move expansion of query macros in rustc_middle to rustc_middle::queryJohn Kåre Alsaker-3/+3
2023-04-08Remove `remap_env_constness` in queriesDeadbeef-8/+0
2023-04-06migrate rustc_macros to syn 2.0Deadbeef-4/+4
2023-01-05Fix `uninlined_format_args` for some compiler cratesnils-1/+1
2022-12-05feed resolver_for_lowering instead of storing it in a fieldOli Scherer-4/+0
2022-11-29Sanity check computed value for feeable queries.Camille GILLOT-0/+9
2022-11-29Allow to set a query's result as a side effect.Camille GILLOT-1/+20
2022-10-14Get rid of `rustc_query_description!`Nilstrieb-17/+28
2022-10-14Remove unsued variable in query macroNilstrieb-7/+0
2022-09-15Auto merge of #101173 - jyn514:simplify-macro-arguments, r=cjgillotbors-22/+7
2022-09-14Update compiler/rustc_macros/src/query.rsCamille Gillot-1/+1
2022-09-09Move `TRY_LOAD_FROM_DISK` out of `rustc_queries` to `rustc_query_impl`Joshua Nelson-5/+4
2022-09-09Don't create a new `try_load_from_disk` closure for each queryJoshua Nelson-1/+1
2022-09-09Remove dead `load_cached` code in rustc_queryJoshua Nelson-33/+2
2022-09-09Simplify the implementation of `rustc_queries`Joshua Nelson-35/+18
2022-09-09Make the `storage` query modifier less generalJoshua Nelson-12/+8
2022-09-06Get rid of the emitted `rustc_query_names` and `rustc_cached_queries` macroJoshua Nelson-22/+7
2022-09-06Support doc-comments in `define_dep_nodes`Joshua Nelson-2/+6
2022-09-06Further simplify the macros generated by `rustc_queries`Joshua Nelson-13/+9
2022-08-27Auto merge of #100946 - jyn514:query-system-3, r=cjgillotbors-11/+11
2022-08-25Auto merge of #100748 - SparrowLii:query_depth, r=cjgillotbors-1/+12
2022-08-24Remove the `$tcx:tt` parameter from `rustc_query_description`Joshua Nelson-5/+5
2022-08-24Simplify the syntax for macros generated by `rustc_queries`Joshua Nelson-6/+6
2022-08-23Remove `$tcx` metavariable from `rustc_query_append`Joshua Nelson-3/+1
2022-08-24add `depth_limit` in `QueryVTable`SparrowLii-1/+12
2022-08-21Refactor query modifier parsingCameron Steffen-260/+125
2022-02-16Move ty::print methods to Drop-based scope guardsMark Rousskov-1/+3
2021-12-12Query modifierDeadbeef-0/+20
2021-10-25Avoid a branch on key being local for queries that use the same local and ext...bjorn3-0/+23
2021-10-23Do not require QueryCtxt for cache_on_disk.Camille GILLOT-2/+2
2021-10-23Build the query vtable directly.Camille GILLOT-24/+18
2021-10-21Do not depend on the stored value when trying to cache on disk.Camille GILLOT-14/+4
2021-10-02Prevent macro ambiguity errorsbjorn3-6/+6
2021-08-19Rollup merge of #86123 - Aaron1011:query-span, r=cjgillotGuillaume Gomez-48/+56
2021-07-18Move OnDiskCache to rustc_query_impl.Camille GILLOT-1/+1