• rmcilroy's avatar
    [Interpreter] Ensure ToBoolean bytecodes are correctly emitted at the start of basic blocks · 2e1bdea8
    rmcilroy authored
    Existing code was assuming that 'lexical' blocks were the same as basic
    blocks, therefore code which emitted jumps within a lexical block (e.g.,
    logical or) would in some occassions incorrectly omit a necessary
    ToBoolean.
    
    This change removes Enter/LeaveBlock from BytecodeArrayBuilder and
    instead tracks basic blocks via label bindings and jump operations. The
    change also ensures we don't emit dead code at the end of a basic block,
    and adds tests of the edge cases.
    
    BUG=v8:4280
    LOG=N
    
    Review URL: https://codereview.chromium.org/1406983010
    
    Cr-Commit-Position: refs/heads/master@{#31741}
    2e1bdea8
Name
Last commit
Last update
..
DEPS Loading commit data...
OWNERS Loading commit data...
bytecode-array-builder.cc Loading commit data...
bytecode-array-builder.h Loading commit data...
bytecode-array-iterator.cc Loading commit data...
bytecode-array-iterator.h Loading commit data...
bytecode-generator.cc Loading commit data...
bytecode-generator.h Loading commit data...
bytecode-traits.h Loading commit data...
bytecodes.cc Loading commit data...
bytecodes.h Loading commit data...
control-flow-builders.cc Loading commit data...
control-flow-builders.h Loading commit data...
interpreter.cc Loading commit data...
interpreter.h Loading commit data...