• Pierre Langlois's avatar
    [turbofan] Lower NumberConstant nodes to IntPtrConstant. · 7ac10da7
    Pierre Langlois authored
    If a NumberConstant can be represented as a Smi, then lower it to a
    IntPtrConstant node during simplified lowering. Thanks to this, all backends can
    match Smi values that can also be encoded as immediates in the instruction
    selector. Additionally, we can apply the same lowering to the CodeAssembler for
    the snapshot.
    
    As a result, we can remove `mov` instructions generated because Int32Matcher and
    Int64Matcher didn't not recognize Smis:
    
    For 32-bit target, it's common for Smis also be immediates: "if (a < 100) {}"
    ~~~
    mov r1, #200 -> cmp r0, #200
    cmp r0, r1   -> blt <>
    blt <>       ->
    ~~~
    
    On Arm64 particularly, we lose opportunites to use `cbz`: "if (a == 0) {}"
    ~~~
    movz x0, #0x0 -> cbz x1 <>
    cmp x1, x0    ->
    b.eq <>       ->
    ~~~
    
    Overall, we do not see an impact on benchmarks such as webtooling. However, we
    do see noteworthy code size reduction, from 0.5% to 1.5%.
    
    Bug: 
    Change-Id: I7fbb718ad51b9036c3514fa31c1326bdd6f2b0e6
    Reviewed-on: https://chromium-review.googlesource.com/848814Reviewed-by: 's avatarJaroslav Sevcik <jarin@chromium.org>
    Reviewed-by: 's avatarBenedikt Meurer <bmeurer@chromium.org>
    Commit-Queue: Pierre Langlois <pierre.langlois@arm.com>
    Cr-Commit-Position: refs/heads/master@{#50569}
    7ac10da7
Name
Last commit
Last update
..
benchmarks Loading commit data...
cctest Loading commit data...
common Loading commit data...
debugger Loading commit data...
fuzzer Loading commit data...
inspector Loading commit data...
intl Loading commit data...
js-perf-test Loading commit data...
memory Loading commit data...
message Loading commit data...
mjsunit Loading commit data...
mkgrokdump Loading commit data...
mozilla Loading commit data...
preparser Loading commit data...
test262 Loading commit data...
unittests Loading commit data...
wasm-spec-tests Loading commit data...
webkit Loading commit data...
BUILD.gn Loading commit data...
bot_default.gyp Loading commit data...
bot_default.isolate Loading commit data...
d8_default.gyp Loading commit data...
d8_default.isolate Loading commit data...
default.gyp Loading commit data...
default.isolate Loading commit data...
optimize_for_size.gyp Loading commit data...
optimize_for_size.isolate Loading commit data...
perf.gyp Loading commit data...
perf.isolate Loading commit data...