summary refs log tree commit diff
path: root/src/librustc_query_system
AgeCommit message (Collapse)AuthorLines
2020-04-20Auto merge of #71007 - Amanieu:deprecate_asm, r=Mark-Simulacrumbors-1/+1
Deprecate the asm! macro in favor of llvm_asm! Since we will be changing the syntax of `asm!` soon, deprecate it and encourage people to use `llvm_asm!` instead (which preserves the old syntax). This will avoid breakage when `asm!` is changed. RFC: https://github.com/rust-lang/rfcs/pull/2843
2020-04-16don't clone types that are copy (clippy::clone_on_copy)Matthias Krüger-1/+1
2020-04-15Update parking_lot dependency to avoid use of deprecated asm!Amanieu d'Antras-1/+1
2020-03-30Add inline attributes for functions used in the query systemJohn Kåre Alsaker-0/+2
2020-03-30rustc -> rustc_middle part 1Mazdak Farrokhzad-3/+3
2020-03-27Implement HashStable directly.Camille GILLOT-5/+8
2020-03-27Cleanups.Camille GILLOT-5/+4
2020-03-27Move QueryContext to the parent module.Camille GILLOT-42/+46
2020-03-27Remove the QueryGetter trait.Camille GILLOT-88/+70
2020-03-26Don't allow access to the Session.Camille GILLOT-6/+4
2020-03-26Rename read_query_job -> current_query_job and simplify it.Camille GILLOT-20/+16
2020-03-26Add comment.Camille GILLOT-0/+2
2020-03-26Simplify generics on try_start.Camille GILLOT-5/+4
2020-03-26Move generics on QueryCache.Camille GILLOT-20/+20
2020-03-26Prune dependencies.Camille GILLOT-3/+1
2020-03-26Retire DepGraphSafe and HashStableContext.Camille GILLOT-120/+29
2020-03-26Access QueryStateShard directly.Camille GILLOT-19/+5
2020-03-26Unify key types in get_lookup.Camille GILLOT-4/+4
2020-03-26Rustfmt.Camille GILLOT-249/+239
2020-03-26Make librustc_query_system compile.Camille GILLOT-785/+54
2020-03-26Move query system to librustc_query_system.Camille GILLOT-0/+2304
2020-03-26Generalise Query starting.Camille GILLOT-1/+4
2020-03-26Decouple from DepKind.Camille GILLOT-0/+4
2020-03-23Address review.Camille GILLOT-10/+10
2020-03-23Put extract_def_id back on DepNode.Camille GILLOT-13/+0
2020-03-23Remove assert_ignored and with_ignore_deps.Camille GILLOT-10/+4
2020-03-23Merge ensure_node_can_be_forced into force_from_dep_node.Camille GILLOT-8/+3
2020-03-23Fallout in other crates.Camille GILLOT-13/+2
2020-03-23Make librustc_query_system compile.Camille GILLOT-604/+340
2020-03-23Move dep_graph to new crate librustc_query_system.Camille GILLOT-0/+2015