diff options
author | Aaron Patterson <tenderlove@ruby-lang.org> | 2021-06-21 15:16:13 -0700 |
---|---|---|
committer | Alan Wu <XrXr@users.noreply.github.com> | 2021-10-20 18:19:36 -0400 |
commit | 30f20d7c3867d6e06d78efb5d7e99b4b4260c2ac (patch) | |
tree | fe85e6510a98372accaec75f0418db2222a37b00 /tool/ruby_vm/views | |
parent | 0cd3b97e027332236625835578329580be12023c (diff) | |
download | ruby-30f20d7c3867d6e06d78efb5d7e99b4b4260c2ac.tar.gz |
Remove some MicroJIT vestiges
Just happened to run across this, so lets fix them
Diffstat (limited to 'tool/ruby_vm/views')
-rw-r--r-- | tool/ruby_vm/views/vm.inc.erb | 2 | ||||
-rw-r--r-- | tool/ruby_vm/views/yjit_hooks.inc.erb | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tool/ruby_vm/views/vm.inc.erb b/tool/ruby_vm/views/vm.inc.erb index c49c785df6..a4a32a8623 100644 --- a/tool/ruby_vm/views/vm.inc.erb +++ b/tool/ruby_vm/views/vm.inc.erb @@ -25,7 +25,7 @@ <%= render 'insn_entry', locals: { insn: insn } -%> % end % -% RubyVM::MicroJIT::ExampleInstructions.to_a.each do |insn| +% RubyVM::YJIT::ExampleInstructions.to_a.each do |insn| INSN_ENTRY(yjit_call_example_with_ec) { START_OF_ORIGINAL_INSN(yjit_call_example_with_ec); diff --git a/tool/ruby_vm/views/yjit_hooks.inc.erb b/tool/ruby_vm/views/yjit_hooks.inc.erb index faca2050c6..1abd281491 100644 --- a/tool/ruby_vm/views/yjit_hooks.inc.erb +++ b/tool/ruby_vm/views/yjit_hooks.inc.erb @@ -8,11 +8,11 @@ %# details. <%= render 'copyright' %> <%= render 'notice', locals: { - this_file: 'contains raw instruction bytes that helps MicroJIT generate code', + this_file: 'contains raw instruction bytes that helps YJIT generate code', edit: __FILE__, } -%> -% success, byte_arrays = RubyVM::MicroJIT.scrape +% success, byte_arrays = RubyVM::YJIT.scrape static const uint8_t yjit_scrape_successful = <%= success %>; % byte_arrays.each do |(prefix, scrape_result)| // Disassembly: |