3 ** Jump Table for the Lua interpreter
4 ** See Copyright Notice in lua.h
12 #define vmdispatch(x) goto *disptab[x];
14 #define vmcase(l) L_##l:
16 #define vmbreak vmfetch(); vmdispatch(GET_OPCODE(i));
19 static const void *const disptab
[NUM_OPCODES
] = {
22 **you can update the following list with
this command
:
24 **sed
- n
'/^OP_/\!d; s/OP_/\&\&L_OP_/ ; s/,.*/,/ ; s/\/.*// ; p' lopcodes
.h