summaryrefslogtreecommitdiff
path: root/yjit/src/backend
AgeCommit message (Expand)Author
2023-03-13YJIT: Merge add/sub/and/or/xor and mov on x86_64 (#7492)Takashi Kokubun
2023-03-09YJIT: Merge x86_merge into x86_split (#7487)Takashi Kokubun
2023-03-09YJIT: Optimize `cmp REG, 0` into `test REG, REG` (#7471)Takashi Kokubun
2023-03-07YJIT: Add comments to peek and x86_mergeTakashi Kokubun
2023-03-07YJIT: Merge lea and mov on x86_64 when possibleTakashi Kokubun
2023-03-02YJIT: shrink stack_size/sp_offet to u8/i8 (#7426)Maxime Chevalier-Boisvert
2023-02-22YJIT: Introduce Opnd::Stack (#7352)Takashi Kokubun
2023-02-02Fix typos in YJIT [ci skip]Alan Wu
2023-02-02YJIT: ARM64: Fix long jumps to labelsAlan Wu
2023-02-02YJIT: ARM64: Move functions out of arm64_emit()Alan Wu
2023-01-19YJIT: Refactor side_exitsJimmy Miller
2023-01-03YJIT: Dump spill error to stderr [ci skip]Alan Wu
2022-12-01YJIT: fix 32 and 16 bit register store (#6840)Jemma Issroff
2022-11-23YJIT: Simplify Insn::CCall to obviate Target::FunPtr (#6793)Takashi Kokubun
2022-11-23Fix YJIT backend to account for unsigned int immediates (#6789)Jemma Issroff
2022-11-22YJIT: Skip padding jumps to side exits on Arm (#6790)Takashi Kokubun
2022-11-1832 bit comparison on shape idAaron Patterson
2022-11-15YJIT: Always encode Opnd::Value in 64 bits on x86_64 for GC offsets (#6733)Takashi Kokubun
2022-11-03YJIT: Stop incrementing write_pos if cb.has_dropped_bytes (#6664)Takashi Kokubun
2022-11-02YJIT: Support invokeblock (#6640)Takashi Kokubun
2022-11-01YJIT: Visualize live ranges on register spill (#6651)Takashi Kokubun
2022-10-26YJIT: Invalidate i-cache for the other cb on next_page (#6631)Takashi Kokubun
2022-10-19YJIT: Skip dumping code for the other cb on --yjit-dump-disasm (#6592)Takashi Kokubun
2022-10-19YJIT: fold the "asm_comments" feature into "disasm" (#6591)Alan Wu
2022-10-17YJIT: Allow --yjit-dump-disasm to dump into a file (#6552)Takashi Kokubun
2022-10-17YJIT: Interleave inline and outlined code blocks (#6460)Takashi Kokubun
2022-10-14More clippy fixes (#6547)Jimmy Miller
2022-10-13fixes more clippy warnings (#6543)Jimmy Miller
2022-10-06YJIT: fix ARM64 bitmask encoding for 32 bit registers (#6503)Alan Wu
2022-10-03Split cmp operations that aren't 32/64 bit for arm (#6484)Jimmy Miller
2022-09-30A bunch of clippy auto fixes for yjit (#6476)Jimmy Miller
2022-09-27Change IncrCounter lowering on AArch64 (#6455)Kevin Newton
2022-09-16Invalidate i-cache after link_labels (#6388)Takashi Kokubun
2022-09-14YJIT: Add Opnd#with_num_bits to use only 8 bits (#6359)Takashi Kokubun
2022-09-09YJIT: eliminate redundant mov in csel/cmov on x86 (#6348)Maxime Chevalier-Boisvert
2022-09-09Better offsets (#6315)Kevin Newton
2022-09-08Remove as many unnecessary moves as possible (#6342)v3_2_0_preview2Kevin Newton
2022-09-01Allow comparing against 64-bit immediates on x86 (#6314)Kevin Newton
2022-09-01Stop using a callee-saved register for scratch0 on aarch64 (#6312)Takashi Kokubun
2022-09-01Let --yjit-dump-disasm=all dump ocb code as well (#6309)Takashi Kokubun
2022-08-31Better b.cond usage on AArch64 (#6305)Kevin Newton
2022-08-30Skip linking rb_yjit_icache_invalidate on cargo testTakashi Kokubun
2022-08-29A64: Only clear icache when writing out new code (https://github.com/Shopify/...Alan Wu
2022-08-29Remove ir_ssa.rs as we aren't using it and it's now outdatedMaxime Chevalier-Boisvert
2022-08-29Add --yjit-dump-disasm to dump every compiled code (https://github.com/Shopif...Takashi Kokubun
2022-08-29Various AArch64 optimizations (https://github.com/Shopify/ruby/pull/433)Kevin Newton
2022-08-29Use shorter syntax for the same pattern (https://github.com/Shopify/ruby/pull...Alan Wu
2022-08-29Better variable name, no must_use on ccall (https://github.com/Shopify/ruby/p...Kevin Newton
2022-08-29Instruction enum (https://github.com/Shopify/ruby/pull/423)Kevin Newton
2022-08-29More work toward instruction enum (https://github.com/Shopify/ruby/pull/421)Kevin Newton