Struct regalloc::Writable [−][src]
pub struct Writable<R: WritableBase> { /* fields omitted */ }
A “writable register”. This is a zero-cost wrapper that can be used to create a distinction, at the Rust type level, between a plain “register” and a “writable register”.
Only structs that implement the WritableBase
trait can be wrapped with
Writable
. These are the Reg, RealReg and VirtualReg data structures only,
since WritableBase
is not exposed to end users.
Writable<..> can be used by the client to ensure that, internally, it only
generates instructions that write to registers that should be written. The
InstRegUses
below, which must be implemented for every instruction,
requires a Writable<Reg>
(not just Reg
) in its defined
and
modified
sets. While we cannot hide the constructor for Writable<..>
from certain parts of the client while exposing it to others, the client
can adopt conventions to e.g. only ever call the Writable<..>
constructor from its central vreg-management logic, and decide that any
invocation of this constructor in a machine backend (for example) is an
error.
Implementations
impl<R: WritableBase> Writable<R>
[src]
impl<R: WritableBase> Writable<R>
[src]pub fn from_reg(reg: R) -> Writable<R>
[src]
Create a WritableWritable<..>
struct documentation).
pub fn to_reg(&self) -> R
[src]
Get the inner Reg.
pub fn map<F, U>(&self, f: F) -> Writable<U> where
F: Fn(R) -> U,
U: WritableBase,
[src]
F: Fn(R) -> U,
U: WritableBase,
Trait Implementations
impl<R: PartialOrd + WritableBase> PartialOrd<Writable<R>> for Writable<R>
[src]
impl<R: PartialOrd + WritableBase> PartialOrd<Writable<R>> for Writable<R>
[src]impl<R: PrettyPrint + WritableBase> PrettyPrint for Writable<R>
[src]
impl<R: PrettyPrint + WritableBase> PrettyPrint for Writable<R>
[src]fn show_rru(&self, maybe_reg_universe: Option<&RealRegUniverse>) -> String
[src]
impl<R: PrettyPrintSized + WritableBase> PrettyPrintSized for Writable<R>
[src]
impl<R: PrettyPrintSized + WritableBase> PrettyPrintSized for Writable<R>
[src]fn show_rru_sized(
&self,
maybe_reg_universe: Option<&RealRegUniverse>,
size: u8
) -> String
[src]
&self,
maybe_reg_universe: Option<&RealRegUniverse>,
size: u8
) -> String
impl<R: Copy + WritableBase> Copy for Writable<R>
[src]
impl<R: Eq + WritableBase> Eq for Writable<R>
[src]
impl<R: WritableBase> StructuralEq for Writable<R>
[src]
impl<R: WritableBase> StructuralPartialEq for Writable<R>
[src]
Auto Trait Implementations
impl<R> RefUnwindSafe for Writable<R> where
R: RefUnwindSafe,
R: RefUnwindSafe,
impl<R> Send for Writable<R> where
R: Send,
R: Send,
impl<R> Sync for Writable<R> where
R: Sync,
R: Sync,
impl<R> Unpin for Writable<R> where
R: Unpin,
R: Unpin,
impl<R> UnwindSafe for Writable<R> where
R: UnwindSafe,
R: UnwindSafe,