summaryrefslogtreecommitdiff
path: root/template/insns.inc.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'template/insns.inc.tmpl')
-rw-r--r--template/insns.inc.tmpl24
1 files changed, 24 insertions, 0 deletions
diff --git a/template/insns.inc.tmpl b/template/insns.inc.tmpl
new file mode 100644
index 0000000000..112732dce5
--- /dev/null
+++ b/template/insns.inc.tmpl
@@ -0,0 +1,24 @@
+/** -*-c-*-
+ This file contains YARV instructions list.
+
+ ----
+ This file is auto generated by insns2vm.rb
+ DO NOT TOUCH!
+
+ If you want to fix something, you must edit 'template/insns.inc.tmpl'
+ or tool/insns2vm.rb
+ */
+
+
+/* BIN : Basic Instruction Name */
+#define BIN(n) YARVINSN_##n
+
+enum ruby_vminsn_type {
+% @insns.each do |insn|
+ BIN(<%=insn.name%>),
+% end
+ VM_INSTRUCTION_SIZE
+};
+
+#define ASSERT_VM_INSTRUCTION_SIZE(array) \
+ STATIC_ASSERT(numberof_##array, numberof(array) == VM_INSTRUCTION_SIZE)