summaryrefslogtreecommitdiff
path: root/yjit
Commit message (Expand)AuthorAgeFilesLines
* YJIT: rename `InsnOpnd` => `YARVOpnd` (#6801)Maxime Chevalier-Boisvert2022-11-242-10/+10
* YJIT: Use a Box for branch targets to save memoryAlan Wu2022-11-231-111/+114
* YJIT: Simplify Insn::CCall to obviate Target::FunPtr (#6793)Takashi Kokubun2022-11-233-28/+10
* YJIT: Use NonNull pointer for CodePtr (#6792)Takashi Kokubun2022-11-233-24/+24
* YJIT: Stop passing target1 to gen_return_branchTakashi Kokubun2022-11-231-2/+2
* YJIT: Simplify code for RB_SPECIAL_CONST_P (#6795)Takashi Kokubun2022-11-231-13/+12
* Fix YJIT backend to account for unsigned int immediates (#6789)Jemma Issroff2022-11-233-6/+62
* YJIT: Skip padding jumps to side exits on Arm (#6790)Takashi Kokubun2022-11-227-47/+61
* YJIT: Lower the required Rust version from 1.58.1 to 1.58.0 (#6780)Takashi Kokubun2022-11-211-1/+1
* YJIT: Improve the failure message on enlarging a branch (#6769)Takashi Kokubun2022-11-181-5/+8
* 32 bit comparison on shape idAaron Patterson2022-11-186-19/+31
* Fix bug involving .send and overwritten methods. (#6752)Jimmy Miller2022-11-171-1/+1
* YJIT: Shrink version lists after mutation (#6749)Takashi Kokubun2022-11-161-0/+1
* YJIT: Pack BlockId and CodePtr (#6748)Takashi Kokubun2022-11-164-5/+10
* YJIT: Add compiled_branch_count stats (#6746)Takashi Kokubun2022-11-162-0/+2
* YJIT: Stop wrapping CmePtr with CmeDependency (#6747)Takashi Kokubun2022-11-162-16/+12
* YJIT: Shrink the vectors of Block after mutation (#6739)Takashi Kokubun2022-11-162-19/+27
* YJIT: Always encode Opnd::Value in 64 bits on x86_64 for GC offsets (#6733)Takashi Kokubun2022-11-154-5/+30
* YJIT: Include actual memory region size in stats (#6736)Takashi Kokubun2022-11-152-2/+8
* YJIT: Count getivar side exits by receiver flag changes (#6735)Takashi Kokubun2022-11-151-1/+2
* YJIT: Invalidate redefined methods only through cme (#6734)Takashi Kokubun2022-11-153-76/+7
* Implement LDURH on Aarch64Aaron Patterson2022-11-142-0/+36
* Remove USE_RVARGC codeAaron Patterson2022-11-142-4/+0
* YJIT: Instrument global allocations on stats build (#6712)Takashi Kokubun2022-11-133-1/+25
* YJIT: Remove unused src_ctx from Block (#6714)Takashi Kokubun2022-11-132-17/+5
* YJIT: Fix staying in invalidated code after proc callsAlan Wu2022-11-111-5/+2
* Enable --yjit-stats for release builds (#6694)Jimmy Miller2022-11-102-21/+11
* Remove numiv from RObjectJemma Issroff2022-11-101-8/+0
* Transition shape when object's capacity changesJemma Issroff2022-11-101-4/+5
* YJIT: Reset dropped_bytes when patching codeAlan Wu2022-11-083-6/+19
* Implement optimize call (#6691)Jimmy Miller2022-11-084-3/+61
* YJIT: Free pages after ObjectSpace API usages (#6676)Takashi Kokubun2022-11-071-13/+15
* YJIT: Make Code GC metrics available for non-stats builds (#6665)Takashi Kokubun2022-11-033-4/+13
* YJIT: Fix a wrong type reference (#6661)Takashi Kokubun2022-11-032-11/+1
* YJIT: Stop incrementing write_pos if cb.has_dropped_bytes (#6664)Takashi Kokubun2022-11-032-7/+7
* YJIT: Support invokeblock (#6640)Takashi Kokubun2022-11-028-29/+184
* YJIT: Avoid accumulating freed pages in the payload (#6657)Takashi Kokubun2022-11-022-8/+33
* YJIT: Visualize live ranges on register spill (#6651)Takashi Kokubun2022-11-011-6/+37
* YJIT: Add an assert to help with Context changesAlan Wu2022-11-011-1/+6
* YJIT: Delete redundant ways to make ContextAlan Wu2022-11-012-21/+6
* YJIT: Add RubyVM::YJIT.code_gc (#6644)Takashi Kokubun2022-10-313-8/+32
* YJIT: reduce default `--yjit-exec-mem-size` to 128MiB instead of 256 (#6649)Maxime Chevalier-Boisvert2022-10-311-1/+1
* YJIT: Use guard_known_class() for opt_aref on Arrays (#6643)Alan Wu2022-10-271-21/+13
* YJIT: Support nil and blockparamproxy as blockarg in send (#6492)Matthew Draper2022-10-264-44/+167
* YJIT: Invalidate i-cache for the other cb on next_page (#6631)Takashi Kokubun2022-10-261-1/+18
* YJIT: GC and recompile all code pages (#6406)Takashi Kokubun2022-10-258-23/+311
* Rename `iv_count` on shapes to `next_iv_index`Jemma Issroff2022-10-211-1/+1
* YJIT: Fix page rounding for icache bustingAlan Wu2022-10-211-5/+7
* YJIT: Read rb_num_t as usize earlyAlan Wu2022-10-211-25/+22
* YJIT: Fix gen_expandarray treating argument as VALUEAlan Wu2022-10-201-11/+12