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

Method lift_binary_op_carry

rust/src/high_level_il/instruction.rs:884–890  ·  view source on GitHub ↗
(&self, op: BinaryOpCarry)

Source from the content-addressed store, hash-verified

882 }
883
884 fn lift_binary_op_carry(&self, op: BinaryOpCarry) -> LiftedBinaryOpCarry {
885 LiftedBinaryOpCarry {
886 left: self.lift_operand(op.left),
887 right: self.lift_operand(op.right),
888 carry: self.lift_operand(op.carry),
889 }
890 }
891
892 fn lift_unary_op(&self, op: UnaryOp) -> LiftedUnaryOp {
893 LiftedUnaryOp {

Callers 1

liftMethod · 0.45

Calls 1

lift_operandMethod · 0.45

Tested by

no test coverage detected