Add a new instruction OP_LOADI32.

That loads 32 bit integer bypassing pool access.
This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-11-04 14:01:04 +09:00
parent f8156ae175
commit d13df1536d
5 changed files with 37 additions and 10 deletions
+1
View File
@@ -36,6 +36,7 @@ enum mrb_insn {
#define FETCH_BB() do {a=READ_B(); b=READ_B();} while (0)
#define FETCH_BBB() do {a=READ_B(); b=READ_B(); c=READ_B();} while (0)
#define FETCH_BS() do {a=READ_B(); b=READ_S();} while (0)
#define FETCH_BSS() do {a=READ_B(); b=READ_S(); c=READ_S();} while (0)
#define FETCH_S() do {a=READ_S();} while (0)
#define FETCH_W() do {a=READ_W();} while (0)