| 649 | |
| 650 | |
| 651 | RegisterValue Function::GetStackContentsAfterInstruction(Architecture* arch, uint64_t addr, int64_t offset, size_t size) |
| 652 | { |
| 653 | BNRegisterValue value = BNGetStackContentsAfterInstruction(m_object, arch->GetObject(), addr, offset, size); |
| 654 | return RegisterValue::FromAPIObject(value); |
| 655 | } |
| 656 | |
| 657 | |
| 658 | RegisterValue Function::GetParameterValueAtInstruction(Architecture* arch, uint64_t addr, Type* functionType, size_t i) |
no test coverage detected