• rmcilroy's avatar
    [Interpreter] Replace BytecodeRegisterAllocator with a simple bump pointer. · 27fe988b
    rmcilroy authored
    There are only a few occasions where we allocate a register in an outer
    expression allocation scope, which makes the costly free-list approach
    of the BytecodeRegisterAllocator unecessary. This CL replaces all
    occurrences with moves to the accumulator and stores to a register
    allocated in the correct scope. By doing this, we can simplify the
    BytecodeRegisterAllocator to be a simple bump-pointer allocator
    with registers released in the same order as allocated.
    
    The following changes are also made:
     - Make BytecodeRegisterOptimizer able to use registers which have been
       unallocated, but not yet reused
     - Remove RegisterExpressionResultScope and rename
       AccumulatorExpressionResultScope to ValueExpressionResultScope
     - Introduce RegisterList to represent consecutive register
       allocations, and use this for operands to call bytecodes.
    
    By avoiding the free-list handling, this gives another couple of
    percent on CodeLoad.
    
    BUG=v8:4280
    
    Review-Url: https://codereview.chromium.org/2369873002
    Cr-Commit-Position: refs/heads/master@{#39905}
    27fe988b
Name
Last commit
Last update
..
base Loading commit data...
compiler Loading commit data...
compiler-dispatcher Loading commit data...
heap Loading commit data...
interpreter Loading commit data...
libplatform Loading commit data...
wasm Loading commit data...
BUILD.gn Loading commit data...
DEPS Loading commit data...
cancelable-tasks-unittest.cc Loading commit data...
char-predicates-unittest.cc Loading commit data...
counters-unittest.cc Loading commit data...
eh-frame-iterator-unittest.cc Loading commit data...
eh-frame-writer-unittest.cc Loading commit data...
locked-queue-unittest.cc Loading commit data...
register-configuration-unittest.cc Loading commit data...
run-all-unittests.cc Loading commit data...
source-position-table-unittest.cc Loading commit data...
test-utils.cc Loading commit data...
test-utils.h Loading commit data...
unittests.gyp Loading commit data...
unittests.isolate Loading commit data...
unittests.status Loading commit data...
value-serializer-unittest.cc Loading commit data...