aboutsummaryrefslogtreecommitdiffstats
path: root/yjit.rb
Commit message (Expand)AuthorAgeFilesLines
* YJIT: fix bug in top cfunc logging in `--yjit-stats` (#9056)Maxime Chevalier-Boisvert2023-11-281-1/+3
* YJIT: add top C function call counts to `--yjit-stats` (#9047)Maxime Chevalier-Boisvert2023-11-271-0/+29
* YJIT: record `num_send_cfunc` stat (#9022)Maxime Chevalier-Boisvert2023-11-231-1/+2
* [DOC] RubyVM::YJIT doc improvementsAlan Wu2023-11-101-25/+25
* YJIT: refactor format_number (#8869)Mau Magnaguagno2023-11-081-5/+4
* YJIT: Inline basic Ruby methods (#8855)Takashi Kokubun2023-11-071-0/+3
* YJIT: skip to_a in format_number (#8815)Mau Magnaguagno2023-11-011-1/+1
* YJIT: Print exit reasons on failure in test_yjit.rbAlan Wu2023-10-191-7/+12
* YJIT: Add RubyVM::YJIT.enable (#8705)Takashi Kokubun2023-10-191-4/+4
* YJIT: Add a live ISeq counter Alan Wu2023-10-181-0/+1
* YJIT: Add a few missing counters for send fallback (#8681)Takashi Kokubun2023-10-171-1/+1
* YJIT: port call threshold logic from Rust to C for performance (#8628)Maxime Chevalier-Boisvert2023-10-121-1/+1
* YJIT: add heuristic to avoid compiling cold ISEQs (#8522)Maxime Chevalier-Boisvert2023-10-031-0/+1
* YJIT: Report all insn exit reasons (#8541)Takashi Kokubun2023-09-291-9/+30
* YJIT: Add compilation time counter (#8417)Takashi Kokubun2023-09-121-0/+1
* YJIT: add code_region_overhead stat output (#8262)Maxime Chevalier-Boisvert2023-08-221-0/+4
* YJIT: Quiet mode when running with `--yjit-stats` (#8251)ywenc2023-08-181-1/+3
* YJIT: implement codegen for rb_int_lshift (#8201)Maxime Chevalier-Boisvert2023-08-111-0/+1
* YJIT: Distinguish exit and fallback reasons for invokesuper/invokeblock (#8194)Takashi Kokubun2023-08-091-2/+4
* YJIT: Count throw instructions for each tag (#8188)Takashi Kokubun2023-08-091-0/+4
* YJIT: Count all opt_getconstant_path exit reasons (#8187)Takashi Kokubun2023-08-091-1/+1
* YJIT: Distinguish exit and fallback reasons for send (#8159)Takashi Kokubun2023-08-021-1/+2
* YJIT: Use dynamic dispatch for megamorphic send (#8125)Takashi Kokubun2023-07-271-1/+3
* YJIT: Count the number of dynamic send dispatches (#8122)Takashi Kokubun2023-07-261-0/+1
* Implement `opt_aref_with` instruction (#8118)ywenc2023-07-261-0/+1
* YJIT: Rename exec_instruction to yjit_insns_count (#8102)Takashi Kokubun2023-07-201-2/+2
* YJIT: Avoid undercounting retired_in_yjit (#8038)Takashi Kokubun2023-07-201-1/+1
* YJIT: Make ratio_in_yjit always available (#8064)Takashi Kokubun2023-07-131-15/+8
* YJIT: add new stats counter for compiled ISEQ entry points (#8032)Maxime Chevalier-Boisvert2023-07-061-0/+1
* YJIT: Introduce RubyVM::YJIT.stats_string (#7857)Takashi Kokubun2023-06-011-74/+84
* For YJIT stats, set avg_len_in_yjit to 0 if denominator would be 0 (#7793)Noah Gibbs2023-05-101-1/+1
* YJIT: Show definedivar exit reasons (#7755)Takashi Kokubun2023-04-241-0/+1
* YJIT: Fix raw sample stack lengths in exit traces (#7728)John Hawthorn2023-04-181-1/+1
* YJIT: Add a counter to all side exits (#7720)Takashi Kokubun2023-04-141-1/+1
* YJIT: Fix edge and total counts in exit_locations (#7702)John Hawthorn2023-04-131-5/+5
* YJIT: Count the number of actually written bytes (#7658)Takashi Kokubun2023-04-051-1/+1
* YJIT: add stats for ratio of versions per block (#7653)Maxime Chevalier-Boisvert2023-04-041-0/+4
* YJIT: Stack temp register allocation (#7651)Takashi Kokubun2023-04-041-0/+3
* YJIT: Add `--yjit-pause` and `RubyVM::YJIT.resume` (#7609)Maxime Chevalier-Boisvert2023-03-281-0/+5
* YJIT: skip intermediate arrays in print_sorted_exit_counts (#7547)Mau Magnaguagno2023-03-171-9/+10
* YJIT: add stats to keep track of when branch direction is known (#7544)Maxime Chevalier-Boisvert2023-03-161-0/+4
* YJIT: reject large stacks so we can use i8/u8 stack_size and stack_offset (#7...Maxime Chevalier-Boisvert2023-03-011-0/+2
* YJIT: add defer_empty_count statMaxime Chevalier-Boisvert2023-02-281-0/+1
* YJIT: Use rb_ivar_get at the end of ivar chains (#7334)Takashi Kokubun2023-02-171-0/+1
* YJIT: Show Context stats on exit (#7327)Takashi Kokubun2023-02-161-3/+5
* YJIT: Pad more spaces to accommodate delimiters (#7302)Takashi Kokubun2023-02-141-33/+33
* YJIT: add counters for polymorphic send and send with known class (#7288)Maxime Chevalier-Boisvert2023-02-101-11/+18
* YJIT: format numbers in stats printouts with comma separators (#7281)Maxime Chevalier-Boisvert2023-02-091-31/+43
* Add stats so we can keep track of x86 rel32 vs register calls (#7142)Maxime Chevalier-Boisvert2023-01-181-0/+5
* YJIT: Do not refer to an undefined constant (#7112)Takashi Kokubun2023-01-121-6/+3