unwinder: fix 'isDeopt' check
We used to not detect deopt frames in release mode this was because we are looking for 'astInterpretDeopt' in the call stack but this did not work because the compiler optimized this function to a jmp to astInterpretDeoptInner. I tested different compiler attributes but I ended up implementing this small wrapper function in assembler because I think it's the most reliable way to make sure it does appear in the call stack.
Showing