• Jakob Gruber's avatar
    [regexp] Consistent expectations for output registers · fe609139
    Jakob Gruber authored
    ... between the interpreter and generated code.
    
    Prior to this CL, pre- and post conditions on the output register
    array differed between the interpreter and generated code.
    
    Interpreter
    Pre: `output` fits captures and temporary registers.
    Post: None.
    
    Generated code
    Pre:  `output` fits capture registers.
    Post: `output` is modified if and only if the match succeeded.
    
    This CL changes the interpreter to match generated code pre- and
    post conditions by allocating space for temporary registers inside
    the interpreter.
    
    Drive-by: Add MaxRegisterCount, RegistersForCaptureCount helpers.
    
    Bug: chromium:1067270
    Change-Id: I2900ef2f31207d817ec7ead3e0e2215b23b398f0
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2135642
    Commit-Queue: Jakob Gruber <jgruber@chromium.org>
    Reviewed-by: 's avatarLeszek Swirski <leszeks@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#67268}
    fe609139
Name
Last commit
Last update
..
OWNERS Loading commit data...
runtime-array.cc Loading commit data...
runtime-atomics.cc Loading commit data...
runtime-bigint.cc Loading commit data...
runtime-classes.cc Loading commit data...
runtime-collections.cc Loading commit data...
runtime-compiler.cc Loading commit data...
runtime-date.cc Loading commit data...
runtime-debug.cc Loading commit data...
runtime-forin.cc Loading commit data...
runtime-function.cc Loading commit data...
runtime-futex.cc Loading commit data...
runtime-generator.cc Loading commit data...
runtime-internal.cc Loading commit data...
runtime-interpreter.cc Loading commit data...
runtime-intl.cc Loading commit data...
runtime-literals.cc Loading commit data...
runtime-module.cc Loading commit data...
runtime-numbers.cc Loading commit data...
runtime-object.cc Loading commit data...
runtime-operators.cc Loading commit data...
runtime-promise.cc Loading commit data...
runtime-proxy.cc Loading commit data...
runtime-regexp.cc Loading commit data...
runtime-scopes.cc Loading commit data...
runtime-strings.cc Loading commit data...
runtime-symbol.cc Loading commit data...
runtime-test.cc Loading commit data...
runtime-typedarray.cc Loading commit data...
runtime-utils.h Loading commit data...
runtime-wasm.cc Loading commit data...
runtime-weak-refs.cc Loading commit data...
runtime.cc Loading commit data...
runtime.h Loading commit data...