summaryrefslogtreecommitdiff
path: root/template/vm.inc.tmpl
blob: 8b49beb1140e58bcaa2b5b4ba7d5db81e025f9db (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
/* -*-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.c'
 */

<%=
ret = ''
offset = 15
line_no = 0
vm_body.each_line{|line|
  if line =~ /^\#line __CURRENT_LINE__/
    ret << line.sub(/__CURRENT_LINE__/, "#{line_no+offset}")
  else
    ret <<line
  end
  line_no += 1
}
ret
%>