• Stephan Herhut's avatar
    [wasm] Avoid zero extension after truncate · f25656ae
    Stephan Herhut authored
    In wasm code, we sometimes see the pattern
    
    <some 64 bit expression>
    i32.wrap/i64
    i32.load
    
    where we generate an instruction to extend the 32 bit offset into a zero
    extended 64 bit value for the actual load. However, the preceeding
    truncate already yields a zero extended 32 bit value, so the extra
    instruction is not needed. Even more, it might get in the way of
    munching more computation into the final load.
    
    This change adds information about the zero extending behavior to
    the existing optimization that avoids the zero extension.
    
    Bug: chromium:853685
    Change-Id: Iab9179379923ecb88651df6091b3d9408341cf4c
    Reviewed-on: https://chromium-review.googlesource.com/c/1421839Reviewed-by: 's avatarMichael Starzinger <mstarzinger@chromium.org>
    Reviewed-by: 's avatarJaroslav Sevcik <jarin@chromium.org>
    Commit-Queue: Stephan Herhut <herhut@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#58998}
    f25656ae
Name
Last commit
Last update
..
arm Loading commit data...
arm64 Loading commit data...
ia32 Loading commit data...
mips Loading commit data...
mips64 Loading commit data...
ppc Loading commit data...
s390 Loading commit data...
x64 Loading commit data...
OWNERS Loading commit data...
code-generator-impl.h Loading commit data...
code-generator.cc Loading commit data...
code-generator.h Loading commit data...
frame-elider.cc Loading commit data...
frame-elider.h Loading commit data...
gap-resolver.cc Loading commit data...
gap-resolver.h Loading commit data...
instruction-codes.h Loading commit data...
instruction-scheduler.cc Loading commit data...
instruction-scheduler.h Loading commit data...
instruction-selector-impl.h Loading commit data...
instruction-selector.cc Loading commit data...
instruction-selector.h Loading commit data...
instruction.cc Loading commit data...
instruction.h Loading commit data...
jump-threading.cc Loading commit data...
jump-threading.h Loading commit data...
live-range-separator.cc Loading commit data...
live-range-separator.h Loading commit data...
move-optimizer.cc Loading commit data...
move-optimizer.h Loading commit data...
register-allocator-verifier.cc Loading commit data...
register-allocator-verifier.h Loading commit data...
register-allocator.cc Loading commit data...
register-allocator.h Loading commit data...
unwinding-info-writer.h Loading commit data...