v8/test/unittests/compiler/mips
dusan.simicic 961a45da69 Reland of "MIPS: Optimize load/store with large offset"
Currently, we are using the following sequence for load/store
with large offset (offset > 16b):
    lui at, 0x1234
    ori at, at, 0x5678
    add at, s0, at
    lw a0, 0(at)

This sequence can be optimized in the following way:
    lui at, 0x1234
    add at, s0, at
    lw a0, 0x5678(at)

BUG=

Review-Url: https://codereview.chromium.org/2503493002
Cr-Commit-Position: refs/heads/master@{#40988}
2016-11-15 12:00:45 +00:00
..
instruction-selector-mips-unittest.cc Reland of "MIPS: Optimize load/store with large offset" 2016-11-15 12:00:45 +00:00
OWNERS Update MIPS owners. 2015-12-17 09:07:00 +00:00