index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
librustc_trans
/
adt.rs
Age
Commit message (
Expand
)
Author
Lines
2017-11-19
rustc_trans: compute LLVM types from type layouts, not Rust types.
Eduard-Mihai Burtescu
-196
/
+0
2017-11-19
rustc: move layout::Struct into FieldPlacement/Abi.
Eduard-Mihai Burtescu
-7
/
+3
2017-11-19
rustc: hide details in Layout in favor of Abi or FieldPlacement.
Eduard-Mihai Burtescu
-65
/
+47
2017-11-19
rustc: store CachedLayout for each variant of enum Layout's instead of Struct.
Eduard-Mihai Burtescu
-5
/
+7
2017-11-19
rustc: move size/alignment from Layout into layout::Abi.
Eduard-Mihai Burtescu
-2
/
+2
2017-11-19
rustc: make Layout::NullablePointer a lot more like Layout::General.
Eduard-Mihai Burtescu
-33
/
+18
2017-11-19
rustc: collapse Layout::CEnum into Layout::General.
Eduard-Mihai Burtescu
-6
/
+5
2017-11-19
rustc: move CEnum's signedness into Primitive::Int.
Eduard-Mihai Burtescu
-6
/
+0
2017-11-19
rustc: use Primitive instead of Integer for CEnum and General discriminants.
Eduard-Mihai Burtescu
-9
/
+1
2017-11-19
rustc: collapse Layout::{Raw,StructWrapped}NullablePointer into one variant.
Eduard-Mihai Burtescu
-13
/
+9
2017-11-19
rustc_trans: treat General enums like unions.
Eduard-Mihai Burtescu
-25
/
+4
2017-11-19
rustc: pre-compute field placements out of Layout.
Eduard-Mihai Burtescu
-1
/
+1
2017-11-19
rustc: remove Ty::layout and move everything to layout_of.
Eduard-Mihai Burtescu
-6
/
+6
2017-11-19
rustc: re-complicate the TyLayout API and use better names.
Eduard-Mihai Burtescu
-2
/
+2
2017-11-19
rustc: do not inject discriminant fields into Layout::General's variants.
Eduard-Mihai Burtescu
-17
/
+9
2017-11-19
rustc_trans: always insert alignment padding, even before the first field.
Eduard-Mihai Burtescu
-12
/
+7
2017-11-19
rustc_trans: remove the in_memory_type_of distinction.
Eduard-Mihai Burtescu
-3
/
+2
2017-11-19
rustc_trans: use more of the trans::mir and ty::layout APIs throughout.
Eduard-Mihai Burtescu
-66
/
+40
2017-11-19
rustc_trans: use a predictable layout for constant ADTs.
Eduard-Mihai Burtescu
-2
/
+7
2017-11-19
rustc_trans: avoid working with sizes/offsets and alignments as integers.
Eduard-Mihai Burtescu
-54
/
+44
2017-11-17
rustc_trans: move const & lvalue access helpers from adt.
Eduard-Mihai Burtescu
-241
/
+60
2017-10-21
trans_ -> fully_ prefix
Marco Concetto Rudilosso
-1
/
+1
2017-10-21
added trans_ prefix and pluralised types. Solved failing test on the incremen...
Marco Concetto Rudilosso
-1
/
+1
2017-10-21
Create NormalizeTy query
Marco Concetto Rudilosso
-1
/
+1
2017-09-11
rustc: replace usize with u64 and ConstUsize.
Eduard-Mihai Burtescu
-3
/
+3
2017-07-28
Generator literal support
John Kåre Alsaker
-0
/
+6
2017-04-22
Use primitive align for tagged enum fill.
Cameron Hart
-3
/
+4
2017-04-21
Removed sizing parameter from struct_llfields.
Cameron Hart
-17
/
+9
2017-04-21
Implementation of repr struct alignment RFC 1358.
Cameron Hart
-17
/
+65
2017-04-16
rustc: use monomorphic const_eval for cross-crate enum discriminants.
Eduard-Mihai Burtescu
-11
/
+9
2017-04-09
rustc_trans: use ty::layout for ABI computation instead of LLVM types.
Eduard-Mihai Burtescu
-17
/
+7
2017-04-08
rustc: add some abstractions to ty::layout for a more concise API.
Eduard-Mihai Burtescu
-3
/
+2
2017-04-08
rustc_trans: avoid sizing_type_of everywhere possible.
Eduard-Mihai Burtescu
-14
/
+6
2017-03-27
Fix various useless derefs and slicings
Oliver Schneider
-4
/
+4
2017-03-18
translate drop glue using MIR
Ariel Ben-Yehuda
-22
/
+0
2017-02-10
Fix intcast, use it where appropriate
Simonas Kazlauskas
-1
/
+1
2017-02-08
emit "align 1" metadata on loads/stores of packed structs
Ariel Ben-Yehuda
-9
/
+16
2017-02-03
Add warning for () to ! switch
Andrew Cann
-1
/
+1
2017-01-04
Inline trans_switch to simplify code
Mark Simulacrum
-28
/
+0
2017-01-04
Move trans_field_ptr and struct_field_ptr to mir/lvalue
Mark Simulacrum
-161
/
+0
2017-01-04
Move trans_const to mir::constant
Mark Simulacrum
-149
/
+5
2017-01-04
Change trans_field_ptr to utilize LvalueTy to determine discriminant.
Mark Simulacrum
-11
/
+14
2017-01-04
Use LvalueRef instead of MaybeSizedValue
Mark Simulacrum
-37
/
+12
2017-01-04
Add Builder::sess and Builder::tcx methods
Mark Simulacrum
-3
/
+3
2017-01-04
Replace BlockAndBuilder with Builder.
Mark Simulacrum
-10
/
+11
2016-12-31
Fix transmute::<T, U> where T requires a bigger alignment than U
Björn Steinbrink
-4
/
+4
2016-12-20
Replace bcx.ccx() with bcx.ccx
Mark Simulacrum
-36
/
+36
2016-12-20
Rebase fixes
Mark Simulacrum
-2
/
+0
2016-12-20
Move param_env onto SharedCrateContext, and move functions which need the Par...
Mark Simulacrum
-2
/
+3
2016-12-20
Rename 'blk and 'bcx to 'a
Mark Simulacrum
-22
/
+34
[next]