summary refs log tree commit diff
path: root/src/librustc/ty/context.rs
AgeCommit message (Expand)AuthorLines
2016-12-05Refactor FnSig to contain a Slice for its inputs and outputs.Mark-Simulacrum-0/+11
2016-12-02Auto merge of #38053 - eddyb:lazy-9, r=nikomatsakisbors-32/+13
2016-11-29rustc: simplify AdtDef by removing the field types and ty::ivar.Eduard-Mihai Burtescu-18/+11
2016-11-29rustc: remove type information from TraitDef.Eduard-Mihai Burtescu-14/+2
2016-11-28Refactor TyTrait to contain a interned ExistentialPredicate slice.Mark-Simulacrum-12/+62
2016-11-28rustc: embed path resolutions into the HIR instead of keeping DefMap.Eduard-Mihai Burtescu-8/+15
2016-11-21Use `Symbol` instead of `InternedString` in the AST, HIR, and various other p...Jeffrey Seyfried-8/+8
2016-11-20Move `syntax::util::interner` -> `syntax::symbol`, cleanup.Jeffrey Seyfried-7/+7
2016-11-12rustc: move closure upvar types to the closure substsAriel Ben-Yehuda-5/+2
2016-11-10rustc: clean up lookup_item_type and remove TypeScheme.Eduard Burtescu-6/+2
2016-11-10rustc: unify and simplify managing associated items.Eduard Burtescu-18/+4
2016-11-08Replace FnvHasher use with FxHasher.Nicholas Nethercote-27/+27
2016-11-02rustc: record the target type of every adjustment.Eduard Burtescu-2/+13
2016-11-02rustc: make all read access to tcx.tables go through a method.Eduard Burtescu-9/+60
2016-10-28rustc: move the MIR map into TyCtxt.Eduard Burtescu-6/+23
2016-10-25Utilize AccumulateVec to avoid heap allocations in mk_{substs, type_list, tup...Mark-Simulacrum-6/+88
2016-10-19Use TypedArena::alloc_slice in rustc.Mark-Simulacrum-17/+21
2016-10-15Auto merge of #37100 - dikaiosune:master, r=eddybbors-9/+12
2016-10-11Using a type alias of Slice<Kind<'tcx>> to intern Substs<'tcx>.Adam Perry-9/+12
2016-10-06rustc: Rename rustc_macro to proc_macroAlex Crichton-1/+1
2016-09-28Rollup merge of #36460 - mikhail-m1:35123-map3, r=nikomatsakisJonathan Turner-7/+10
2016-09-25Incorporate review comments.Austin Hicks-1/+1
2016-09-24Completely kill `represent_type` and the `adt::Repr` type that goes with it.Austin Hicks-0/+4
2016-09-23Merge branch 'master' into 35123-map3Mikhail Modin-75/+103
2016-09-20rustc: don't hash the --extern crate name, but the original one, in DefPath.Eduard Burtescu-0/+8
2016-09-20rustc_metadata: group information into less tags.Eduard Burtescu-7/+3
2016-09-20rustc: remove ImplOrTraitItemId and TraitDef's associated_type_names.Eduard Burtescu-3/+3
2016-09-20rustc_metadata: move more RBML tags to auto-serialization.Eduard Burtescu-11/+4
2016-09-20rustc_metadata: remove ty{en,de}code and move to auto-derived serialization.Eduard Burtescu-38/+70
2016-09-20rustc_metadata: go only through rustc_serialize in astencode.Eduard Burtescu-5/+4
2016-09-14map create numbers between compilationsMikhail Modin-7/+10
2016-09-13Make sure that projection bounds in ty::TraitObject are sorted in a way that ...Michael Woerister-1/+1
2016-09-08Refactor `TyStruct`/`TyEnum`/`TyUnion` into `TyAdt`Vadim Petrochenkov-16/+6
2016-09-03Lower unions from AST to HIR and from HIR to typesVadim Petrochenkov-0/+5
2016-09-03Add union typesVadim Petrochenkov-2/+2
2016-09-02rustc: Implement custom derive (macros 1.1)Alex Crichton-0/+5
2016-08-27rustc: use Vec<Kind> in Substs, where Kind is a &TyS | &Region tagged pointer.Eduard Burtescu-1/+1
2016-08-27rustc: pass ty::Region behind an interned 'tcx reference.Eduard Burtescu-2/+7
2016-08-27rustc: use accessors for Substs::{types,regions}.Eduard Burtescu-1/+1
2016-08-17rustc: remove ParamSpace from Substs.Eduard Burtescu-5/+4
2016-08-17rustc: remove SelfSpace from ParamSpace.Eduard Burtescu-1/+1
2016-08-17rustc: reduce Substs and Generics to a simple immutable API.Eduard Burtescu-2/+12
2016-08-17rustc: move trait objects from TraitRef to ExistentialTraitRef.Eduard Burtescu-20/+5
2016-08-13Default diverging types based on feature gate.Andrew Cann-0/+8
2016-08-13Rename empty/bang to neverAndrew Cann-3/+3
2016-08-13Minor fixups based on @eddyb's feedbackAndrew Cann-4/+0
2016-08-13Start implementation of RFC 1216 (make ! a type)Andrew Cann-1/+7
2016-08-12rustc: add TyAnon (impl Trait) to the typesystem.Eduard Burtescu-1/+5
2016-08-09incorporate resolve results into hashingNiko Matsakis-0/+11
2016-08-02remap Hir(InlinedDefId) to MetaData(OriginalDefId)Niko Matsakis-1/+1