aboutsummaryrefslogtreecommitdiffstats
path: root/yjit.rb
Commit message (Expand)AuthorAgeFilesLines
* 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
* Document the public interface of YJIT [ci skip]Takashi Kokubun2022-12-221-6/+7
* YJIT: skip map in print_sorted_exit_counts (#6954)Mau Magnaguagno2022-12-191-1/+1
* Make it so YJIT is no longer marked as experimental (#6909)Maxime Chevalier-Boisvert2022-12-121-1/+1
* YJIT: Filter out 0-exit ops from Top-20 exit ops (#6892)Takashi Kokubun2022-12-091-2/+2
* YJIT: add new counters for deferred compilation and queued blocks (#6837)Maxime Chevalier-Boisvert2022-11-301-0/+2
* YJIT: Add object shape count to stats (#6754)Takashi Kokubun2022-11-171-1/+5
* YJIT: Add missing key for non-stats buildTakashi Kokubun2022-11-171-1/+2
* YJIT: Fix typo in stats references (#6753)Takashi Kokubun2022-11-171-2/+2
* YJIT: Add compiled_branch_count stats (#6746)Takashi Kokubun2022-11-161-1/+2
* YJIT: Include actual memory region size in stats (#6736)Takashi Kokubun2022-11-151-0/+1
* YJIT: Instrument global allocations on stats build (#6712)Takashi Kokubun2022-11-131-0/+1
* Remove inconsistencyTakashi Kokubun2022-11-101-2/+2
* Enable --yjit-stats for release builds (#6694)Jimmy Miller2022-11-101-7/+13
* Fix exit locations dump (#6703)Eileen M. Uchitelle2022-11-091-3/+27
* YJIT: Make more stats accessible from Ruby code (#6685)Takashi Kokubun2022-11-081-20/+29