summaryrefslogtreecommitdiff
path: root/template/vm.inc.tmpl
blob: 14b6ba3f103420a4ce62ed53122d70aad8c65f0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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