Package ghidra.pcode.emulate.callother
Class OpBehaviorOtherNOP
- java.lang.Object
-
- ghidra.pcode.emulate.callother.OpBehaviorOtherNOP
-
- All Implemented Interfaces:
OpBehaviorOther
public class OpBehaviorOtherNOP extends java.lang.Object implements OpBehaviorOther
-
-
Constructor Summary
Constructors Constructor Description OpBehaviorOtherNOP()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
evaluate(Emulate emu, Varnode out, Varnode[] inputs)
Evaluate the CALLOTHER op which corresponds to this behavior.
-
-
-
Method Detail
-
evaluate
public void evaluate(Emulate emu, Varnode out, Varnode[] inputs)
Description copied from interface:OpBehaviorOther
Evaluate the CALLOTHER op which corresponds to this behavior.- Specified by:
evaluate
in interfaceOpBehaviorOther
- Parameters:
emu
- emulator which contains associated memory stateout
- output varnode or null if no assignment has been made. Implementation is responsible for updating memory state appropriately.inputs
- input varnodes passed as parameters to this pcodeop. The inputs[0] value corresponds to the index value of this pcodeop and can generally be ignored. The inputs[1] value corresponds to the first (leftmost) parameter passed to this pcodeop within the language implementation.
-
-