about summary refs log tree commit diff
path: root/src/librustc/query/mod.rs
AgeCommit message (Collapse)AuthorLines
2019-04-25Update trait queriesJohn Kåre Alsaker-12/+12
2019-04-25Update trait_impls_ofJohn Kåre Alsaker-1/+1
2019-04-25Update mir_const_qualifJohn Kåre Alsaker-1/+1
2019-04-25Update rvalue_promotable_mapJohn Kåre Alsaker-1/+1
2019-04-25Update region_scope_treeJohn Kåre Alsaker-1/+1
2019-04-25Update inferred_outlives_ofJohn Kåre Alsaker-1/+1
2019-04-23Add rustc_allow_const_fn_ptrTaylor Cramer-0/+2
2019-04-21Introduce query `static_mutability`Vadim Petrochenkov-0/+3
2019-04-14HirIdify hir::Defljedrz-2/+2
2019-04-12Auto merge of #59536 - Zoxc:the-arena, r=eddybbors-4/+3
Introduce an arena type which may be used to allocate a list of types with destructors You can also specify that you want deserializers for `&'tcx [T]` and `&'tcx T` for a type in the list, which will allocate those using the arena. Based on https://github.com/rust-lang/rust/pull/59517 and https://github.com/rust-lang/rust/pull/59533. Look at the last commit for the interesting changes. An alternative to https://github.com/rust-lang/rust/pull/56448. cc @michaelwoerister @eddyb r? @oli-obk
2019-04-05Remove no_force from coherent_traitJohn Kåre Alsaker-1/+0
2019-04-05Add DropArena and use it to allocate types with few allocationsJohn Kåre Alsaker-1/+1
2019-04-05Introduce an arena type which may be used to allocate a list of types with ↵John Kåre Alsaker-3/+2
destructors
2019-03-30Move query definitions over to the proc macroJohn Kåre Alsaker-2/+920
2019-03-20Add eval_always to query macro and move a query overJohn Kåre Alsaker-0/+5
2019-03-20Add anon to query macro and move a query overJohn Kåre Alsaker-2/+16
2019-03-20Add no_force to query macro and move some queries overJohn Kåre Alsaker-1/+24
2019-03-20Add no_hash to query macro and move some queries overJohn Kåre Alsaker-0/+43
2019-03-18Add load_cached query modifier and keep dep node names consistent with query ↵John Kåre Alsaker-0/+29
names
2019-03-18Define queries using a proc macroJohn Kåre Alsaker-0/+37