| 102 | } |
| 103 | |
| 104 | interface StackMarkers { |
| 105 | sp: NativePointer; |
| 106 | fp: NativePointer | null; |
| 107 | pc: NativePointer; |
| 108 | lr: NativePointer | null; |
| 109 | } |
| 110 | |
| 111 | function getContextMarkers(context: CpuContext, sp: NativePointer, fp: NativePointer | null): StackMarkers { |
| 112 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected