pub struct Target {
pub llvm_target: Cow<'static, str>,
pub metadata: TargetMetadata,
pub pointer_width: u32,
pub arch: Cow<'static, str>,
pub data_layout: Cow<'static, str>,
pub options: TargetOptions,
}
Expand description
Everything rustc
knows about how to compile for a specific target.
Every field here must be specified, and has no default value.
Fields§
§llvm_target: Cow<'static, str>
Unversioned target tuple to pass to LLVM.
Target tuples can optionally contain an OS version (notably Apple targets), which rustc cannot know without querying the environment.
Use rustc_codegen_ssa::back::versioned_llvm_target
if you need the full LLVM target.
metadata: TargetMetadata
Metadata about a target, for example the description or tier. Used for generating target documentation.
pointer_width: u32
Number of bits in a pointer. Influences the target_pointer_width
cfg
variable.
arch: Cow<'static, str>
Architecture to use for ABI considerations. Valid options include: “x86”, “x86_64”, “arm”, “aarch64”, “mips”, “powerpc”, “powerpc64”, and others.
data_layout: Cow<'static, str>
Data layout to pass to LLVM.
options: TargetOptions
Optional settings with defaults.
Implementations§
Source§impl Target
impl Target
pub fn parse_data_layout( &self, ) -> Result<TargetDataLayout, TargetDataLayoutErrors<'_>>
Source§impl Target
impl Target
Sourcepub fn adjust_abi(&self, abi: Abi, c_variadic: bool) -> Abi
pub fn adjust_abi(&self, abi: Abi, c_variadic: bool) -> Abi
Given a function ABI, turn it into the correct ABI for this target.
pub fn is_abi_supported(&self, abi: Abi) -> bool
Sourcepub fn min_atomic_width(&self) -> u64
pub fn min_atomic_width(&self) -> u64
Minimum integer size in bits that this target can perform atomic operations on.
Sourcepub fn max_atomic_width(&self) -> u64
pub fn max_atomic_width(&self) -> u64
Maximum integer size in bits that this target can perform atomic operations on.
Sourcepub fn from_json(obj: Json) -> Result<(Target, TargetWarnings), String>
pub fn from_json(obj: Json) -> Result<(Target, TargetWarnings), String>
Loads a target descriptor from a JSON object.
Sourcepub fn expect_builtin(target_tuple: &TargetTuple) -> Target
pub fn expect_builtin(target_tuple: &TargetTuple) -> Target
Load a built-in target
Sourcepub fn search(
target_tuple: &TargetTuple,
sysroot: &Path,
) -> Result<(Target, TargetWarnings), String>
pub fn search( target_tuple: &TargetTuple, sysroot: &Path, ) -> Result<(Target, TargetWarnings), String>
Search for a JSON file specifying the given target tuple.
If none is found in $RUST_TARGET_PATH
, look for a file called target.json
inside the
sysroot under the target-tuple’s rustlib
directory. Note that it could also just be a
bare filename already, so also check for that. If one of the hardcoded targets we know
about, just return it directly.
The error string could come from any of the APIs called, including filesystem access and JSON decoding.
Sourcepub fn small_data_threshold_support(&self) -> SmallDataThresholdSupport
pub fn small_data_threshold_support(&self) -> SmallDataThresholdSupport
Return the target’s small data threshold support, converting
DefaultForArch
into a concrete value.
Source§impl Target
impl Target
pub fn rust_target_features( &self, ) -> &'static [(&'static str, Stability, &'static [&'static str])]
pub fn features_for_correct_vector_abi(&self) -> &'static [(u64, &'static str)]
pub fn tied_target_features(&self) -> &'static [&'static [&'static str]]
pub fn implied_target_features( &self, base_features: impl Iterator<Item = Symbol>, ) -> FxHashSet<Symbol>
Methods from Deref<Target = TargetOptions>§
pub fn supports_comdat(&self) -> bool
fn add_pre_link_args(&mut self, flavor: LinkerFlavor, args: &[&'static str])
fn update_from_cli(&mut self)
fn update_to_cli(&mut self)
Trait Implementations§
Source§impl Deref for Target
impl Deref for Target
TargetOptions
being a separate type is basically an implementation detail of Target
that is
used for providing defaults. Perhaps there’s a way to merge TargetOptions
into Target
so
this Deref
implementation is no longer necessary.
Source§impl HasTargetSpec for Target
impl HasTargetSpec for Target
fn target_spec(&self) -> &Target
impl StructuralPartialEq for Target
Auto Trait Implementations§
impl DynSend for Target
impl DynSync for Target
impl Freeze for Target
impl RefUnwindSafe for Target
impl Send for Target
impl Sync for Target
impl Unpin for Target
impl UnwindSafe for Target
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
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: 1344 bytes