Struct rustc_target::spec::Target

source ·
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>

Target triple to pass to LLVM.

§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

source§

impl Target

source

pub fn adjust_abi(&self, abi: Abi, c_variadic: bool) -> Abi

Given a function ABI, turn it into the correct ABI for this target.

source

pub fn is_abi_supported(&self, abi: Abi) -> Option<bool>

Returns a None if the UNSUPPORTED_CALLING_CONVENTIONS lint should be emitted

source

pub fn min_atomic_width(&self) -> u64

Minimum integer size in bits that this target can perform atomic operations on.

source

pub fn max_atomic_width(&self) -> u64

Maximum integer size in bits that this target can perform atomic operations on.

source

pub fn from_json(obj: Json) -> Result<(Target, TargetWarnings), String>

Loads a target descriptor from a JSON object.

source

pub fn expect_builtin(target_triple: &TargetTriple) -> Target

Load a built-in target

source

pub fn search( target_triple: &TargetTriple, sysroot: &Path ) -> Result<(Target, TargetWarnings), String>

Search for a JSON file specifying the given target triple.

If none is found in $RUST_TARGET_PATH, look for a file called target.json inside the sysroot under the target-triple’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.

source§

impl Target

source

pub fn supported_target_features(&self) -> &'static [(&'static str, Stability)]

source

pub fn tied_target_features(&self) -> &'static [&'static [&'static str]]

Methods from Deref<Target = TargetOptions>§

source

fn update_from_cli(&mut self)

source

fn update_to_cli(&mut self)

Trait Implementations§

source§

impl Clone for Target

source§

fn clone(&self) -> Target

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Target

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

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.

§

type Target = TargetOptions

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl DerefMut for Target

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
source§

impl HasTargetSpec for Target

source§

impl PartialEq for Target

source§

fn eq(&self, other: &Target) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl ToJson for Target

source§

fn to_json(&self) -> Json

source§

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> Aligned for T

source§

const ALIGN: Alignment = _

Alignment of Self.
source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<'a, T> Captures<'a> for T
where 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: 1312 bytes