about summary refs log tree commit diff
path: root/src/librustc_metadata/encoder.rs
AgeCommit message (Expand)AuthorLines
2016-11-28rustc: embed path resolutions into the HIR instead of keeping DefMap.Eduard-Mihai Burtescu-1/+1
2016-11-28rustc: desugar `use a::{b,c};` into `use a::b; use a::c;` in HIR.Eduard-Mihai Burtescu-2/+2
2016-11-22rustc_metadata: don't break the version check when CrateRoot changes.Eduard-Mihai Burtescu-4/+11
2016-11-21Use `Symbol` instead of `InternedString` in the AST, HIR, and various other p...Jeffrey Seyfried-3/+3
2016-11-20Move `syntax::util::interner` -> `syntax::symbol`, cleanup.Jeffrey Seyfried-3/+3
2016-11-17Auto merge of #37660 - nikomatsakis:incremental-36349, r=eddybbors-9/+19
2016-11-17hash the contents of impl-item-ref by adding them to visitorNiko Matsakis-6/+11
2016-11-16fallout from separating impl-items from implsNiko Matsakis-0/+4
2016-11-16refactor Visitor into ItemLikeVisitor and intravisit::VisitorNiko Matsakis-3/+4
2016-11-16rustc: Implement #[link(cfg(..))] and crt-staticAlex Crichton-8/+3
2016-11-12rustc_typeck: register item types for closuresAriel Ben-Yehuda-1/+1
2016-11-12rustc: move closure upvar types to the closure substsAriel Ben-Yehuda-1/+1
2016-11-12Rollup merge of #37688 - eddyb:lazy-8, r=petrochenkovEduard-Mihai Burtescu-5/+5
2016-11-10rustc: clean up lookup_item_type and remove TypeScheme.Eduard Burtescu-5/+5
2016-11-10Improve macro reexports.Jeffrey Seyfried-20/+35
2016-11-10Refactor `explicitly_linked: bool` -> `dep_kind: DepKind`.Jeffrey Seyfried-1/+1
2016-11-10rustc: unify and simplify managing associated items.Eduard Burtescu-44/+40
2016-11-08Replace FnvHasher use with FxHasher.Nicholas Nethercote-6/+6
2016-11-02rustc: make all read access to tcx.tables go through a method.Eduard Burtescu-1/+1
2016-10-28rustc: move the MIR map into TyCtxt.Eduard Burtescu-6/+2
2016-10-28rustc: move mir::repr::* to mir.Eduard Burtescu-1/+1
2016-10-25run rustfmt on librustc_metadata folderSrinivas Reddy Thatiparthy-169/+149
2016-10-07Auto merge of #36945 - alexcrichton:proc-macro-rename, r=nrcbors-3/+3
2016-10-06rustc: Rename rustc_macro to proc_macroAlex Crichton-3/+3
2016-10-04Eliminate ty::VariantKind in favor of def::CtorKindVadim Petrochenkov-17/+10
2016-10-04Fix cross-crate resolution of half-items created by export shadowingVadim Petrochenkov-2/+6
2016-09-30Fix RUSTC_VERSION for 'documenting' build stage.Scott Olson-1/+1
2016-09-27add a panic-strategy field to the target specificationJorge Aparicio-1/+1
2016-09-20rustc_metadata: reduce Lazy{,Seq} overhead by using a relative encoding.Eduard Burtescu-15/+58
2016-09-20rustc_metadata: replace RBML with a simple and type-safe scheme.Eduard Burtescu-757/+773
2016-09-20rustc_metadata: split the Def description of a DefId from item_children.Eduard Burtescu-0/+1
2016-09-20rustc_metadata: move all encoding/decoding helpers to methods.Eduard Burtescu-224/+219
2016-09-20rustc_metadata: use the shorthand encoding for predicates also.Eduard Burtescu-68/+42
2016-09-20rustc_metadata: group information into less tags.Eduard Burtescu-698/+371
2016-09-20rustc_metadata: group the tags into root tags and item tags.Eduard Burtescu-68/+66
2016-09-20rustc: remove ImplOrTraitItemId and TraitDef's associated_type_names.Eduard Burtescu-14/+3
2016-09-20rustc_metadata: move more RBML tags to auto-serialization.Eduard Burtescu-566/+374
2016-09-20rustc_metadata: remove ty{en,de}code and move to auto-derived serialization.Eduard Burtescu-15/+36
2016-09-20rustc_metadata: side-step ty{en,de}code for everything but Ty.Eduard Burtescu-34/+5
2016-09-20Remove librbml and the RBML-tagged auto-encoder/decoder.Eduard Burtescu-110/+134
2016-09-20rustc_trans: use the TypeId hashing mechanism instead of metadata.Eduard Burtescu-16/+1
2016-09-20rustc_metadata: go back to not using the opaque format.Eduard Burtescu-9/+9
2016-09-20rustc_metadata: go only through rustc_serialize in astencode.Eduard Burtescu-5/+4
2016-09-20rustc_metadata: combine DecodeContext and rbml::reader::Decoder.Eduard Burtescu-25/+1
2016-09-20rustc_metadata: encode miscellaneous information opaquely.Eduard Burtescu-13/+9
2016-09-20rustc_metadata: use specialization for {en,de}coding Ty and Substs.Eduard Burtescu-1/+44
2016-09-20rustc_metadata: combine EncodeContext and rbml::writer::Encoder.Eduard Burtescu-678/+627
2016-09-13Remove some ancient code providing special support for newtypesVadim Petrochenkov-28/+0
2016-09-06remove the "misc-items" from meta-dataNiko Matsakis-30/+5
2016-09-04Replace `_, _` with `..`Vadim Petrochenkov-1/+1