summaryrefslogtreecommitdiff
path: root/lib/ruby_vm/mjit/hooks.rb
blob: 39a949b4d7294f020edfea641ea31cd0f8c3942a (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
module RubyVM::MJIT
  module Hooks # :nodoc: all
    def self.on_bop_redefined(_redefined_flag, _bop)
      # C.mjit_cancel_all("BOP is redefined")
    end

    def self.on_cme_invalidate(cme)
      Invariants.on_cme_invalidate(cme)
    end

    def self.on_ractor_spawn
      # C.mjit_cancel_all("Ractor is spawned")
    end

    def self.on_constant_state_changed(_id)
      # to be used later
    end

    def self.on_constant_ic_update(_iseq, _ic, _insn_idx)
      # to be used later
    end

    def self.on_tracing_invalidate_all(_new_iseq_events)
      Invariants.on_tracing_invalidate_all
    end
  end
end