Struct FullCx

Source
pub(crate) struct FullCx<'ll, 'tcx> {
Show 22 fields pub tcx: TyCtxt<'tcx>, pub scx: GenericCx<'ll, SCx<'ll>>, pub use_dll_storage_attrs: bool, pub tls_model: ThreadLocalMode, pub codegen_unit: &'tcx CodegenUnit<'tcx>, pub instances: RefCell<FxHashMap<Instance<'tcx>, &'ll Value>>, pub vtables: RefCell<FxHashMap<(Ty<'tcx>, Option<ExistentialTraitRef<'tcx>>), &'ll Value>>, pub const_str_cache: RefCell<FxHashMap<String, &'ll Value>>, pub const_globals: RefCell<FxHashMap<&'ll Value, &'ll Value>>, pub statics_to_rauw: RefCell<Vec<(&'ll Value, &'ll Value)>>, pub used_statics: RefCell<Vec<&'ll Value>>, pub compiler_used_statics: RefCell<Vec<&'ll Value>>, pub type_lowering: RefCell<FxHashMap<(Ty<'tcx>, Option<VariantIdx>), &'ll Type>>, pub scalar_lltypes: RefCell<FxHashMap<Ty<'tcx>, &'ll Type>>, pub coverage_cx: Option<CguCoverageContext<'ll, 'tcx>>, pub dbg_cx: Option<CodegenUnitDebugContext<'ll, 'tcx>>, eh_personality: Cell<Option<&'ll Value>>, eh_catch_typeinfo: Cell<Option<&'ll Value>>, pub rust_try_fn: Cell<Option<(&'ll Type, &'ll Value)>>, intrinsics: RefCell<FxHashMap<&'static str, (&'ll Type, &'ll Value)>>, local_gen_sym_counter: Cell<usize>, pub renamed_statics: RefCell<FxHashMap<DefId, &'ll Value>>,
}

Fields§

§tcx: TyCtxt<'tcx>§scx: GenericCx<'ll, SCx<'ll>>§use_dll_storage_attrs: bool§tls_model: ThreadLocalMode§codegen_unit: &'tcx CodegenUnit<'tcx>§instances: RefCell<FxHashMap<Instance<'tcx>, &'ll Value>>

Cache instances of monomorphic and polymorphic items

§vtables: RefCell<FxHashMap<(Ty<'tcx>, Option<ExistentialTraitRef<'tcx>>), &'ll Value>>

Cache generated vtables

§const_str_cache: RefCell<FxHashMap<String, &'ll Value>>

Cache of constant strings,

§const_globals: RefCell<FxHashMap<&'ll Value, &'ll Value>>

Cache of emitted const globals (value -> global)

§statics_to_rauw: RefCell<Vec<(&'ll Value, &'ll Value)>>

List of globals for static variables which need to be passed to the LLVM function ReplaceAllUsesWith (RAUW) when codegen is complete. (We have to make sure we don’t invalidate any Values referring to constants.)

§used_statics: RefCell<Vec<&'ll Value>>

Statics that will be placed in the llvm.used variable See https://llvm.org/docs/LangRef.html#the-llvm-used-global-variable for details

§compiler_used_statics: RefCell<Vec<&'ll Value>>

Statics that will be placed in the llvm.compiler.used variable See https://llvm.org/docs/LangRef.html#the-llvm-compiler-used-global-variable for details

