• Milad Farazmand's avatar
    PPC/s390: [compiler] Refactor stack check handling · f7f370d2
    Milad Farazmand authored
    Port 0aa204fe
    
    Original Commit Message:
    
        This CL unifies how stack checks are handled in the Turbofan pipeline
        across architectures, in preparation for properly handling stack
        overflows caused by deoptimization in follow-up work. It will also
        open up possibilities to simplify related logic.
    
        How this used to work: JSStackCheck was lowered to a UintLessThan
        with the stack pointer (sp) and stack limit as inputs. On x64 and ia32,
        this node pattern was later recognized during instruction selection
        and rewritten to dedicated operators. On other platforms, including
        arm and arm64, special logic exists to avoid useless
        register-to-register moves when accessing the sp.
    
        This CL introduces a new StackPointerGreaterThan operator, which takes
        the stack limit as its sole input. This is what JSStackCheck now lowers
        to. This is threaded through to code generation, where we emit the
        appropriate code (in the future, we will apply an additional offset to
        the sp here).
    
        In follow-up CLs, we can remove or replace remaining uses of
        LoadStackPointer in CSA, Wasm, and the interpreter; and then remove
        the LoadStackPointer operator, related node matchers, related register
        constraints, and the pseudo-smi stack limit roots.
    
    R=jgruber@chromium.org, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com
    BUG=
    LOG=N
    
    Change-Id: I175c110d30190bb543001b6fa77cd65cf22e5874
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1748002Reviewed-by: 's avatarJunliang Yan <jyan@ca.ibm.com>
    Commit-Queue: Milad Farazmand <miladfar@ca.ibm.com>
    Cr-Commit-Position: refs/heads/master@{#63167}
    f7f370d2
Name
Last commit
Last update
benchmarks Loading commit data...
build_overrides Loading commit data...
custom_deps Loading commit data...
docs Loading commit data...
gni Loading commit data...
include Loading commit data...
infra Loading commit data...
samples Loading commit data...
src Loading commit data...
test Loading commit data...
testing Loading commit data...
third_party Loading commit data...
tools Loading commit data...
.clang-format Loading commit data...
.clang-tidy Loading commit data...
.editorconfig Loading commit data...
.flake8 Loading commit data...
.git-blame-ignore-revs Loading commit data...
.gitattributes Loading commit data...
.gitignore Loading commit data...
.gn Loading commit data...
.vpython Loading commit data...
.ycm_extra_conf.py Loading commit data...
AUTHORS Loading commit data...
BUILD.gn Loading commit data...
CODE_OF_CONDUCT.md Loading commit data...
COMMON_OWNERS Loading commit data...
ChangeLog Loading commit data...
DEPS Loading commit data...
ENG_REVIEW_OWNERS Loading commit data...
INFRA_OWNERS Loading commit data...
INTL_OWNERS Loading commit data...
LICENSE Loading commit data...
LICENSE.fdlibm Loading commit data...
LICENSE.strongtalk Loading commit data...
LICENSE.v8 Loading commit data...
LICENSE.valgrind Loading commit data...
MIPS_OWNERS Loading commit data...
OWNERS Loading commit data...
PPC_OWNERS Loading commit data...
PRESUBMIT.py Loading commit data...
README.md Loading commit data...
S390_OWNERS Loading commit data...
WATCHLISTS Loading commit data...
codereview.settings Loading commit data...