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 {
|
2017-08-22 00:22:01 -04:00
|
|
|
% @insns.each do |insn|
|
|
|
|
BIN(<%=insn.name%>),
|
|
|
|
% end
|
|
|
|
VM_INSTRUCTION_SIZE
|
2007-02-02 10:21:41 -05:00
|
|
|
};
|
|
|
|
|
2017-08-21 23:07:01 -04:00
|
|
|
#define ASSERT_VM_INSTRUCTION_SIZE(array) \
|
|
|
|
STATIC_ASSERT(numberof_##array, numberof(array) == VM_INSTRUCTION_SIZE)
|