summaryrefslogtreecommitdiff
path: root/template/vm.inc.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'template/vm.inc.tmpl')
-rw-r--r--template/vm.inc.tmpl33
1 files changed, 33 insertions, 0 deletions
diff --git a/template/vm.inc.tmpl b/template/vm.inc.tmpl
new file mode 100644
index 0000000000..14b6ba3f10
--- /dev/null
+++ b/template/vm.inc.tmpl
@@ -0,0 +1,33 @@
+/* -*-c-*- *********************************************************/
+/*******************************************************************/
+/*******************************************************************/
+/**
+ This file is VM main loop.
+
+ ----
+ This file is auto generated by insns2vm.rb
+ DO NOT TOUCH!
+
+ If you want to fix something, you must edit 'insns.def'
+ */
+
+
+% line = _erbout.count("\n") + 1
+% @insns.each do |insn|
+<%
+line += 1
+make_insn_def(insn).split(/(__CURRENT_LINE__|__CURRENT_FILE__)/).each {|e|
+ %><%=
+ case e
+ when '__CURRENT_LINE__'
+ line.to_s
+ when '__CURRENT_FILE__'
+ "vm.inc"
+ else
+ line += e.count("\n")
+ e
+ end
+ %><%
+}
+%>
+% end