pub struct Call {
pub target: Callee,
pub args: Vec<LocalValueId>,
pub clobbers: Vec<LocalValueId>,
pub tag: CallTag,
}Fields§
§target: Callee§args: Vec<LocalValueId>Values passed to the callee, one per inferred callee input, in order.
clobbers: Vec<LocalValueId>Register / memory locations the call may write or alias (the callee’s
clobbered set plus escaping pointer arguments). These are defs, not
reads: they are intentionally excluded from MnemonicKind::args so
they do not participate in use-def bookkeeping.
tag: CallTagBinding-convention tag (argpromote v2). Serialized so rewritten regpure
sites persist; older snapshots default it to Opaque (see CallTag).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Call
impl<'de> Deserialize<'de> for Call
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Call
impl StructuralPartialEq for Call
Auto Trait Implementations§
impl Freeze for Call
impl RefUnwindSafe for Call
impl Send for Call
impl Sync for Call
impl Unpin for Call
impl UnsafeUnpin for Call
impl UnwindSafe for Call
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
Mutably borrows from an owned value. Read more