aboutsummaryrefslogtreecommitdiffstats
path: root/yjit
Commit message (Expand)AuthorAgeFilesLines
...
* YJIT: add chain guards in `guard_two_fixnums` (#6422)Maxime Chevalier-Boisvert2022-09-221-13/+37
* YJIT: Refactor into gen_push_frame (#6412)John Hawthorn2022-09-221-102/+161
* Guard `--yjit-stats` behind `#[cfg(feature = "stats")]` (#6409)Maxime Chevalier-Boisvert2022-09-201-0/+3
* YJIT: Support MAKE=bmake for release buildAlan Wu2022-09-202-9/+15
* YJIT: Show --yjit-stats of railsbench on CI (#6403)Takashi Kokubun2022-09-201-0/+13
* YJIT: Check if the processor supports --yjit-stats (#6401)Takashi Kokubun2022-09-192-1/+11
* Only exit if ruby2_keywords and splat together (#6395)Jimmy Miller2022-09-191-1/+1
* Update bindgen crate (#6397)Takashi Kokubun2022-09-183-37/+50
* Invalidate i-cache after link_labels (#6388)Takashi Kokubun2022-09-161-11/+11
* Fix splat args (#6385)Jimmy Miller2022-09-162-29/+35
* Add asm comments to make disasm more readable (#6377)Maxime Chevalier-Boisvert2022-09-151-17/+7
* YJIT: Implement specialized respond_to? (#6363)John Hawthorn2022-09-144-0/+128
* Initial support for VM_CALL_ARGS_SPLAT (#6341)Jimmy Miller2022-09-145-37/+176
* YJIT: Add Opnd#with_num_bits to use only 8 bits (#6359)Takashi Kokubun2022-09-147-16/+61
* Add comments to touch libyjitNobuyoshi Nakada2022-09-141-2/+8
* Touch libyjit.a which may be still old due to the cacheNobuyoshi Nakada2022-09-141-0/+2
* Expand dependency for `$(YJIT_LIBS)`Nobuyoshi Nakada2022-09-141-19/+15
* YJIT: Branch directly when nil? is known from typesJohn Hawthorn2022-09-092-18/+34
* YJIT: Branch directly when truthyness is knownJohn Hawthorn2022-09-091-37/+51
* YJIT: eliminate redundant mov in csel/cmov on x86 (#6348)Maxime Chevalier-Boisvert2022-09-091-24/+31
* Better offsets (#6315)Kevin Newton2022-09-097-91/+133
* Remove as many unnecessary moves as possible (#6342)Kevin Newton2022-09-083-39/+76
* Allow comparing against 64-bit immediates on x86 (#6314)Kevin Newton2022-09-011-51/+215
* Remove rb_iseq_eachJohn Hawthorn2022-09-012-17/+0
* New constant caching insn: opt_getconstant_pathJohn Hawthorn2022-09-013-210/+181
* Stop using a callee-saved register for scratch0 on aarch64 (#6312)Takashi Kokubun2022-09-011-1/+2
* Let --yjit-dump-disasm=all dump ocb code as well (#6309)Takashi Kokubun2022-09-015-8/+37
* Better b.cond usage on AArch64 (#6305)Kevin Newton2022-08-314-75/+100
* Skip linking rb_yjit_icache_invalidate on cargo testTakashi Kokubun2022-08-301-0/+1
* Check only symbol flag bits (#6301)Takashi Kokubun2022-08-291-1/+2
* Fixed width immediates (https://github.com/Shopify/ruby/pull/437)Kevin Newton2022-08-2912-48/+110
* A64: Only clear icache when writing out new code (https://github.com/Shopify/...Alan Wu2022-08-293-0/+17
* TBZ and TBNZ for AArch64 (https://github.com/Shopify/ruby/pull/434)Kevin Newton2022-08-293-0/+171
* LDRH and STRH for AArch64 (https://github.com/Shopify/ruby/pull/438)Kevin Newton2022-08-293-0/+298
* Remove ir_ssa.rs as we aren't using it and it's now outdatedMaxime Chevalier-Boisvert2022-08-293-1263/+1
* Add --yjit-dump-disasm to dump every compiled code (https://github.com/Shopif...Takashi Kokubun2022-08-296-41/+91
* Various AArch64 optimizations (https://github.com/Shopify/ruby/pull/433)Kevin Newton2022-08-294-6/+27
* Fix and re-enable String to_s, << and unary plus (https://github.com/Shopify/...Noah Gibbs2022-08-291-14/+7
* Use shorter syntax for the same pattern (https://github.com/Shopify/ruby/pull...Alan Wu2022-08-291-42/+42
* Better variable name, no must_use on ccall (https://github.com/Shopify/ruby/p...Kevin Newton2022-08-292-3/+2
* Instruction enum (https://github.com/Shopify/ruby/pull/423)Kevin Newton2022-08-294-793/+960
* More work toward instruction enum (https://github.com/Shopify/ruby/pull/421)Kevin Newton2022-08-294-73/+403
* Use VALUE for callinfos that are on the heap (https://github.com/Shopify/ruby...Alan Wu2022-08-291-1/+4
* Avoid marking op_type on gen_defined (https://github.com/Shopify/ruby/pull/419)Takashi Kokubun2022-08-291-1/+1
* Use VALUE for block_iseq (https://github.com/Shopify/ruby/pull/417)Takashi Kokubun2022-08-291-1/+1
* Fix a bus error on regenerate_branch (https://github.com/Shopify/ruby/pull/408)Takashi Kokubun2022-08-295-22/+52
* Even more prep for instruction enum (https://github.com/Shopify/ruby/pull/413)Kevin Newton2022-08-293-340/+367
* Only check lowest bit for _Bool type (https://github.com/Shopify/ruby/pull/412)Alan Wu2022-08-291-2/+3
* Build output operands explicitly (https://github.com/Shopify/ruby/pull/411)Kevin Newton2022-08-291-65/+116
* Instruction builders for backend IR (https://github.com/Shopify/ruby/pull/410)Kevin Newton2022-08-293-197/+246