about summary refs log tree commit diff
path: root/src/librustc_metadata/decoder.rs
AgeCommit message (Expand)AuthorLines
2016-10-25rustc_metadata: move is_extern_item to trans.Eduard Burtescu-24/+0
2016-10-23Run rustfmt on metadata folder - (1/2)Srinivas Reddy Thatiparthy-210/+276
2016-10-19Use TypedArena::alloc_slice in rustc.Mark-Simulacrum-2/+2
2016-10-10Avoid allocations in `Decoder::read_str`.Nicholas Nethercote-1/+2
2016-10-04Eliminate ty::VariantKind in favor of def::CtorKindVadim Petrochenkov-9/+9
2016-10-04Further cleanup in resolveVadim Petrochenkov-0/+2
2016-10-04Fix cross-crate resolution of half-items created by export shadowingVadim Petrochenkov-9/+26
2016-09-20rustc_resolve: bring back "struct called like a function" cross-crate.Eduard Burtescu-0/+9
2016-09-20rustc_metadata: fix for the new `?` ambiguity around collect.Eduard Burtescu-1/+1
2016-09-20rustc_metadata: move opt_item_name to TyCtxt::item_name.Eduard Burtescu-34/+5
2016-09-20rustc_metadata: reduce Lazy{,Seq} overhead by using a relative encoding.Eduard Burtescu-7/+40
2016-09-20rustc_metadata: replace RBML with a simple and type-safe scheme.Eduard Burtescu-464/+493
2016-09-20rustc_metadata: split the Def description of a DefId from item_children.Eduard Burtescu-32/+30
2016-09-20rustc_metadata: move all encoding/decoding helpers to methods.Eduard Burtescu-728/+657
2016-09-20rustc_metadata: use the shorthand encoding for predicates also.Eduard Burtescu-18/+21
2016-09-20rustc_metadata: group information into less tags.Eduard Burtescu-419/+266
2016-09-20rustc_metadata: group the tags into root tags and item tags.Eduard Burtescu-80/+71
2016-09-20rustc: remove ImplOrTraitItemId and TraitDef's associated_type_names.Eduard Burtescu-26/+1
2016-09-20rustc_metadata: move more RBML tags to auto-serialization.Eduard Burtescu-703/+296
2016-09-20rustc_metadata: remove ty{en,de}code and move to auto-derived serialization.Eduard Burtescu-18/+36
2016-09-20rustc_metadata: side-step ty{en,de}code for everything but Ty.Eduard Burtescu-32/+33
2016-09-20Remove librbml and the RBML-tagged auto-encoder/decoder.Eduard Burtescu-17/+42
2016-09-20rustc_metadata: go back to not using the opaque format.Eduard Burtescu-44/+52
2016-09-20rustc_metadata: go only through rustc_serialize in astencode.Eduard Burtescu-129/+117
2016-09-20rustc_metadata: combine DecodeContext and rbml::reader::Decoder.Eduard Burtescu-12/+110
2016-09-20rustc_metadata: encode miscellaneous information opaquely.Eduard Burtescu-32/+13
2016-09-20rustc_metadata: combine EncodeContext and rbml::writer::Encoder.Eduard Burtescu-4/+2
2016-09-13Fix rebasing fallout.Michael Woerister-1/+1
2016-09-13Make sure that projection bounds in ty::TraitObject are sorted in a way that ...Michael Woerister-1/+3
2016-09-12Auto merge of #35960 - nikomatsakis:incr-comp-krate-edges, r=michaelwoeristerbors-12/+12
2016-09-08Refactor `TyStruct`/`TyEnum`/`TyUnion` into `TyAdt`Vadim Petrochenkov-11/+6
2016-09-06always print def-path in Debug impl for DefIdNiko Matsakis-3/+10
2016-09-06remove the "misc-items" from meta-dataNiko Matsakis-9/+2
2016-09-04Replace `_, _` with `..`Vadim Petrochenkov-2/+2
2016-09-03Fix type encoding/decoding for unionsVadim Petrochenkov-1/+1
2016-09-03Implement encoding/decoding unions in metadataVadim Petrochenkov-0/+7
2016-09-02rustc: Implement custom derive (macros 1.1)Alex Crichton-0/+5
2016-08-28Rollup merge of #35850 - SergioBenitez:master, r=nrcJeffrey Seyfried-38/+13
2016-08-27Auto merge of #36030 - Manishearth:rollup, r=Manishearthbors-14/+5
2016-08-26Auto merge of #35542 - scottcarr:visitor_refactor, r=nikomatsakisbors-1/+2
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-13/+4
2016-08-25Implement RFC#1559: allow all literals in attributes.Sergio Benitez-38/+13
2016-08-23Reuse iterator to avoid unnecessary creation.Corey Farwell-2/+3
2016-08-23Use idiomatic names for string-related methods names.Corey Farwell-17/+17
2016-08-18track Location in visitor, combine LocationScott A Carr-1/+2
2016-08-17pull out code for encoding enum variantsNiko Matsakis-13/+5
2016-08-17rustc: split GenericPredicates of a method from its parent predicates.Eduard Burtescu-0/+1
2016-08-17rustc: reduce Substs and Generics to a simple immutable API.Eduard Burtescu-55/+25
2016-08-17rustc: avoid using subst::VecPerParamSpace::{empty,new} directly.Eduard Burtescu-6/+4