MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / expression

Method expression

rust/src/low_level_il/lifting.rs:1006–1011  ·  view source on GitHub ↗
(
        &'a self,
        expr: E,
    )

Source from the content-addressed store, hash-verified

1004 pub const NO_OUTPUTS: [LowLevelILRegister<A::Register>; 0] = [];
1005
1006 pub fn expression<'a, E: LiftableLowLevelIL<'a, A>>(
1007 &'a self,
1008 expr: E,
1009 ) -> LowLevelILExpression<'a, A, Mutable, NonSSA<LiftedNonSSA>, E::Result> {
1010 E::lift(self, expr)
1011 }
1012
1013 pub fn add_instruction<'a, E: LiftableLowLevelIL<'a, A>>(&'a self, expr: E) {
1014 let expr = self.expression(expr);

Callers 3

instruction_llilMethod · 0.80
add_instructionMethod · 0.80
replace_expressionMethod · 0.80

Calls 1

liftFunction · 0.85

Tested by

no test coverage detected