| 642 | |
| 643 | |
| 644 | RegisterValue Function::GetStackContentsAtInstruction(Architecture* arch, uint64_t addr, int64_t offset, size_t size) |
| 645 | { |
| 646 | BNRegisterValue value = BNGetStackContentsAtInstruction(m_object, arch->GetObject(), addr, offset, size); |
| 647 | return RegisterValue::FromAPIObject(value); |
| 648 | } |
| 649 | |
| 650 | |
| 651 | RegisterValue Function::GetStackContentsAfterInstruction(Architecture* arch, uint64_t addr, int64_t offset, size_t size) |
no test coverage detected