op_other.hc

来自「专业汽车级嵌入式操作系统OSEK的源代码」· HC 代码 · 共 27 行

HC
27
字号
/** * This is included inside a switch statement. */case OP_ATHROW:  tempStackWord = pop_ref();  if (tempStackWord == JNULL)  {    throw_exception (nullPointerException);    goto LABEL_ENGINELOOP;  }  throw_exception (word2obj (tempStackWord));  goto LABEL_ENGINELOOP;case OP_MONITORENTER:  enter_monitor (currentThread, word2obj(pop_ref()));  goto LABEL_ENGINELOOP;case OP_MONITOREXIT:  exit_monitor (currentThread, word2obj(pop_ref()));  goto LABEL_ENGINELOOP;// Notes:// - Not supported: BREAKPOINT/*end*/

⌨️ 快捷键说明

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