about summary refs log tree commit diff
path: root/src/librustc_metadata/tyencode.rs
AgeCommit message (Expand)AuthorLines
2016-09-20rustc_metadata: remove ty{en,de}code and move to auto-derived serialization.Eduard Burtescu-385/+0
2016-09-20rustc_metadata: side-step ty{en,de}code for everything but Ty.Eduard Burtescu-139/+7
2016-09-20Remove librbml and the RBML-tagged auto-encoder/decoder.Eduard Burtescu-2/+3
2016-09-20rustc_metadata: combine EncodeContext and rbml::writer::Encoder.Eduard Burtescu-5/+2
2016-09-13Remove redundant sorting of projection bounds in tyencode.Michael Woerister-8/+1
2016-09-08Refactor `TyStruct`/`TyEnum`/`TyUnion` into `TyAdt`Vadim Petrochenkov-11/+1
2016-09-03Fix type encoding/decoding for unionsVadim Petrochenkov-1/+1
2016-09-03Add union typesVadim Petrochenkov-0/+5
2016-09-01turn the RFC1592 warnings into hard errorsAriel Ben-Yehuda-3/+0
2016-08-27rustc: use Vec<Kind> in Substs, where Kind is a &TyS | &Region tagged pointer.Eduard Burtescu-6/+10
2016-08-27rustc: pass ty::Region behind an interned 'tcx reference.Eduard Burtescu-3/+3
2016-08-27rustc: use accessors for Substs::{types,regions}.Eduard Burtescu-2/+2
2016-08-17rustc: remove ParamSpace from Substs.Eduard Burtescu-32/+19
2016-08-17rustc: split Generics of a method from its parent Generics.Eduard Burtescu-4/+15
2016-08-17rustc: reduce Substs and Generics to a simple immutable API.Eduard Burtescu-7/+20
2016-08-17rustc: move trait objects from TraitRef to ExistentialTraitRef.Eduard Burtescu-33/+34
2016-08-13Rename empty/bang to neverAndrew Cann-1/+1
2016-08-13Remove obsolete divergence related stuffAndrew Cann-8/+1
2016-08-13Start implementation of RFC 1216 (make ! a type)Andrew Cann-0/+1
2016-08-12rustc: add TyAnon (impl Trait) to the typesystem.Eduard Burtescu-0/+5
2016-07-12tyencode: Make sure that projection bounds are handled in stable order.Michael Woerister-1/+8
2016-07-03prefer `if let` to match with `None => {}` arm in some placesZack M. Davis-3/+3
2016-06-23Move errors from libsyntax to its own crateJonathan Turner-1/+1
2016-06-05rustc: add ReErased to be used by trait selection, MIR and trans.Eduard Burtescu-0/+3
2016-05-31add `Issue32330` warning marker to bound regionsNiko Matsakis-4/+11
2016-05-11rustc: More interning for data used in Ty<'tcx>.Eduard Burtescu-4/+4
2016-05-11rustc: Split 'tcx into 'gcx and 'tcx for InferCtxt and its users.Eduard Burtescu-2/+2
2016-05-11rustc: Replace &'a TyCtxt<'tcx> with a TyCtxt<'a, 'tcx> wrapper.Eduard Burtescu-2/+2
2016-05-03change the newly-added errors to warningsAriel Ben-Yehuda-0/+3
2016-04-13Auto merge of #32780 - soltanmm:consider-the-following, r=nikomatsakisbors-0/+8
2016-04-06Replace consider_unification_despite_ambiguity with obligation variantMasood Malekghassemi-0/+8
2016-04-06rustc: move middle::{def,def_id,pat_util} to hir.Eduard Burtescu-1/+1
2016-04-06rustc: move rustc_front to rustc::hir.Eduard Burtescu-1/+1
2016-03-31librustc_metadata: use bug!(), span_bug!()Benjamin Herr-2/+2
2016-03-27rustc: move cfg, infer, traits and ty from middle to top-level.Eduard Burtescu-4/+4
2016-03-27rustc: move middle::subst into middle::ty.Eduard Burtescu-2/+2
2016-03-25CrateStore: Allow for custom def_id_to_string mappings in encode_type().Michael Woerister-11/+11
2016-03-24remove ErasedRegions from substitutionsNiko Matsakis-14/+2
2016-03-09Track fn type and lifetime parameters in TyFnDef.Eduard Burtescu-1/+2
2016-03-09Split TyBareFn into TyFnDef and TyFnPtr.Eli Friedman-2/+2
2016-03-03Rename middle::ty::ctxt to TyCtxtJeffrey Seyfried-2/+2
2016-02-11[breaking-change] don't glob export ast::{UintTy, IntTy} variantsOliver Schneider-10/+10
2016-02-11[breaking-change] don't glob export ast::FloatTy variantsOliver Schneider-2/+2
2015-12-28Use a more efficient encoding for opaque data in RBML.Michael Woerister-146/+168
2015-12-28rewrite the method-receiver matching codeAriel Ben-Yehuda-2/+1
2015-12-18Rollup merge of #30384 - nrc:diagnostics, r=@nikomatsakisManish Goregaokar-4/+4
2015-12-17move error handling from libsyntax/diagnostics.rs to libsyntax/errors/*Nick Cameron-4/+4
2015-12-15Ensure borrows of fn/closure params do not outlive invocations.Felix S. Klock II-0/+2
2015-11-26split the metadata code into rustc_metadataAriel Ben-Yehuda-0/+479