mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
solving stack STOREs
This commit is contained in:
parent
2a73bca9ac
commit
ec9bfa86a7
5 changed files with 112 additions and 44 deletions
|
@ -232,7 +232,8 @@ public:
|
|||
/// \return \b true if the Varnode is fully linked
|
||||
bool isHeritaged(Varnode *vn) { return (heritage.heritagePass(vn->getAddr())>=0); }
|
||||
|
||||
const list<LoadGuard> &getLoadGuards(void) const { return heritage.getLoadGuards(); }
|
||||
const list<LoadGuard> &getLoadGuards(void) const { return heritage.getLoadGuards(); } ///< Get the list of guarded LOADs
|
||||
const list<LoadGuard> &getStoreGuards(void) const { return heritage.getStoreGuards(); } ///< Get the list of guarded STOREs
|
||||
|
||||
// Function prototype and call specification routines
|
||||
int4 numCalls(void) const { return qlst.size(); } ///< Get the number of calls made by \b this function
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue