summaryrefslogtreecommitdiff
path: root/yjit/src/backend/x86_64/mod.rs
AgeCommit message (Expand)Author
2024-07-15YJIT: Local variable register allocation (#11157)Takashi Kokubun
2024-07-08YJIT: `dump-disasm`: Print comments and bytes in release buildsAlan Wu
2024-04-17YJIT: A64: Use CBZ/CBNZ to check for zeroAlan Wu
2024-04-11YJIT: x64: Remove register shuffle with `opt_and` and friends (#10498)Alan Wu
2024-02-02YJIT: add missing jge comparison instruction (#9819)Maxime Chevalier-Boisvert
2024-01-19YJIT: Avoid doubly splitting Opnd::Value on CSel (#9617)Takashi Kokubun
2023-12-25Typofix under bootstraptest, spec and yjit directoriesHiroshi SHIBATA
2023-11-28YJIT: Assert no patch overlap on pos_marker (#9048)Takashi Kokubun
2023-11-23YJIT: Fix jmp_ptr_bytes on x86_64 (#9016)Takashi Kokubun
2023-11-10YJIT: Invoke PosMarker callbacks only with solid positionsAlan Wu
2023-11-07YJIT: Use u32 for CodePtr to save 4 bytes eachAlan Wu
2023-11-03YJIT: Delete some dead code and enable lintsAlan Wu
2023-10-19YJIT: Return Option from asm.compile() for has_dropped_bytes()Alan Wu
2023-10-18YJIT: Add --yjit-perf (#8697)Takashi Kokubun
2023-09-29YJIT: Chain-guard opt_mult overflow (#8554)Takashi Kokubun
2023-09-15YJIT: Avoid creating a vector in get_temp_regs() (#8446)Takashi Kokubun
2023-08-22YJIT: x64: Split mem-to-mem Insn::Store like Insn::MovAlan Wu
2023-08-10YJIT: add mul() instruction to backend IR (#8195)Maxime Chevalier-Boisvert
2023-08-03YJIT: add jb (unsigned less-than) instruction to backend (#8168)Maxime Chevalier-Boisvert
2023-08-03YJIT: handle expandarray_rhs_too_small case (#8161)Maxime Chevalier-Boisvert
2023-08-02Revert "YJIT: implement `expandarray_rhs_too_small` case (#8153)"Hiroshi SHIBATA
2023-08-01YJIT: implement `expandarray_rhs_too_small` case (#8153)Maxime Chevalier-Boisvert
2023-07-27YJIT: implement missing `asm.jg` instruction in backend (#8130)Maxime Chevalier-Boisvert
2023-07-04YJIT: Break register cycles for C arguments (take 2) (#8018)Takashi Kokubun
2023-06-12Revert "YJIT: Break register cycles for C arguments (#7918)"Takashi Kokubun
2023-06-12YJIT: Break register cycles for C arguments (#7918)Takashi Kokubun
2023-04-20YJIT: Merge lower_stack into the split pass (#7748)Takashi Kokubun
2023-04-19YJIT: Remove Insn::RegTemps (#7741)Takashi Kokubun
2023-04-14YJIT: Add a counter to all side exits (#7720)Takashi Kokubun
2023-04-14YJIT: Introduce Target::SideExit (#7712)Takashi Kokubun
2023-04-11YJIT: Reduce paddings if --yjit-exec-mem-size <= 128 on arm64 (#7671)Takashi Kokubun
2023-04-06YJIT: Stack temp register allocation for arm64 (#7659)Takashi Kokubun
2023-04-04YJIT: Stack temp register allocation (#7651)Takashi Kokubun
2023-03-14YJIT: Allow testing assembler with disasm (#7470)Takashi Kokubun
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-02-22YJIT: Introduce Opnd::Stack (#7352)Takashi Kokubun
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-15YJIT: Always encode Opnd::Value in 64 bits on x86_64 for GC offsets (#6733)Takashi Kokubun
2022-11-02YJIT: Support invokeblock (#6640)Takashi Kokubun
2022-10-19YJIT: fold the "asm_comments" feature into "disasm" (#6591)Alan Wu
2022-10-17YJIT: Interleave inline and outlined code blocks (#6460)Takashi Kokubun
2022-10-14More clippy fixes (#6547)Jimmy Miller
2022-09-09YJIT: eliminate redundant mov in csel/cmov on x86 (#6348)Maxime Chevalier-Boisvert
2022-09-08Remove as many unnecessary moves as possible (#6342)v3_2_0_preview2Kevin Newton