Enum rustc_session::config::SplitDwarfKind
source · [−]pub enum SplitDwarfKind {
Single,
Split,
}
Expand description
Split debug-information is enabled by -C split-debuginfo
, this enum is only used if split
debug-information is enabled (in either Packed
or Unpacked
modes), and the platform
uses DWARF for debug-information.
Some debug-information requires link-time relocation and some does not. LLVM can partition the debuginfo into sections depending on whether or not it requires link-time relocation. Split DWARF provides a mechanism which allows the linker to skip the sections which don’t require link-time relocation - either by putting those sections in DWARF object files, or by keeping them in the object file in such a way that the linker will skip them.
Variants
Single
Sections which do not require relocation are written into object file but ignored by the linker.
Split
Sections which do not require relocation are written into a DWARF object (.dwo
) file
which is ignored by the linker.
Trait Implementations
sourceimpl Clone for SplitDwarfKind
impl Clone for SplitDwarfKind
sourcefn clone(&self) -> SplitDwarfKind
fn clone(&self) -> SplitDwarfKind
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresourceimpl Debug for SplitDwarfKind
impl Debug for SplitDwarfKind
sourceimpl DepTrackingHash for SplitDwarfKind
impl DepTrackingHash for SplitDwarfKind
fn hash(
&self,
hasher: &mut DefaultHasher,
_: ErrorOutputType,
_for_crate_hash: bool
)
sourceimpl FromStr for SplitDwarfKind
impl FromStr for SplitDwarfKind
sourceimpl Hash for SplitDwarfKind
impl Hash for SplitDwarfKind
sourceimpl PartialEq<SplitDwarfKind> for SplitDwarfKind
impl PartialEq<SplitDwarfKind> for SplitDwarfKind
sourcefn eq(&self, other: &SplitDwarfKind) -> bool
fn eq(&self, other: &SplitDwarfKind) -> bool
impl Copy for SplitDwarfKind
impl StructuralPartialEq for SplitDwarfKind
Auto Trait Implementations
impl RefUnwindSafe for SplitDwarfKind
impl Send for SplitDwarfKind
impl Sync for SplitDwarfKind
impl Unpin for SplitDwarfKind
impl UnwindSafe for SplitDwarfKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
Single
: 0 bytesSplit
: 0 bytes