• Joey Gouly's avatar
    [ptr-compr][turbofan] Add some simplified reducers for compressions · e68a51f7
    Joey Gouly authored
    ChangeTaggedSignedToInt32(ChangeCompressedSignedToTaggedSigned((x)) ->
      ChangeCompressedSignedToInt32(x)
    
    This pattern shows up in the Octane Richards benchmark (on arm64):
    
        sxtw x11, w10
        asr w11, w11, #1
    
    This patch will remove the sxtw.
    
    ChangeCompressedSignedToInt32(CheckedInt32ToCompressedSigned(x)) -> x
    
    This pattern shows up in the Octane Richards benchmark (on arm64):
    
        adds w10, w10, w10
        b.vs #+0x1118
        asr w11, w10, #1
        stur w10, [x6, #19]
        cmp w11, #0x1a
    
    This patch will remove the asr, and produce:
    
        adds w11, w10, w10
        b.vs #+0x1108
        stur w11, [x6, #19]
        cmp w10, #0x1a
    
    Bug: v8:7703
    Change-Id: I5843e0a4f723b202857ee86130f835cd048d7e31
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1763529Reviewed-by: 's avatarTobias Tebbi <tebbi@chromium.org>
    Reviewed-by: 's avatarSantiago Aboy Solanes <solanes@chromium.org>
    Commit-Queue: Rodolph Perfetta <rodolph.perfetta@arm.com>
    Cr-Commit-Position: refs/heads/master@{#63389}
    e68a51f7
Name
Last commit
Last update
..
api Loading commit data...
asmjs Loading commit data...
ast Loading commit data...
base Loading commit data...
builtins Loading commit data...
codegen Loading commit data...
common Loading commit data...
compiler Loading commit data...
compiler-dispatcher Loading commit data...
d8 Loading commit data...
date Loading commit data...
debug Loading commit data...
deoptimizer Loading commit data...
diagnostics Loading commit data...
execution Loading commit data...
extensions Loading commit data...
flags Loading commit data...
handles Loading commit data...
heap Loading commit data...
ic Loading commit data...
init Loading commit data...
inspector Loading commit data...
interpreter Loading commit data...
json Loading commit data...
libplatform Loading commit data...
libsampler Loading commit data...
logging Loading commit data...
numbers Loading commit data...
objects Loading commit data...
parsing Loading commit data...
profiler Loading commit data...
protobuf Loading commit data...
regexp Loading commit data...
roots Loading commit data...
runtime Loading commit data...
sanitizer Loading commit data...
snapshot Loading commit data...
strings Loading commit data...
tasks Loading commit data...
third_party Loading commit data...
torque Loading commit data...
tracing Loading commit data...
trap-handler Loading commit data...
utils Loading commit data...
wasm Loading commit data...
zone Loading commit data...
DEPS Loading commit data...
OWNERS Loading commit data...