pub enum InstructionKind {
Statement,
FunctionCall(FunctionCallInfo),
Terminator,
Start,
Return,
}Expand description
The type of instructions we may encounter
Variants§
Statement
Some type of statement
FunctionCall(FunctionCallInfo)
A function call
Terminator
A basic block terminator, usually switchInt
Start
The beginning of a function
Return
The merged exit points of a function
Implementations§
Source§impl InstructionKind
impl InstructionKind
Sourcepub const fn is_statement(&self) -> bool
pub const fn is_statement(&self) -> bool
Returns true if the enum is InstructionKind::Statement otherwise false
Sourcepub const fn is_function_call(&self) -> bool
pub const fn is_function_call(&self) -> bool
Returns true if the enum is InstructionKind::FunctionCall otherwise false
Sourcepub const fn is_terminator(&self) -> bool
pub const fn is_terminator(&self) -> bool
Returns true if the enum is InstructionKind::Terminator otherwise false
Source§impl InstructionKind
impl InstructionKind
Sourcepub fn as_function_call(self) -> Option<FunctionCallInfo>
pub fn as_function_call(self) -> Option<FunctionCallInfo>
If this identifies a function call, return the information inside.
Trait Implementations§
Source§impl Allocative for InstructionKind
impl Allocative for InstructionKind
Source§impl Clone for InstructionKind
impl Clone for InstructionKind
Source§fn clone(&self) -> InstructionKind
fn clone(&self) -> InstructionKind
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InstructionKind
impl Debug for InstructionKind
Source§impl<'de> Deserialize<'de> for InstructionKind
impl<'de> Deserialize<'de> for InstructionKind
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
Source§impl PartialEq for InstructionKind
impl PartialEq for InstructionKind
Source§impl Serialize for InstructionKind
impl Serialize for InstructionKind
impl Copy for InstructionKind
impl Eq for InstructionKind
impl StructuralPartialEq for InstructionKind
Auto Trait Implementations§
impl Freeze for InstructionKind
impl RefUnwindSafe for InstructionKind
impl Send for InstructionKind
impl Sync for InstructionKind
impl Unpin for InstructionKind
impl UnwindSafe for InstructionKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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>
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 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>
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