pub enum RelocModel {
Default,
Static,
Pic,
DynamicNoPic,
Ropi,
Rwpi,
RopiRwpi,
}
Expand description
The relocation model types supported by LLVM
Variants§
Default
Generated code will assume the default for a particular target architecture.
Static
Generated code will exist at static offsets.
Pic
Generated code will be position-independent.
DynamicNoPic
Generated code will not be position-independent and may be used in static or dynamic executables but not necessarily a shared library.
Ropi
Generated code will be compiled in read-only position independent mode. In this mode, all read-only data and functions are at a link-time constant offset from the program counter. ROPI is not supported by all target architectures and calling conventions. It is a particular feature of ARM targets, though. ROPI may be useful to avoid committing to compile-time constant locations for code in memory.
Rwpi
Generated code will be compiled in read-write position independent mode.
In this mode, all writable data is at a link-time constant offset from the static base register.
RWPI is not supported by all target architectures and calling conventions. It is a particular feature of ARM targets, though.
RWPI may be useful to avoid committing to compile-time constant locations for code in memory
RopiRwpi
Combines the ropi and rwpi modes. Generated code will be compiled in both read-only and read-write position independent modes. All read-only data appears at a link-time constant offset from the program counter, and all writable data appears at a link-time constant offset from the static base register.
Trait Implementations§
Source§impl Clone for RelocModel
impl Clone for RelocModel
Source§fn clone(&self) -> RelocModel
fn clone(&self) -> RelocModel
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for RelocModel
impl Debug for RelocModel
Source§impl Default for RelocModel
impl Default for RelocModel
Source§fn default() -> RelocModel
fn default() -> RelocModel
Auto Trait Implementations§
impl Freeze for RelocModel
impl RefUnwindSafe for RelocModel
impl Send for RelocModel
impl Sync for RelocModel
impl Unpin for RelocModel
impl UnwindSafe for RelocModel
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> 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 more