axp.txt

来自「开放源码的编译器open watcom 1.6.0版的源代码」· 文本 代码 · 共 17 行

TXT
17
字号
Digital AXP notes
=================

- longjmp() restores registers by following up the call stack so the
  restored register set is the last active one in the function that
  contains the setjmp (this is different than Intel where it is the
  register set when the setjmp executed)
  
  - long term: we should fix our longjmp to behave like the Intel
    longjmp in all circumstances since we have potential problems
    with optimizations that don't "know" about the behaviour of
    setjmp/longjmp
  
- the stack unwinding process cannot execute properly if a breakpoint
  occurs in the prologue or epilogue code (always set breakpoints
  after the prologue)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?