summary refs log tree commit diff
path: root/src/librustc/metadata/decoder.rs
AgeCommit message (Expand)AuthorLines
2015-09-14split ty::util and ty::adjustmentAriel Ben-Yehuda-3/+5
2015-09-03rewrite metadata indexingAriel Ben-Yehuda-114/+73
2015-09-03Add an intital HIR and lowering stepNick Cameron-39/+42
2015-08-24convert to use `is_local` instead of `== LOCAL_CRATE`Niko Matsakis-1/+1
2015-08-24fallout from moving def-idNiko Matsakis-26/+27
2015-08-16Auto merge of #27643 - mitaa:get_item_, r=arielb1bors-0/+4
2015-08-16Auto merge of #27851 - nikomatsakis:cleanup-ty-decoder, r=eddybbors-19/+26
2015-08-15remove the last remnants of old interfaceNiko Matsakis-18/+24
2015-08-14move InlinedItem into librustc, where it belongsNiko Matsakis-1/+2
2015-08-14rustc: Allow changing the default allocatorAlex Crichton-3/+7
2015-08-12Replace get_item_path[-1] with get_item_namemitaa-0/+4
2015-08-10trans: Stop informing LLVM about dllexportAlex Crichton-3/+22
2015-08-07rename ADTDef to AdtDef etc.Ariel Ben-Yehuda-15/+15
2015-08-07stop using skip_binderAriel Ben-Yehuda-2/+8
2015-08-06remove ty::{VariantInfo, FieldTy}Ariel Ben-Yehuda-78/+6
2015-08-06create VariantDef-s (but don't actually use them)Ariel Ben-Yehuda-5/+104
2015-08-06add variant info to ADTDef, but don't actually use itAriel Ben-Yehuda-1/+2
2015-08-06introduce an ADTDef struct for struct/enum definitionsAriel Ben-Yehuda-0/+7
2015-08-04rustc: replace def::MethodProvenance with ty::ImplOrTraitItemContainer.Eduard Burtescu-21/+2
2015-07-27std: Deprecate a number of unstable featuresAlex Crichton-4/+4
2015-07-12Auto merge of #26895 - jroesch:modernize-typeck-names, r=nikomatsakisbors-3/+3
2015-07-12Implement RFC 1058Simonas Kazlauskas-1/+1
2015-07-08Remove snake_case names from ty.rsJared Roesch-3/+3
2015-06-12Cleanup: rename middle::ty::sty and its variants.Eli Friedman-1/+1
2015-06-10syntax: move ast_map to librustc.Eduard Burtescu-1/+1
2015-06-04Inline enum_variant_ids into its only caller.Ms2ger-25/+2
2015-06-03Remove unused get_enum_variant_defs functions.Ms2ger-18/+0
2015-06-01Return an iterator from enum_variant_ids.Ms2ger-8/+26
2015-05-29Auto merge of #25760 - Ms2ger:tagged_docs, r=Manishearthbors-258/+148
2015-05-28Return a TaggedDocsIterator from each_reexport.Ms2ger-15/+4
2015-05-26Implement defaults for associated typesAriel Ben-Yehuda-13/+22
2015-05-26Make caching in stability work. This improves stability check performanceAriel Ben-Yehuda-0/+8
2015-05-26Clean-up some junkAriel Ben-Yehuda-21/+0
2015-05-24Return TaggedDocsIterator from reader::tagged_docs.Ms2ger-251/+152
2015-05-21rustc: const-qualify `const fn` function and method calls.Eduard Burtescu-0/+21
2015-05-19Return the iterator from reader::docs.Ms2ger-12/+5
2015-05-13eddyb's changes for DST coercionsNick Cameron-0/+10
2015-05-12rustc_typeck: remove the "preload all impls ever" workaround in coherence.Eduard Burtescu-10/+0
2015-05-12Fix ty::populate_implementations_for_trait_if_necessary to load the trait's i...Eduard Burtescu-9/+41
2015-05-12rustc: rename ty::populate_implementations_for_type_if_necessary to make it c...Eduard Burtescu-5/+6
2015-05-12rustc::metadata: use u64 for DefId's instead of strings.Eduard Burtescu-56/+40
2015-04-30Use hash-tables in trait selectionAriel Ben-Yehuda-0/+5
2015-04-30Stop using Rc in TraitRef and TraitDefAriel Ben-Yehuda-3/+3
2015-04-23Fix a number of bugs that interfered with cross-crate usage of associated con...Sean Patrick Santos-14/+16
2015-04-23Functional changes for associated constants. Cross-crate usage of associated ...Sean Patrick Santos-1/+61
2015-04-23Structural changes for associated constantsSean Patrick Santos-5/+2
2015-04-21std: Remove deprecated/unstable num functionalityAlex Crichton-4/+3
2015-04-14Positive case of `len()` -> `is_empty()`Tamir Duberstein-2/+2
2015-04-03In librustc*, convert many uses of ast::Ident to ast::Name, fixing much of #6...Jonathan S-1/+1
2015-03-31Auto merge of #23549 - aturon:stab-num, r=alexcrichtonbors-1/+1