Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby34 /
share /
ruby /
ruby_vm /
rjit /
Delete
Unzip
Name
Size
Permission
Date
Action
assembler.rb
32.81
KB
-rw-r--r--
2025-05-29 14:04
block.rb
568
B
-rw-r--r--
2025-05-29 14:04
branch_stub.rb
879
B
-rw-r--r--
2025-05-29 14:04
c_pointer.rb
10.68
KB
-rw-r--r--
2025-05-29 14:04
c_type.rb
2.66
KB
-rw-r--r--
2025-05-29 14:04
code_block.rb
2.28
KB
-rw-r--r--
2025-05-29 14:04
compiler.rb
16.72
KB
-rw-r--r--
2025-05-29 14:04
context.rb
11.14
KB
-rw-r--r--
2025-05-29 14:04
entry_stub.rb
226
B
-rw-r--r--
2025-05-29 14:04
exit_compiler.rb
4.83
KB
-rw-r--r--
2025-05-29 14:04
hooks.rb
949
B
-rw-r--r--
2025-05-29 14:04
insn_compiler.rb
204.81
KB
-rw-r--r--
2025-05-29 14:04
instruction.rb
38.66
KB
-rw-r--r--
2025-05-29 14:04
invariants.rb
4.72
KB
-rw-r--r--
2025-05-29 14:04
jit_state.rb
1.96
KB
-rw-r--r--
2025-05-29 14:04
stats.rb
7.4
KB
-rw-r--r--
2025-05-29 14:04
type.rb
5.91
KB
-rw-r--r--
2025-05-29 14:04
Save
Rename
module RubyVM::RJIT module Hooks # :nodoc: all def self.on_bop_redefined(_redefined_flag, _bop) # C.rjit_cancel_all("BOP is redefined") end def self.on_cme_invalidate(cme) cme = C.rb_callable_method_entry_struct.new(cme) Invariants.on_cme_invalidate(cme) end def self.on_ractor_spawn # C.rjit_cancel_all("Ractor is spawned") end # Global constant changes like const_set def self.on_constant_state_changed(id) Invariants.on_constant_state_changed(id) end # ISEQ-specific constant invalidation def self.on_constant_ic_update(iseq, ic, insn_idx) iseq = C.rb_iseq_t.new(iseq) ic = C.IC.new(ic) Invariants.on_constant_ic_update(iseq, ic, insn_idx) end def self.on_tracing_invalidate_all(_new_iseq_events) Invariants.on_tracing_invalidate_all end def self.on_update_references Invariants.on_update_references end end end