2007-02-02 10:21:41 -05:00
|
|
|
/** -*-c-*-
|
|
|
|
This file contains YARV instructions list.
|
2008-12-09 02:14:13 -05:00
|
|
|
|
2007-02-02 10:21:41 -05:00
|
|
|
----
|
|
|
|
This file is auto generated by insns2vm.rb
|
|
|
|
DO NOT TOUCH!
|
|
|
|
|
|
|
|
If you want to fix something, you must edit 'template/insns.inc.tmpl'
|
2014-10-25 23:26:31 -04:00
|
|
|
or tool/insns2vm.rb
|
2007-02-02 10:21:41 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* BIN : Basic Instruction Name */
|
|
|
|
#define BIN(n) YARVINSN_##n
|
|
|
|
|
2008-04-20 01:58:59 -04:00
|
|
|
enum ruby_vminsn_type {
|
2007-02-02 10:21:41 -05:00
|
|
|
<%= insns %>
|
2008-12-08 23:25:54 -05:00
|
|
|
VM_INSTRUCTION_SIZE = <%= @insns.size %>
|
2007-02-02 10:21:41 -05:00
|
|
|
};
|
|
|
|
|