YJIT: Add a comment about a lazy frame call

jit_prepare_lazy_frame_call is a complicated trick and comes with memory
overhead. Every use of the function should come with justification.
This commit is contained in:
Takashi Kokubun 2024-12-09 10:09:39 -08:00
parent cff031253f
commit 14e0a40cd0

View File

@ -6545,6 +6545,7 @@ fn jit_rb_class_superclass(
fn rb_class_superclass(klass: VALUE) -> VALUE;
}
// It may raise "uninitialized class"
if !jit_prepare_lazy_frame_call(jit, asm, cme, StackOpnd(0)) {
return false;
}