mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 02:09:44 +02:00
Some adjustments to traceForward to CALLs
This commit is contained in:
parent
6beb631e39
commit
762cda04f4
3 changed files with 44 additions and 8 deletions
|
@ -155,6 +155,7 @@ public:
|
|||
list<PcodeOp *>::iterator getBasicIter(void) const { return basiciter; } ///< Get position within basic block
|
||||
/// \brief Get the slot number of the indicated input varnode
|
||||
int4 getSlot(const Varnode *vn) const { int4 i,n; n=inrefs.size(); for(i=0;i<n;++i) if (inrefs[i]==vn) break; return i; }
|
||||
int4 getRepeatSlot(const Varnode *vn,int4 firstSlot,list<PcodeOp *>::const_iterator iter) const;
|
||||
/// \brief Get the evaluation type of this op
|
||||
uint4 getEvalType(void) const { return (flags&(PcodeOp::unary|PcodeOp::binary|PcodeOp::special)); }
|
||||
/// \brief Get type which indicates unusual halt in control-flow
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue