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

Method lift_binary_op_carry

rust/src/medium_level_il/instruction.rs:1407–1413  ·  view source on GitHub ↗
(&self, op: BinaryOpCarry)

Source from the content-addressed store, hash-verified

1405 }
1406
1407 fn lift_binary_op_carry(&self, op: BinaryOpCarry) -> LiftedBinaryOpCarry {
1408 LiftedBinaryOpCarry {
1409 left: self.lift_operand(op.left),
1410 right: self.lift_operand(op.right),
1411 carry: self.lift_operand(op.carry),
1412 }
1413 }
1414
1415 fn lift_unary_op(&self, op: UnaryOp) -> LiftedUnaryOp {
1416 LiftedUnaryOp {

Callers 1

liftMethod · 0.45

Calls 1

lift_operandMethod · 0.45

Tested by

no test coverage detected