(context: CpuContext)
| 823 | } |
| 824 | |
| 825 | private getLinkRegister(context: CpuContext): NativePointer | null { |
| 826 | if (Process.arch === "arm64") { |
| 827 | return (context as Arm64CpuContext).lr; |
| 828 | } |
| 829 | |
| 830 | if (Process.arch === "arm") { |
| 831 | return (context as ArmCpuContext).lr; |
| 832 | } |
| 833 | |
| 834 | return null; |
| 835 | } |
| 836 | |
| 837 | private isCallInstruction(instruction: string | null): boolean { |
| 838 | if (instruction === null) { |
no outgoing calls
no test coverage detected