mirror of
https://github.com/ruby/ruby.git
synced 2026-01-27 04:24:23 +00:00
* ZJIT: Disable ZJIT instructions when USE_ZJIT is 0 * Test the order of ZJIT instructions * Add more jobs that disable JITs * Show instruction names in the message
13 lines
291 B
Plaintext
13 lines
291 B
Plaintext
#if USE_ZJIT
|
|
|
|
/* insn <%= insn.pretty_name %> */
|
|
INSN_ENTRY(<%= insn.name %>)
|
|
{
|
|
START_OF_ORIGINAL_INSN(<%= insn.name %>);
|
|
rb_zjit_profile_insn(BIN(<%= insn.jump_destination %>), ec);
|
|
DISPATCH_ORIGINAL_INSN(<%= insn.jump_destination %>);
|
|
END_INSN(<%= insn.name %>);
|
|
}
|
|
|
|
#endif
|