aboutsummaryrefslogtreecommitdiffstats
path: root/yjit/src/asm/mod.rs
Commit message (Expand)AuthorAgeFilesLines
* YJIT: Fix build on A64Alan Wu2023-04-111-1/+1
* YJIT: Fix a compilation warning in x86_64Takashi Kokubun2023-04-111-0/+1
* YJIT: Reduce paddings if --yjit-exec-mem-size <= 128 on arm64 (#7671)Takashi Kokubun2023-04-111-7/+9
* YJIT: Count the number of actually written bytes (#7658)Takashi Kokubun2023-04-051-13/+29
* YJIT: code_gc(): Assert self is inline to avoid other_cb()Alan Wu2023-03-291-3/+6
* YJIT: Fix overlapping &mut in Assembler::code_gc()Alan Wu2023-03-291-10/+6
* YJIT: Fix a cargo test warning on x86_64 (#7428)Takashi Kokubun2023-03-031-0/+1
* YJIT: Delete stale `frozen_bytes` related code (#7423)Alan Wu2023-03-021-5/+0
* YJIT: Fix assertion for partially mapped last pages (#7337)Takashi Kokubun2023-02-201-1/+1
* YJIT: Use the system page size when the code page size is too small (#7267)Alan Wu2023-02-091-28/+50
* Fix typos in YJIT [ci skip]Alan Wu2023-02-021-1/+1
* YJIT: other_cb is None in testsAlan Wu2023-02-021-0/+1
* YJIT: Move CodegenGlobals::freed_pages into an RcAlan Wu2023-02-021-13/+35
* Enable `clippy` checks for yjit in CI (#7093)Ian Ker-Seymer2023-01-121-0/+2
* YJIT: Fix a compilation warning with release build (#7092)Takashi Kokubun2023-01-101-1/+4
* YJIT: Remove old comments for regenerated branches (#7083)Takashi Kokubun2023-01-091-0/+7
* YJIT: Remove --yjit-code-page-size (#6865)Alan Wu2022-12-051-30/+29
* YJIT: Fix IseqPayload::pages memory bloatAlan Wu2022-11-301-1/+1
* YJIT: Use NonNull pointer for CodePtr (#6792)Takashi Kokubun2022-11-231-1/+2
* YJIT: Include actual memory region size in stats (#6736)Takashi Kokubun2022-11-151-2/+5
* YJIT: Reset dropped_bytes when patching codeAlan Wu2022-11-081-0/+6
* 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-031-2/+0
* YJIT: Stop incrementing write_pos if cb.has_dropped_bytes (#6664)Takashi Kokubun2022-11-031-6/+6
* YJIT: Avoid accumulating freed pages in the payload (#6657)Takashi Kokubun2022-11-021-0/+6
* YJIT: Add RubyVM::YJIT.code_gc (#6644)Takashi Kokubun2022-10-311-6/+18
* YJIT: GC and recompile all code pages (#6406)Takashi Kokubun2022-10-251-10/+169
* YJIT: Fix page rounding for icache bustingAlan Wu2022-10-211-5/+7
* YJIT: Skip dumping code for the other cb on --yjit-dump-disasm (#6592)Takashi Kokubun2022-10-191-2/+1
* YJIT: fold the "asm_comments" feature into "disasm" (#6591)Alan Wu2022-10-191-6/+6
* Code clean around unused code for some architectures or features (#6581)Jimmy Miller2022-10-181-4/+3
* YJIT: Interleave inline and outlined code blocks (#6460)Takashi Kokubun2022-10-171-39/+201
* fixes more clippy warnings (#6543)Jimmy Miller2022-10-131-2/+2
* A bunch of clippy auto fixes for yjit (#6476)Jimmy Miller2022-09-301-5/+5
* YJIT: add assertion wrt label names (#6459)Maxime Chevalier-Boisvert2022-09-271-0/+2
* Let --yjit-dump-disasm=all dump ocb code as well (#6309)Takashi Kokubun2022-09-011-0/+5
* Add --yjit-dump-disasm to dump every compiled code (https://github.com/Shopif...Takashi Kokubun2022-08-291-2/+8
* Fix code invalidation while OOM and OOM simulation (https://github.com/Shopif...Alan Wu2022-08-291-6/+6
* Assert that the # of bytes matches for label refs (https://github.com/Shopify...Kevin Newton2022-08-291-0/+4
* Better label refs (https://github.com/Shopify/ruby/pull/310)Kevin Newton2022-08-291-3/+3
* More Arm64 lowering/backend work (https://github.com/Shopify/ruby/pull/307)Kevin Newton2022-08-291-1/+1
* Arm64 progress (https://github.com/Shopify/ruby/pull/304)Kevin Newton2022-08-291-14/+19
* MOVK, MOVZ, BR (https://github.com/Shopify/ruby/pull/296)Kevin Newton2022-08-291-0/+12
* Port gen_leave_exit(), add support for labels to backendMaxime Chevalier-Boisvert2022-08-291-5/+1
* * Arm64 Beginnings (https://github.com/Shopify/ruby/pull/291)Maxime Chevalier-Boisvert2022-08-291-0/+73
* YJIT: On-demand executable memory allocation; faster boot (#5944)Alan Wu2022-06-141-112/+32
* YJIT: Enable default rustc lints (warnings) (#5864)Alan Wu2022-04-291-27/+7
* YJIT: Adopt Clippy suggestions we likeAlan Wu2022-04-291-1/+1
* YJIT: Do not create `CodeBlock.asm_comments` if the `asm_comments` feature is...Dmitry Dygalo2022-04-291-9/+19
* YJIT: Make add_comment() more conciseAlan Wu2022-04-271-9/+3