| 628 | |
| 629 | |
| 630 | RegisterValue Function::GetRegisterValueAtInstruction(Architecture* arch, uint64_t addr, uint32_t reg) |
| 631 | { |
| 632 | BNRegisterValue value = BNGetRegisterValueAtInstruction(m_object, arch->GetObject(), addr, reg); |
| 633 | return RegisterValue::FromAPIObject(value); |
| 634 | } |
| 635 | |
| 636 | |
| 637 | RegisterValue Function::GetRegisterValueAfterInstruction(Architecture* arch, uint64_t addr, uint32_t reg) |
no test coverage detected