summaryrefslogtreecommitdiff
path: root/tool/ruby_vm/views/_insn_name_info.erb
blob: 2862908631e1e31b73f6c9d74bf9385595930a75 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
%# -*- C -*-
%# Copyright (c) 2017 Urabe, Shyouhei.  All rights reserved.
%#
%# This file is a part of  the programming language Ruby.  Permission is hereby
%# granted, to either  redistribute and/or modify this file,  provided that the
%# conditions mentioned  in the  file COPYING  are met.   Consult the  file for
%# details.
%
% zjit_insns, insns = RubyVM::Instructions.partition { |i| i.name.start_with?('zjit_') }
%
% next_offset = 0
% name_offset = proc do |i|
%   offset = sprintf("%4d", next_offset)
%   next_offset += i.name.length + 1 # insn.name + \0
%   offset
% end
%
CONSTFUNC(MAYBE_UNUSED(static const char *insn_name(VALUE insn)));

RUBY_SYMBOL_EXPORT_BEGIN /* for debuggers */
extern const int rb_vm_max_insn_name_size;
extern const char rb_vm_insn_name_base[];
extern const unsigned short rb_vm_insn_name_offset[VM_INSTRUCTION_SIZE];
RUBY_SYMBOL_EXPORT_END

#ifdef RUBY_VM_INSNS_INFO
%# "trace_" is longer than "zjit_", so USE_ZJIT doesn't impact the max name size.
const int rb_vm_max_insn_name_size = <%= RubyVM::Instructions.map { |i| i.name.size }.max %>;

const char rb_vm_insn_name_base[] =
% insns.each do |i|
    <%= cstr i.name %> "\0"
% end
#if USE_ZJIT
% zjit_insns.each do |i|
    <%= cstr i.name %> "\0"
% end
#endif
    ;

const unsigned short rb_vm_insn_name_offset[] = {
% insns.each_slice(12) do |row|
    <%= row.map(&name_offset).join(', ') %>,
% end
#if USE_ZJIT
% zjit_insns.each_slice(12) do |row|
    <%= row.map(&name_offset).join(', ') %>,
% end
#endif
};

ASSERT_VM_INSTRUCTION_SIZE(rb_vm_insn_name_offset);
#endif

const char *
insn_name(VALUE i)
{
    return &rb_vm_insn_name_base[rb_vm_insn_name_offset[i]];
}