pub struct TargetDataLayout {Show 17 fields
pub endian: Endian,
pub i1_align: AbiAlign,
pub i8_align: AbiAlign,
pub i16_align: AbiAlign,
pub i32_align: AbiAlign,
pub i64_align: AbiAlign,
pub i128_align: AbiAlign,
pub f16_align: AbiAlign,
pub f32_align: AbiAlign,
pub f64_align: AbiAlign,
pub f128_align: AbiAlign,
pub aggregate_align: AbiAlign,
pub vector_align: Vec<(Size, AbiAlign)>,
pub default_address_space: AddressSpace,
pub default_address_space_pointer_spec: PointerSpec,
pub instruction_address_space: AddressSpace,
pub c_enum_min_size: Integer,
/* private fields */
}
Expand description
Parsed Data layout for a target, which contains everything needed to compute layouts.
Fields§
§endian: Endian
§i1_align: AbiAlign
§i8_align: AbiAlign
§i16_align: AbiAlign
§i32_align: AbiAlign
§i64_align: AbiAlign
§i128_align: AbiAlign
§f16_align: AbiAlign
§f32_align: AbiAlign
§f64_align: AbiAlign
§f128_align: AbiAlign
§aggregate_align: AbiAlign
§vector_align: Vec<(Size, AbiAlign)>
Alignments for vector types.
default_address_space: AddressSpace
§default_address_space_pointer_spec: PointerSpec
§instruction_address_space: AddressSpace
§c_enum_min_size: Integer
Minimum size of #[repr(C)] enums (default c_int::BITS, usually 32)
Note: This isn’t in LLVM’s data layout string, it is short_enum
so the only valid spec for LLVM is c_int::BITS or 8
Implementations§
Source§impl TargetDataLayout
impl TargetDataLayout
Sourcepub fn parse_from_llvm_datalayout_string<'a>(
input: &'a str,
default_address_space: AddressSpace,
) -> Result<TargetDataLayout, TargetDataLayoutErrors<'a>>
pub fn parse_from_llvm_datalayout_string<'a>( input: &'a str, default_address_space: AddressSpace, ) -> Result<TargetDataLayout, TargetDataLayoutErrors<'a>>
Parse data layout from an llvm data layout string
This function doesn’t fill c_enum_min_size
and it will always be I32
since it can not be
determined from llvm string.
Sourcepub fn obj_size_bound(&self) -> u64
pub fn obj_size_bound(&self) -> u64
Returns exclusive upper bound on object size in bytes, in the default data address space.
The theoretical maximum object size is defined as the maximum positive isize
value.
This ensures that the offset
semantics remain well-defined by allowing it to correctly
index every address within an object along with one byte past the end, along with allowing
isize
to store the difference between any two pointers into an object.
LLVM uses a 64-bit integer to represent object size in bits, but we care only for bytes, so we adopt such a more-constrained size bound due to its technical limitations.
Sourcepub fn obj_size_bound_in(&self, address_space: AddressSpace) -> u64
pub fn obj_size_bound_in(&self, address_space: AddressSpace) -> u64
Returns exclusive upper bound on object size in bytes.
The theoretical maximum object size is defined as the maximum positive isize
value.
This ensures that the offset
semantics remain well-defined by allowing it to correctly
index every address within an object along with one byte past the end, along with allowing
isize
to store the difference between any two pointers into an object.
LLVM uses a 64-bit integer to represent object size in bits, but we care only for bytes, so we adopt such a more-constrained size bound due to its technical limitations.
pub fn ptr_sized_integer(&self) -> Integer
pub fn ptr_sized_integer_in(&self, address_space: AddressSpace) -> Integer
Sourcepub fn llvmlike_vector_align(&self, vec_size: Size) -> AbiAlign
pub fn llvmlike_vector_align(&self, vec_size: Size) -> AbiAlign
an alignment resembling the one LLVM would pick for a vector
Sourcepub fn pointer_size(&self) -> Size
pub fn pointer_size(&self) -> Size
Get the pointer size in the default data address space.
Sourcepub fn pointer_size_in(&self, c: AddressSpace) -> Size
pub fn pointer_size_in(&self, c: AddressSpace) -> Size
Get the pointer size in a specific address space.
Sourcepub fn pointer_offset(&self) -> Size
pub fn pointer_offset(&self) -> Size
Get the pointer index in the default data address space.
Sourcepub fn pointer_offset_in(&self, c: AddressSpace) -> Size
pub fn pointer_offset_in(&self, c: AddressSpace) -> Size
Get the pointer index in a specific address space.
Sourcepub fn pointer_align(&self) -> AbiAlign
pub fn pointer_align(&self) -> AbiAlign
Get the pointer alignment in the default data address space.
Sourcepub fn pointer_align_in(&self, c: AddressSpace) -> AbiAlign
pub fn pointer_align_in(&self, c: AddressSpace) -> AbiAlign
Get the pointer alignment in a specific address space.
Trait Implementations§
Source§impl Debug for TargetDataLayout
impl Debug for TargetDataLayout
Source§impl Default for TargetDataLayout
impl Default for TargetDataLayout
Source§fn default() -> TargetDataLayout
fn default() -> TargetDataLayout
Creates an instance of TargetDataLayout
.