aboutsummaryrefslogtreecommitdiffstats
path: root/yjit/src/asm/arm64/arg/condition.rs
Commit message (Collapse)AuthorAgeFilesLines
* Better b.cond usage on AArch64 (#6305)Kevin Newton2022-08-311-1/+31
| | | | | | | | | | | | | | | | | | | | | | * Better b.cond usage on AArch64 When we're lowering a conditional jump, we previously had a bit of a complicated setup where we could emit a conditional jump to skip over a jump that was the next instruction, and then write out the destination and use a branch register. Now instead we use the b.cond instruction if our offset fits (not common, but not unused either) and if it doesn't we write out an inverse condition to jump past loading the destination and branching directly. * Added an inverse fn for Condition (#443) Prevents the need to pass two params and potentially reduces errors. Co-authored-by: Jimmy Miller <jimmyhmiller@jimmys-mbp.lan> Co-authored-by: Maxime Chevalier-Boisvert <maximechevalierb@gmail.com> Co-authored-by: Jimmy Miller <jimmyhmiller@jimmys-mbp.lan>
* Better label refs (https://github.com/Shopify/ruby/pull/310)Kevin Newton2022-08-291-16/+18
| | | | | | | | | | | | | | | | Previously we were using a `Box<dyn FnOnce>` to support patching the code when jumping to labels. We needed to do this because some of the closures that were being used to patch needed to capture local variables (on both X86 and ARM it was the type of condition for the conditional jumps). To get around that, we can instead use const generics since the condition codes are always known at compile-time. This means that the closures go from polymorphic to monomorphic, which means they can be represented as an `fn` instead of a `Box<dyn FnOnce>`, which means they can fall back to a plain function pointer. This simplifies the storage of the `LabelRef` structs and should hopefully be a better default going forward.
* LSL, LSR, B.cond (https://github.com/Shopify/ruby/pull/303)Kevin Newton2022-08-291-0/+20
* LSL and LSR * B.cond * Move A64 files around to make more sense * offset -> byte_offset for bcond