summary refs log tree commit diff
path: root/src/librustc_metadata/encoder.rs
AgeCommit message (Expand)AuthorLines
2016-07-02add a encoding version to the actual metadataAriel Ben-Yehuda-6/+19
2016-07-02make the metadata lock more robust and bump the metadata encoding versionAriel Ben-Yehuda-4/+0
2016-05-18change svh to store a u64Niko Matsakis-2/+2
2016-05-18always encode variant fieldsNiko Matsakis-6/+3
2016-05-18when encoding, push MetaData(foo) task on stackNiko Matsakis-52/+68
2016-05-16Remove hir::IdentVadim Petrochenkov-1/+1
2016-05-11rustc: Split 'tcx into 'gcx and 'tcx for InferCtxt and its users.Eduard Burtescu-4/+4
2016-05-11rustc: Replace &'a TyCtxt<'tcx> with a TyCtxt<'a, 'tcx> wrapper.Eduard Burtescu-8/+8
2016-05-11rustc: Avoid free functions taking &TyCtxt and &InferCtxt.Eduard Burtescu-23/+22
2016-05-09rustc: Implement custom panic runtimesAlex Crichton-1/+13
2016-05-03Remove unused trait imports flagged by lintSeo Sanghyeon-2/+1
2016-04-12Do not encode name when encoding DefKeySeo Sanghyeon-11/+11
2016-04-07Make `hir::Visibility` non-copyable and add `ty::Visibility`Jeffrey Seyfried-17/+27
2016-04-06rustc: retire hir::map's paths.Eduard Burtescu-94/+7
2016-04-06rustc: move middle::{def,def_id,pat_util} to hir.Eduard Burtescu-2/+2
2016-04-06rustc: move rustc_front to rustc::hir.Eduard Burtescu-6/+6
2016-03-31librustc_metadata: use bug!(), span_bug!()Benjamin Herr-1/+1
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-1/+1
2016-03-25store krate information more uniformlyNiko Matsakis-1/+1
2016-03-25Compute a salt from arguments passed via -Cmetadata.Michael Woerister-0/+5
2016-03-25CrateStore: Allow for custom def_id_to_string mappings in encode_type().Michael Woerister-3/+6
2016-03-17metedata: Remove the unnecessary indirection to astencode.Eduard Burtescu-60/+13
2016-03-14Fixes after a rebaseAaron Turon-0/+1
2016-03-14Move specialization graph walks to iterators; make associated typeAaron Turon-1/+8
2016-03-14Initial incorporation of specialization:Aaron Turon-1/+11
2016-03-14Hook `default` keyword into metadata and carry data through to typeckAaron Turon-0/+11
2016-03-10typestrong constant integersOliver Schneider-9/+12
2016-03-03Rename middle::ty::ctxt to TyCtxtJeffrey Seyfried-5/+5
2016-03-02Move span into `StructField`Vadim Petrochenkov-2/+2
2016-03-02Use numeric field `Name`s ("0", "1" etc) for positional fieldsVadim Petrochenkov-2/+1
2016-02-14Rename hir::Pat_ and its variantsVadim Petrochenkov-2/+2
2016-02-12Autoderef in librustc_metadataJonas Schievink-10/+10
2016-02-11[breaking-change] don't glob export ast::MetaItem_Oliver 'ker' Schneider-3/+3
2016-02-11[breaking-change] don't pub export ast::Lit_ variantsOliver Schneider-1/+1
2016-02-11[breaking-change] don't glob import/export syntax::abi enum variantsOliver Schneider-3/+3
2016-02-09make `MirMap` a struct instead of a type alias for `NodeMap`Oliver Schneider-5/+5
2016-02-04Synthesize calls to box_free language itemSimonas Kazlauskas-1/+1
2016-02-01Implemented macro referencing for save analysisDaniel Campbell-0/+5
2016-01-20Refactor definitions of ADTs in rustc::middle::defVadim Petrochenkov-3/+8
2016-01-15Preserve struct/variant kinds in metadataVadim Petrochenkov-3/+8
2016-01-08Also store MIR of closures in crate metadata.Michael Woerister-6/+9
2015-12-31Rollup merge of #30565 - michaelwoerister:opaque_encoder, r=brsonSimonas Kazlauskas-78/+24
2015-12-28Use a more efficient encoding for opaque data in RBML.Michael Woerister-78/+24
2015-12-28Rename ExplicitSelfCategory's variants and stop re-exporting them.Ms2ger-7/+7
2015-12-17move error handling from libsyntax/diagnostics.rs to libsyntax/errors/*Nick Cameron-5/+4
2015-12-12Implement `#[deprecated]` attribute (RFC 1270)Vadim Petrochenkov-11/+49
2015-12-10Make MIR encodable and store it in crate metadata.Michael Woerister-1/+23
2015-12-09Auto merge of #30140 - michaelwoerister:tls-encoding, r=nikomatsakisbors-48/+53
2015-12-09Add scoped thread-local encoding and decoding contexts to cstore.Michael Woerister-48/+53