2007-02-02 15:21:41 +00:00
|
|
|
/** -*-c-*-
|
|
|
|
This file contains YARV instructions list.
|
2008-12-09 07:14:13 +00:00
|
|
|
|
2007-02-02 15:21:41 +00: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-26 03:26:31 +00:00
|
|
|
or tool/insns2vm.rb
|
2007-02-02 15:21:41 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* BIN : Basic Instruction Name */
|
|
|
|
#define BIN(n) YARVINSN_##n
|
|
|
|
|
2008-04-20 05:58:59 +00:00
|
|
|
enum ruby_vminsn_type {
|
2007-02-02 15:21:41 +00:00
|
|
|
<%= insns %>
|
2008-12-09 04:25:54 +00:00
|
|
|
VM_INSTRUCTION_SIZE = <%= @insns.size %>
|
2007-02-02 15:21:41 +00:00
|
|
|
};
|
|
|
|
|