vm-jumptable.asm
来自「纯java操作系统jnode,安装简单和操作简单的个人使用的Java操作系统」· 汇编 代码 · 共 24 行
ASM
24 行
; -----------------------------------------------
; $Id: vm-jumptable.asm,v 1.3 2004/02/15 11:06:16 epr Exp $
;
; Native address jumptable.
; This table is used by the native code compiler to call
; native methods, without compromising code moveability.
;
; When changing this file, also change org.jnode.vm.x86.compiler.X86JumpTable
; class.
;
; Author : E. Prangsma
; -----------------------------------------------
align 4
vm_jumpTable:
dd vm_patch_MOV_EAX_IMM32
dd vm_patch_NOP
dd vm_athrow
dd vm_athrow_notrace
dd 0
dd vm_invoke_abstract
dd vm_invoke_method_after_recompile
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?