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
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
librustc_trans
/
debuginfo
/
metadata.rs
Age
Commit message (
Expand
)
Author
Lines
2018-04-18
Support #[no_debug] for global variables.
Michael Woerister
-3
/
+10
2018-03-14
remove defaulting to unit
Andrew Cann
-4
/
+4
2018-03-13
transition various normalization functions to the new methods
Niko Matsakis
-3
/
+6
2018-03-08
Nuke ConstInt and Const*size
Oliver Schneider
-1
/
+1
2018-03-08
Produce instead of pointers
Oliver Schneider
-1
/
+1
2018-02-19
Use DefId instead of NodeId while generating debuginfo for statics.
Michael Woerister
-10
/
+9
2018-01-14
rustc_trans: rename ccx to cx.
Eduard-Mihai Burtescu
-6
/
+6
2018-01-14
rustc_trans: rename CrateContext to CodegenCx.
Eduard-Mihai Burtescu
-36
/
+36
2018-01-14
rustc_trans: access fields directly on CrateContext.
Eduard-Mihai Burtescu
-22
/
+22
2018-01-14
rustc_trans: collapse {Local,Shared}CrateContext.
Eduard-Mihai Burtescu
-14
/
+12
2018-01-08
rustc::ty: Rename `struct_variant` to `non_enum_variant`
Robin Kruppe
-2
/
+2
2017-12-20
dwarf: set dwarf linkage_name for fns and statics to its mangled symbol name
m4b
-2
/
+2
2017-12-20
Auto merge of #46457 - m4b:no_mangle_static, r=michaelwoerister
bors
-6
/
+14
2017-12-19
dwarf: do not set linkage_name for no mangle statics, and do not have a scope...
m4b
-6
/
+14
2017-12-18
Remove duplicated functions from trans::common.rs
Maik Klein
-3
/
+3
2017-12-14
Use PathBuf instead of String where applicable
Oliver Schneider
-10
/
+11
2017-11-19
rustc: extend the niche-filling enum optimization past 2 variants.
Eduard-Mihai Burtescu
-2
/
+4
2017-11-19
rustc: optimize out uninhabited types and variants.
Eduard-Mihai Burtescu
-33
/
+28
2017-11-19
rustc: track validity ranges for layout::Abi::Scalar values.
Eduard-Mihai Burtescu
-3
/
+5
2017-11-19
rustc: generalize layout::Variants::NicheFilling to niches other than 0.
Eduard-Mihai Burtescu
-9
/
+5
2017-11-19
rustc: collapse the remains of Layout into Variants (enums vs everything else).
Eduard-Mihai Burtescu
-50
/
+48
2017-11-19
rustc: move size, align & primitive_align from Abi::Aggregate to layout.
Eduard-Mihai Burtescu
-14
/
+14
2017-11-19
rustc_trans: go through layouts uniformly for fat pointers and variants.
Eduard-Mihai Burtescu
-7
/
+7
2017-11-19
rustc: do not pub use Layout::* in layout.
Eduard-Mihai Burtescu
-5
/
+6
2017-11-19
rustc: move layout::Struct into FieldPlacement/Abi.
Eduard-Mihai Burtescu
-3
/
+2
2017-11-19
rustc: hide details in Layout in favor of Abi or FieldPlacement.
Eduard-Mihai Burtescu
-22
/
+2
2017-11-19
rustc: store CachedLayout for each variant of enum Layout's instead of Struct.
Eduard-Mihai Burtescu
-91
/
+52
2017-11-19
rustc: move size/alignment from Layout into layout::Abi.
Eduard-Mihai Burtescu
-4
/
+4
2017-11-19
rustc: make Layout::NullablePointer a lot more like Layout::General.
Eduard-Mihai Burtescu
-2
/
+4
2017-11-19
rustc: collapse Layout::CEnum into Layout::General.
Eduard-Mihai Burtescu
-4
/
+5
2017-11-19
rustc: move CEnum's signedness into Primitive::Int.
Eduard-Mihai Burtescu
-10
/
+5
2017-11-19
rustc: use Primitive instead of Integer for CEnum and General discriminants.
Eduard-Mihai Burtescu
-4
/
+7
2017-11-19
rustc: collapse Layout::{Raw,StructWrapped}NullablePointer into one variant.
Eduard-Mihai Burtescu
-75
/
+2
2017-11-19
rustc: pre-compute field placements out of Layout.
Eduard-Mihai Burtescu
-5
/
+5
2017-11-19
rustc: remove Ty::layout and move everything to layout_of.
Eduard-Mihai Burtescu
-3
/
+3
2017-11-19
rustc: re-complicate the TyLayout API and use better names.
Eduard-Mihai Burtescu
-6
/
+6
2017-11-19
rustc: remove source field path from Layout::StructWrappedNullablePointer.
Eduard-Mihai Burtescu
-12
/
+34
2017-11-19
rustc: remove useless 0 prefix from Layout::StructWrappedNullablePointer's di...
Eduard-Mihai Burtescu
-1
/
+0
2017-11-19
rustc: do not inject discriminant fields into Layout::General's variants.
Eduard-Mihai Burtescu
-3
/
+7
2017-11-19
rustc_trans: use more of the trans::mir and ty::layout APIs throughout.
Eduard-Mihai Burtescu
-51
/
+39
2017-11-19
rustc_trans: avoid working with sizes/offsets and alignments as integers.
Eduard-Mihai Burtescu
-216
/
+148
2017-11-15
Emit debug info for trait object pointer
Tom Tromey
-1
/
+91
2017-10-27
Implement RFC 1861: Extern types
Paul Lietar
-0
/
+16
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-10-16
Make debuginfo::UniqueTypeId use 128 bit hash.
Michael Woerister
-4
/
+3
2017-09-17
rustc: Move codegen to a query
Alex Crichton
-2
/
+2
2017-09-17
rustc_trans: Refactor collection to use tcx
Alex Crichton
-1
/
+1
2017-09-11
rustc: use ty::Const for the length of TyArray.
Eduard-Mihai Burtescu
-1
/
+2
[next]