summary refs log tree commit diff
path: root/src/librustc/traits/select.rs
AgeCommit message (Expand)AuthorLines
2017-01-30Merge ty::TyBox into ty::TyAdtVadim Petrochenkov-6/+2
2017-01-24Remove Reflectest31-57/+3
2016-12-05Refactor ty::FnSig to privatize all fieldsMark-Simulacrum-11/+3
2016-12-02Auto merge of #38053 - eddyb:lazy-9, r=nikomatsakisbors-1/+1
2016-11-29rustc: simplify AdtDef by removing the field types and ty::ivar.Eduard-Mihai Burtescu-1/+1
2016-11-28Adds TyCtxt::require_lang_item(LangItem) to simplify lang item requires.Mark-Simulacrum-2/+1
2016-11-28Refactor TyTrait to contain a interned ExistentialPredicate slice.Mark-Simulacrum-80/+64
2016-11-28Remove BuiltinBound and BuiltinBounds.Mark-Simulacrum-9/+7
2016-11-28Refactor BuiltinBounds to Vec<DefId> on TraitObject.Mark-Simulacrum-24/+22
2016-11-28Privatize TraitObject.principal and add a method accessor, returning Option.Mark-Simulacrum-13/+21
2016-11-15register `infer-ok` obligations properlyNiko Matsakis-3/+0
2016-11-15remove TypeOrigin and use ObligationCause insteadNiko Matsakis-18/+11
2016-11-12rustc: move closure upvar types to the closure substsAriel Ben-Yehuda-3/+3
2016-11-10rustc: clean up lookup_item_type and remove TypeScheme.Eduard Burtescu-2/+2
2016-11-08Replace FnvHasher use with FxHasher.Nicholas Nethercote-6/+6
2016-10-26Auto merge of #37270 - Mark-Simulacrum:smallvec-optimized-arenas, r=eddybbors-2/+2
2016-10-25Utilize AccumulateVec to avoid heap allocations in mk_{substs, type_list, tup...Mark-Simulacrum-2/+2
2016-10-22Fix typo that resulted in comparison-to-selfJohannes Muenzel-1/+1
2016-10-17prefer `if let` to match with `None => { }` arm in some placesZack M. Davis-8/+5
2016-10-14add a per-param-env cache to `impls_bound`Ariel Ben-Yehuda-1/+1
2016-10-03Optimize plug_leaks some more.Nicholas Nethercote-2/+2
2016-09-20rustc_metadata: move more RBML tags to auto-serialization.Eduard Burtescu-1/+1
2016-09-08Refactor `TyStruct`/`TyEnum`/`TyUnion` into `TyAdt`Vadim Petrochenkov-9/+7
2016-09-04Replace `_, _` with `..`Vadim Petrochenkov-2/+2
2016-09-03Add union typesVadim Petrochenkov-3/+4
2016-09-01turn the RFC1592 warnings into hard errorsAriel Ben-Yehuda-10/+6
2016-08-27rustc: use Vec<Kind> in Substs, where Kind is a &TyS | &Region tagged pointer.Eduard Burtescu-18/+16
2016-08-27rustc: pass ty::Region behind an interned 'tcx reference.Eduard Burtescu-5/+6
2016-08-27rustc: use accessors for Substs::{types,regions}.Eduard Burtescu-19/+16
2016-08-17rustc: remove ParamSpace from Substs.Eduard Burtescu-9/+8
2016-08-17rustc: split GenericPredicates of a method from its parent predicates.Eduard Burtescu-14/+12
2016-08-17rustc: reduce Substs and Generics to a simple immutable API.Eduard Burtescu-21/+28
2016-08-17rustc: move trait objects from TraitRef to ExistentialTraitRef.Eduard Burtescu-26/+23
2016-08-17rustc: move the SelfSpace before TypeSpace in Substs.Eduard Burtescu-2/+3
2016-08-17rustc: use Vec instead of VecPerParamSpace for ty::GenericPredicates.Eduard Burtescu-1/+1
2016-08-13Rename empty/bang to neverAndrew Cann-3/+3
2016-08-13Remove obsolete divergence related stuffAndrew Cann-2/+2
2016-08-13Start implementation of RFC 1216 (make ! a type)Andrew Cann-2/+3
2016-08-12typeck: leak auto trait obligations through impl Trait.Eduard Burtescu-8/+11
2016-08-12rustc: add TyAnon (impl Trait) to the typesystem.Eduard Burtescu-24/+25
2016-08-12rustc: rename ProjectionMode and its variant to be more memorable.Eduard Burtescu-2/+2
2016-05-31make HR algorithms account for region subtypingNiko Matsakis-8/+24
2016-05-11Plumb inference obligations through selectionMasood Malekghassemi-66/+106
2016-05-11Don't mutate the inference context when assemblingMasood Malekghassemi-1/+1
2016-05-11Add inferred obligation storage to all Vtable variants and SelectionContextMasood Malekghassemi-8/+25
2016-05-11rustc: More interning for data used in Ty<'tcx>.Eduard Burtescu-16/+16
2016-05-11rustc: Generalize a minimum set of functions over 'tcx != 'gcx.Eduard Burtescu-34/+84
2016-05-11rustc: Remove the TyCtxt field from ParameterEnvironment.Eduard Burtescu-1/+1
2016-05-11rustc: Split 'tcx into 'gcx and 'tcx for InferCtxt and its users.Eduard Burtescu-9/+9
2016-05-11rustc: Replace &'a TyCtxt<'tcx> with a TyCtxt<'a, 'tcx> wrapper.Eduard Burtescu-1/+1