| Age | Commit message (Expand) | Author | Lines |
| 2016-03-27 | rustc_trans: move the contents of the trans module to top-level. | Eduard Burtescu | -34547/+0 |
| 2016-03-27 | rustc: move cfg, infer, traits and ty from middle to top-level. | Eduard Burtescu | -105/+104 |
| 2016-03-27 | rustc: move middle::subst into middle::ty. | Eduard Burtescu | -24/+24 |
| 2016-03-26 | Fix removal of function attributes on ARM | Björn Steinbrink | -25/+6 |
| 2016-03-26 | Rollup merge of #32469 - nikomatsakis:shared-cgu, r=eddyb | Manish Goregaokar | -3/+3 |
| 2016-03-25 | rip out link guards | Niko Matsakis | -142/+0 |
| 2016-03-25 | Correections due to refactoring . | Niko Matsakis | -12/+15 |
| 2016-03-25 | unit-test symbol-names and item-paths | Niko Matsakis | -0/+88 |
| 2016-03-25 | add krate_attrs accessor | Niko Matsakis | -4/+1 |
| 2016-03-25 | store krate information more uniformly | Niko Matsakis | -16/+8 |
| 2016-03-25 | Add a "link-guard" to avoid accidentally linking to a wrong dylib at runtime. | Michael Woerister | -0/+141 |
| 2016-03-25 | Use new symbol names for items of various kinds. | Michael Woerister | -8/+9 |
| 2016-03-25 | Use new symbol naming scheme for object shims. | Michael Woerister | -2/+3 |
| 2016-03-25 | Use new symbol naming scheme for fn-once-shims. | Michael Woerister | -2/+3 |
| 2016-03-25 | Use new symbol naming scheme for fn-pointer-shims. | Michael Woerister | -3/+5 |
| 2016-03-25 | Make drop glue use new symbol naming scheme. | Michael Woerister | -2/+7 |
| 2016-03-25 | Make closures use stable symbol names. | Michael Woerister | -3/+2 |
| 2016-03-25 | Make monomorphized functions use stable symbol names. | Michael Woerister | -19/+12 |
| 2016-03-25 | Add missing entries for enum variants in trans::CrateContext::external_srcs. | Michael Woerister | -0/+2 |
| 2016-03-24 | Auto merge of #32428 - nikomatsakis:scopes-in-mir, r=nagisa | bors | -9/+9 |
| 2016-03-24 | make available monomorphizations shared by CGU | Niko Matsakis | -3/+3 |
| 2016-03-24 | remove `empty_substs_for_node_id` | Niko Matsakis | -11/+3 |
| 2016-03-24 | remove ErasedRegions from substitutions | Niko Matsakis | -64/+79 |
| 2016-03-23 | Address nit: Remove `ScopedDataVec` newtype | Niko Matsakis | -1/+0 |
| 2016-03-23 | extend Terminator into a struct so it can have additional fields | Niko Matsakis | -9/+10 |
| 2016-03-23 | Auto merge of #32454 - eddyb:rollup, r=eddyb | bors | -1/+1 |
| 2016-03-23 | Rollup merge of #32430 - sanxiyn:const-trans, r=arielb1 | Eduard-Mihai Burtescu | -1/+1 |
| 2016-03-23 | Auto merge of #32390 - japaric:untry, r=pnkfelix | bors | -35/+35 |
| 2016-03-23 | Auto merge of #32410 - Ticki:master, r=eddyb | bors | -0/+14 |
| 2016-03-22 | fix alignment | Jorge Aparicio | -1/+1 |
| 2016-03-22 | try! -> ? | Jorge Aparicio | -35/+35 |
| 2016-03-23 | Fix const trans | Seo Sanghyeon | -1/+1 |
| 2016-03-22 | Auto merge of #32156 - pnkfelix:borrowck-on-mir-move-analysis, r=nikomatsakis | bors | -2/+6 |
| 2016-03-21 | Add support for naked functions | Ticki | -0/+14 |
| 2016-03-21 | Switch libgraphviz from type params to associated types for Node/Edge. | Felix S. Klock II | -2/+6 |
| 2016-03-21 | Fix tupling of fn args for rust-call ABI functions | Björn Steinbrink | -0/+1 |
| 2016-03-20 | Auto merge of #32010 - devonhollowood:non-c-like-enum-repr, r=Aatch | bors | -5/+14 |
| 2016-03-19 | Auto merge of #32244 - Amanieu:compare_exchange_result, r=alexcrichton | bors | -15/+12 |
| 2016-03-19 | Change compare_exchange to return a Result<T, T> | Amanieu d'Antras | -15/+12 |
| 2016-03-19 | Rollup merge of #32347 - Amanieu:volatile_fat_ptr, r=eddyb | Eduard-Mihai Burtescu | -8/+13 |
| 2016-03-19 | Fix volatile stores of fat pointers | Amanieu d'Antras | -8/+13 |
| 2016-03-18 | Add intrinsics for float arithmetic with `fast` flag enabled | Ulrik Sverdrup | -0/+143 |
| 2016-03-18 | trans: Don't ignore zero-sized struct arguments on x86_64-pc-windows-gnu. | Eduard Burtescu | -4/+17 |
| 2016-03-18 | trans: Decide whether to load volatile_store's argument based on its ArgType. | Eduard Burtescu | -3/+3 |
| 2016-03-18 | trans: Pass newtypes of immediates as their inner-most type again. | Eduard Burtescu | -2/+18 |
| 2016-03-17 | mir: Don't memset allocas of types that do not require drop. | Eduard Burtescu | -1/+3 |
| 2016-03-17 | mir: Store immediates used for indirect arguments in an alloca. | Eduard Burtescu | -1/+1 |
| 2016-03-17 | trans: Do not depend on having Expr's around for generic_simd_intrinsic. | Eduard Burtescu | -11/+15 |
| 2016-03-17 | const_eval: Take just one set of substitutions in lookup_const_by_id. | Eduard Burtescu | -14/+8 |
| 2016-03-17 | mir: Use usize instead of u32 for indexing slices. | Eduard Burtescu | -3/+3 |