summary refs log tree commit diff
path: root/src/librustc_trans/trans_item.rs
AgeCommit message (Expand)AuthorLines
2017-10-07rustc: Don't inline in CGUs at -O0Alex Crichton-5/+32
2017-09-17rustc: Make trans collect/partition a queryAlex Crichton-107/+108
2017-09-17rustc_trans: Refactor collection to use tcxAlex Crichton-2/+2
2017-09-11rustc: use ty::Const for the length of TyArray.Eduard-Mihai Burtescu-1/+2
2017-08-16Merge remote-tracking branch 'origin/master' into genAlex Crichton-3/+3
2017-08-15use field init shorthand EVERYWHEREZack M. Davis-3/+3
2017-07-28Generator literal supportJohn Kåre Alsaker-0/+1
2017-07-13trans: Internalize symbols at the trans-item level, without relying on LLVM.Michael Woerister-4/+14
2017-07-11Downgrade ProjectionTy's TraitRef to its substsTobias Schottdorf-1/+1
2017-07-05Switch to rust-lang-nursery/compiler-builtinsAlex Crichton-0/+12
2017-06-28Auto merge of #42797 - arielb1:ex-falso-ice, r=nikomatsakisbors-1/+40
2017-06-28add commentsAriel Ben-Yehuda-0/+23
2017-06-27rustc: move the PolyFnSig out of TyFnDef.Eduard-Mihai Burtescu-2/+3
2017-06-21avoid translating roots with predicates that do not holdAriel Ben-Yehuda-1/+17
2017-06-12kill various tasks we no longer need and remove outdated README textNiko Matsakis-18/+0
2017-06-09incr.comp.: Uniformly represent DepNodes as (Kind, StableHash) pairs.Michael Woerister-6/+9
2017-04-26refactor away trans::symbol_mapAriel Ben-Yehuda-1/+14
2017-04-26cache symbol names in ty::mapsAriel Ben-Yehuda-6/+8
2017-04-24rustc: rename some of the queries to match tcx methods.Eduard-Mihai Burtescu-1/+1
2017-04-21just take `tcx` where we canNiko Matsakis-7/+6
2017-04-21introduce the rather simpler symbol-cache in place of symbol-mapNiko Matsakis-2/+1
2017-04-16rustc_const_eval: move ConstEvalErr to the rustc crate.Eduard-Mihai Burtescu-4/+1
2017-04-12Add new TransItem for global_asm transA.J. Gardner-2/+26
2017-03-18translate drop glue using MIRAriel Ben-Yehuda-78/+2
2017-03-18move Instance to rustc and use it in the collectorAriel Ben-Yehuda-19/+11
2017-03-18translate tuple-variant constructors using MIRAriel Ben-Yehuda-5/+11
2017-03-01more through normalization in typeck & transAriel Ben-Yehuda-6/+3
2017-02-25rustc: combine BareFnTy and ClosureTy into FnSig.Eduard-Mihai Burtescu-6/+13
2017-02-03Add warning for () to ! switchAndrew Cann-1/+1
2017-01-30Merge ty::TyBox into ty::TyAdtVadim Petrochenkov-5/+0
2017-01-26rustc: rename TyCtxt's `map` field to `hir`.Eduard-Mihai Burtescu-8/+8
2017-01-09trans: Treat generics like regular functions, not like #[inline] functions du...Michael Woerister-25/+24
2016-12-30Such large. Very 128. Much bits.Simonas Kazlauskas-0/+2
2016-12-21Make drop glue for unsized value pass two arguments instead of *(data, meta)Mark Simulacrum-5/+4
2016-12-20Move param_env onto SharedCrateContext, and move functions which need the Par...Mark Simulacrum-1/+1
2016-12-05Refactor FnSig to contain a Slice for its inputs and outputs.Mark-Simulacrum-2/+2
2016-12-05Refactor ty::FnSig to privatize all fieldsMark-Simulacrum-16/+8
2016-11-28Remove allocation in push_type_paramsMark-Simulacrum-8/+12
2016-11-28Refactor TyTrait to contain a interned ExistentialPredicate slice.Mark-Simulacrum-2/+2
2016-11-28Privatize TraitObject.principal and add a method accessor, returning Option.Mark-Simulacrum-4/+6
2016-11-21Use `Symbol` instead of `InternedString` in the AST, HIR, and various other p...Jeffrey Seyfried-2/+2
2016-11-18instantiate closures on demandAriel Ben-Yehuda-0/+2
2016-11-13Make names of types used in LLVM IR stable.Michael Woerister-182/+195
2016-11-12rustc_trans: translate closures using the collectorAriel Ben-Yehuda-0/+5
2016-11-12rustc: move closure upvar types to the closure substsAriel Ben-Yehuda-2/+4
2016-11-10rustc: clean up lookup_item_type and remove TypeScheme.Eduard Burtescu-2/+2
2016-10-25Utilize AccumulateVec to avoid heap allocations in mk_{substs, type_list, tup...Mark-Simulacrum-1/+1
2016-10-16Auto merge of #37129 - arielb1:erased-normal, r=eddybbors-1/+1
2016-10-13normalize types every time HR regions are erasedAriel Ben-Yehuda-1/+1
2016-10-11Using a type alias of Slice<Kind<'tcx>> to intern Substs<'tcx>.Adam Perry-23/+2