summaryrefslogtreecommitdiffstats
path: root/opcode_list.h
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2015-08-23 20:36:11 -0700
committerDavid Tolnay <dtolnay@gmail.com>2015-08-23 20:36:11 -0700
commit0c93eb3379241dc4775718a9d39f54a6c4de20d6 (patch)
tree67bb5510adb707d54c6f72b51b0718578a2caf5c /opcode_list.h
parent891f28ef5e406a8d2156ad88d0244ab03fe490eb (diff)
Move source files to src/
Diffstat (limited to 'opcode_list.h')
-rw-r--r--opcode_list.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/opcode_list.h b/opcode_list.h
deleted file mode 100644
index e38d6843..00000000
--- a/opcode_list.h
+++ /dev/null
@@ -1,44 +0,0 @@
-OP(LOADK, CONSTANT, 1, 1)
-OP(DUP, NONE, 1, 2)
-OP(DUPN, NONE, 1, 2)
-OP(DUP2, NONE, 2, 3)
-OP(POP, NONE, 1, 0)
-OP(LOADV, VARIABLE, 1, 1)
-OP(LOADVN, VARIABLE, 1, 1)
-OP(STOREV, VARIABLE, 1, 0)
-OP(STORE_GLOBAL, GLOBAL, 0, 0)
-OP(INDEX, NONE, 2, 1)
-OP(INDEX_OPT, NONE, 2, 1)
-OP(EACH, NONE, 1, 1)
-OP(EACH_OPT, NONE, 1, 1)
-OP(FORK, BRANCH, 0, 0)
-OP(FORK_OPT, BRANCH, 0, 0)
-OP(JUMP, BRANCH, 0, 0)
-OP(JUMP_F,BRANCH, 1, 0)
-OP(BACKTRACK, NONE, 0, 0)
-OP(APPEND, VARIABLE,1, 0)
-OP(INSERT, NONE, 4, 2)
-OP(RANGE, VARIABLE, 1, 1)
-
-OP(SUBEXP_BEGIN, NONE, 1, 2)
-OP(SUBEXP_END, NONE, 2, 2)
-
-OP(PATH_BEGIN, NONE, 1, 2)
-OP(PATH_END, NONE, 2, 1)
-
-OP(CALL_BUILTIN, CFUNC, -1, 1)
-
-OP(CALL_JQ, UFUNC, 1, 1)
-OP(RET, NONE, 1, 1)
-OP(TAIL_CALL_JQ, UFUNC, 1, 1)
-
-OP(CLOSURE_PARAM, DEFINITION, 0, 0)
-OP(CLOSURE_REF, CLOSURE_REF_IMM, 0, 0)
-OP(CLOSURE_CREATE, DEFINITION, 0, 0)
-OP(CLOSURE_CREATE_C, DEFINITION, 0, 0)
-
-OP(TOP, NONE, 0, 0)
-OP(CLOSURE_PARAM_REGULAR, DEFINITION, 0, 0)
-OP(DEPS, CONSTANT, 0, 0)
-OP(MODULEMETA, CONSTANT, 0, 0)
-OP(GENLABEL, NONE, 0, 1)