Struct cwe_checker_lib::pcode::Expression
source · pub struct Expression {
pub mnemonic: ExpressionType,
pub input0: Option<Variable>,
pub input1: Option<Variable>,
pub input2: Option<Variable>,
}
Expand description
A P-Code expression.
P-Code itself does not divide instructions into expressions, definitions and jumps, like in the internally used IR. This type roughly corresponds to P-Code instructions without side effects (except for assigning to the output register).
Fields§
§mnemonic: ExpressionType
The instruction mnemonic
input0: Option<Variable>
The first input varnode (if it exists).
input1: Option<Variable>
The second input varnode (if it exists).
input2: Option<Variable>
The third input varnode (if it exists).
Trait Implementations§
source§impl Clone for Expression
impl Clone for Expression
source§fn clone(&self) -> Expression
fn clone(&self) -> Expression
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 Expression
impl Debug for Expression
source§impl<'de> Deserialize<'de> for Expression
impl<'de> Deserialize<'de> for Expression
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 From<Expression> for Expression
impl From<Expression> for Expression
source§fn from(expr: Expression) -> IrExpression
fn from(expr: Expression) -> IrExpression
Translates a P-Code expression into an expression of the internally used IR if possible. Panics if translation is not possible.
Cases where translation is not possible:
LOAD
andSTORE
, since these are not expressions (they have side effects).- Expressions which store the size of their output in the output variable (to which we do not have access here).
These include
SUBPIECE
,INT_ZEXT
,INT_SEXT
,INT2FLOAT
,FLOAT2FLOAT
,TRUNC
,LZCOUNT
andPOPCOUNT
. Translation of these expressions is handled explicitly during translation ofDef
.
source§impl Hash for Expression
impl Hash for Expression
source§impl PartialEq for Expression
impl PartialEq for Expression
source§fn eq(&self, other: &Expression) -> bool
fn eq(&self, other: &Expression) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for Expression
impl Serialize for Expression
impl Eq for Expression
impl StructuralEq for Expression
impl StructuralPartialEq for Expression
Auto Trait Implementations§
impl RefUnwindSafe for Expression
impl Send for Expression
impl Sync for Expression
impl Unpin for Expression
impl UnwindSafe for Expression
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.