mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
GP-2515 LoadGuard segment support
This commit is contained in:
parent
0ee8c799b1
commit
8cae54c18b
1 changed files with 5 additions and 0 deletions
|
@ -973,6 +973,11 @@ bool Heritage::discoverIndexedStackPointers(AddrSpace *spc,vector<PcodeOp *> &fr
|
|||
}
|
||||
break;
|
||||
}
|
||||
case CPUI_SEGMENTOP:
|
||||
{
|
||||
if (op->getIn(2) != curNode.vn) break; // Check that stackpointer comes in as inner pointer
|
||||
// Treat output as having the same offset, fallthru to COPY
|
||||
}
|
||||
case CPUI_INDIRECT:
|
||||
case CPUI_COPY:
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue