/* defined in constants.h. */
/* used to access a slot in constanmt pool */
typedef struct _constants {
u4
size;
u1*
tags;
ConstSlot*
data;
} constants;
For interpreter mode:
#If not native method, call virtualMachine
to execute the bytecode.
#If native method, make the call for native
method - system dependent (sysdepCallMethod).
Fot JIT mode, make the call for native method - system dependent
(sysdepCallMethod), which again will call Translate for the first time
executing the bytecode.