summaryrefslogtreecommitdiff
path: root/yjit/src/cruby.rs
Commit message (Expand)AuthorAgeFilesLines
* YJIT: Add codegen for Integer methods (#7665)Takashi Kokubun2023-04-051-1/+3
* Revert "YJIT: Suppress unnecessary `unsafe` block (GH-7634)"Alan Wu2023-04-051-1/+1
* YJIT: Suppress unnecessary `unsafe` block (#7634)Nobuyoshi Nakada2023-03-311-1/+1
* YJIT: Support entry for multiple PCs per ISEQ (GH-7535)Takashi Kokubun2023-03-171-0/+7
* YJIT: log the names of methods we call to in disasm (#7231)Maxime Chevalier-Boisvert2023-02-021-1/+14
* Fix typos in YJIT [ci skip]Alan Wu2023-02-021-1/+1
* YJIT: Factor out VALUE_BITS = (8 * SIZE_OF_VALUE as u8)Alan Wu2023-01-131-0/+1
* Enable `clippy` checks for yjit in CI (#7093)Ian Ker-Seymer2023-01-121-1/+1
* Transition complex objects to "too complex" shapeJemma Issroff2022-12-151-0/+4
* bail on compilation if the comptime receiver is frozenAaron Patterson2022-12-021-0/+4
* implement IV writesAaron Patterson2022-12-021-1/+19
* MJIT: Use a String buffer in builtin compilersTakashi Kokubun2022-11-271-7/+0
* YJIT: Always encode Opnd::Value in 64 bits on x86_64 for GC offsets (#6733)Takashi Kokubun2022-11-151-0/+5
* YJIT: Support invokeblock (#6640)Takashi Kokubun2022-11-021-2/+18
* YJIT: incorporate ruby_special_constsNobuyoshi Nakada2022-10-201-18/+13
* Move "special consts" so `Qundef` and `Qnil` differ just 1 bitNobuyoshi Nakada2022-10-201-2/+2
* YJIT: fold the "asm_comments" feature into "disasm" (#6591)Alan Wu2022-10-191-1/+1
* fixes more clippy warnings (#6543)Jimmy Miller2022-10-131-0/+1
* Implement optimize send in yjit (#6488)Jimmy Miller2022-10-111-0/+5
* Revert "Revert "This commit implements the Object Shapes technique in CRuby.""Jemma Issroff2022-10-111-2/+10
* Revert "This commit implements the Object Shapes technique in CRuby."Aaron Patterson2022-09-301-10/+2
* A bunch of clippy auto fixes for yjit (#6476)Jimmy Miller2022-09-301-1/+1
* This commit implements the Object Shapes technique in CRuby.Jemma Issroff2022-09-281-2/+10
* Revert this until we can figure out WB issues or remove shapes from GCAaron Patterson2022-09-261-10/+2
* This commit implements the Object Shapes technique in CRuby.Jemma Issroff2022-09-261-2/+10
* Initial support for VM_CALL_ARGS_SPLAT (#6341)Jimmy Miller2022-09-141-0/+2
* YJIT: Implement concatarray in yjit (https://github.com/Shopify/ruby/pull/405)Maple Ong2022-08-291-0/+1
* Use bindgen for old manual extern declarations (https://github.com/Shopify/ru...Alan Wu2022-08-291-172/+59
* Fix compile errors on arm on the CI (https://github.com/Shopify/ruby/pull/313)Maxime Chevalier-Boisvert2022-08-291-1/+1
* Port topn, adjuststack, most of opt_plusMaxime Chevalier-Boisvert2022-08-291-1/+8
* YJIT: Teach getblockparamproxy to handle the no-block case without exiting (#...Matthew Draper2022-07-281-0/+3
* Implement Objects on VWAPeter Zhu2022-07-151-4/+0
* YJIT: Refactor gen_opt_mod (#6078)Dave Schwantes2022-06-301-1/+3
* YJIT: On-demand executable memory allocation; faster boot (#5944)Alan Wu2022-06-141-3/+0
* Add tests for a variety of string-subclass operations (#5999)Noah Gibbs2022-06-101-5/+0
* Use bindgen to import Ruby constants wherever possible. (#5943)Noah Gibbs2022-06-061-53/+12
* Use bindgen to import CRuby constants for YARV instruction bytecodesNoah Gibbs (and/or Benchmark CI)2022-05-261-110/+0
* Special-case jit_guard_known_class for strings. This can remove (#5920)Noah Gibbs2022-05-201-0/+5
* YJIT: Enable default rustc lints (warnings) (#5864)Alan Wu2022-04-291-236/+239
* Rust YJITAlan Wu2022-04-271-0/+919