(context: CpuContext)
| 844 | } |
| 845 | |
| 846 | private getFramePointer(context: CpuContext): NativePointer | null { |
| 847 | if (Process.arch === "arm64") { |
| 848 | return (context as Arm64CpuContext).fp; |
| 849 | } |
| 850 | |
| 851 | if (Process.arch === "arm") { |
| 852 | return (context as ArmCpuContext).r11; |
| 853 | } |
| 854 | |
| 855 | return null; |
| 856 | } |
| 857 | |
| 858 | private getStackPointer(context: CpuContext): NativePointer | null { |
| 859 | if (Process.arch === "arm64") { |
no outgoing calls
no test coverage detected