§type_lowering: RefCell<FxHashMap<(Ty<'tcx>, Option<VariantIdx>), &'ll Type>>

Mapping of non-scalar types to llvm types.

§scalar_lltypes: RefCell<FxHashMap<Ty<'tcx>, &'ll Type>>

Mapping of scalar types to llvm types.

§coverage_cx: Option<CguCoverageContext<'ll, 'tcx>>

Extra per-CGU codegen state needed when coverage instrumentation is enabled.

§dbg_cx: Option<CodegenUnitDebugContext<'ll, 'tcx>>§eh_personality: Cell<Option<&'ll Value>>§eh_catch_typeinfo: Cell<Option<&'ll Value>>§rust_try_fn: Cell<Option<(&'ll Type, &'ll Value)>>§intrinsics: RefCell<FxHashMap<&'static str, (&'ll Type, &'ll Value)>>§local_gen_sym_counter: Cell<usize>

A counter that is used for generating local symbol names

§renamed_statics: RefCell<FxHashMap<DefId, &'ll Value>>

codegen_static will sometimes create a second global variable with a different type and clear the symbol name of the original global. global_asm! needs to be able to find this new global so that it can compute the correct mangled symbol name to insert into the asm.

Methods from Deref<Target = GenericCx<'ll, SCx<'ll>>>§

Source

pub(crate) fn get_metadata_value(&self, metadata: &'ll Metadata) -> &'ll Value

Source

pub(crate) fn get_function(&self, name: &str) -> Option<&'ll Value>

Source

pub(crate) fn get_md_kind_id(&self, name: &str) -> MetadataKindId

Source

pub(crate) fn create_metadata(&self, name: String) -> Option<&'ll Metadata>

Source

pub(crate) fn set_metadata<'a>( &self, val: &'a Value, kind_id: impl Into<MetadataKindId>, md: &'ll Metadata, )

A wrapper for llvm::LLVMSetMetadata, but it takes Metadata as a parameter instead of Value.

Source

pub(crate) fn declare_global(&self, name: &str, ty: &'ll Type) -> &'ll Value

Declare a global value.

If there’s a value with the same name already declared, the function will return its Value instead.

Source

pub(crate) fn type_named_struct(&self, name: &str) -> &'ll Type

Source

pub(crate) fn set_struct_body( &self, ty: &'ll Type, els: &[&'ll Type], packed: bool, )

Source

pub(crate) fn type_void(&self) -> &'ll Type

Source

pub(crate) fn type_token(&self) -> &'ll Type

Source

pub(crate) fn type_metadata(&self) -> &'ll Type

Source

pub(crate) fn type_ix(&self, num_bits: u64) -> &'ll Type

x Creates an integer type with the given number of bits, e.g., i24

Source

pub(crate) fn type_vector(&self, ty: &'ll Type, len: u64) -> &'ll Type

Source

pub(crate) fn func_params_types(&self, ty: &'ll Type) -> Vec<&'ll Type>

Source

pub(crate) fn llcx(&self) -> &'ll Context

Source

pub(crate) fn isize_ty(&self) -> &'ll Type

Source

pub(crate) fn type_variadic_func( &self, args: &[&'ll Type], ret: &'ll Type, ) -> &'ll Type

Source

pub(crate) fn type_i1(&self) -> &'ll Type

Source

pub(crate) fn type_struct(&self, els: &[&'ll Type], packed: bool) -> &'ll Type

Trait Implementations§

Source§

impl<'ll> Borrow<SCx<'ll>> for FullCx<'ll, '_>

Source§

fn borrow(&self) -> &SCx<'ll>

Immutably borrows from an owned value. Read more
Source§

impl<'ll, 'tcx> Deref for FullCx<'ll, 'tcx>

Source§

type Target = GenericCx<'ll, SCx<'ll>>

The resulting type after dereferencing.
Source§

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

Dereferences the value.

Auto Trait Implementations§

§

impl<'ll, 'tcx> !DynSend for FullCx<'ll, 'tcx>

§

impl<'ll, 'tcx> !DynSync for FullCx<'ll, 'tcx>

§

impl<'ll, 'tcx> !Freeze for FullCx<'ll, 'tcx>

§

impl<'ll, 'tcx> !RefUnwindSafe for FullCx<'ll, 'tcx>

§

impl<'ll, 'tcx> !Send for FullCx<'ll, 'tcx>

§

impl<'ll, 'tcx> !Sync for FullCx<'ll, 'tcx>

§

impl<'ll, 'tcx> Unpin for FullCx<'ll, 'tcx>

§

impl<'ll, 'tcx> !UnwindSafe for FullCx<'ll, 'tcx>

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, R> CollectAndApply<T, R> for T

Source§

fn collect_and_apply<I, F>(iter: I, f: F) -> R
where I: Iterator<Item = T>, F: FnOnce(&[T]) -> R,

Equivalent to f(&iter.collect::<Vec<_>>()).

Source§

type Output = R

Source§

impl<T> Filterable for T

Source§

fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>

Creates a filterable data provider with the given name for debugging. 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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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 more
Source§

impl<P> IntoQueryParam<P> for P

Source§

impl<T> MaybeResult<T> for T

Source§

type Error = !

Source§

fn from(_: Result<T, <T as MaybeResult<T>>::Error>) -> T

Source§

fn to_result(self) -> Result<T, <T as MaybeResult<T>>::Error>

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

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>,

Source§

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<I, T, U> Upcast<I, U> for T
where U: UpcastFrom<I, T>,

Source§

fn upcast(self, interner: I) -> U

Source§

impl<I, T> UpcastFrom<I, T> for T

Source§

fn upcast_from(from: T, _tcx: I) -> T

Source§

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

Source§

fn vzip(self) -> V

Source§

impl<Tcx, T> Value<Tcx> for T
where Tcx: DepContext,

Source§

default fn from_cycle_error( tcx: Tcx, cycle_error: &CycleError, _guar: ErrorGuaranteed, ) -> T

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<T> ErasedDestructor for T
where T: 'static,

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: 816 bytes