Go to file
Milad Farazmand 60a581eb48 PPC/s390: [lite] Allocate FeedbackCell arrays for create closures in lite mode
Port 4237fc378c

Port 71c66873d6

Original Commit Message:

    We want to allocate feedback vectors lazily in lite mode. To do that,
    we should create closures with the correct feedback cell. This cl
    allocates feedback cell arrays to hold these feedback cells in lite mode.
    This cl also modifies the compile lazy to builtin to expect these arrays
    in the feedback cell.

    Drive-by fix: InterpreterEntryTrampoline no longer has argument count in
    a register. So updated comments and removed unnecessary push/pop of this
    register.

R=mythria@chromium.org, joransiu@ca.ibm.com, jyan@ca.ibm.com, michael_dawson@ca.ibm.com
BUG=
LOG=N

Change-Id: I2cca35cab2c0a1bc75619ff1565e453635f6b0e4
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1646891
Reviewed-by: Junliang Yan <jyan@ca.ibm.com>
Commit-Queue: Junliang Yan <jyan@ca.ibm.com>
Commit-Queue: Milad Farazmand <miladfar@ca.ibm.com>
Cr-Commit-Position: refs/heads/master@{#62032}
2019-06-06 15:57:59 +00:00
benchmarks Add missing owners files 2019-05-31 07:21:01 +00:00
build_overrides
custom_deps
docs
gni
include [api] Add a way to specify the max heap size in ResourceConstraints 2019-06-06 10:22:56 +00:00
infra [build] Add header-includes check to gcc builders 2019-06-03 13:49:04 +00:00
samples
src PPC/s390: [lite] Allocate FeedbackCell arrays for create closures in lite mode 2019-06-06 15:57:59 +00:00
test [heap] Introduce a min heap size and skip GCs below that threshold 2019-06-06 15:49:50 +00:00
testing Add missing owners files 2019-05-31 07:21:01 +00:00
third_party [torque] Add lint errors for unused variable and label bindings 2019-06-06 15:27:12 +00:00
tools [torque] Remove VSCode Torque extension from tools/ 2019-06-03 21:10:39 +00:00
.clang-format
.clang-tidy
.editorconfig
.git-blame-ignore-revs
.gitattributes
.gitignore
.gn
.vpython
.ycm_extra_conf.py
AUTHORS Improve toString(radix) for doubles near zero 2019-05-29 20:45:02 +00:00
BUILD.gn Extend IsExtensible proxy trap fast path for Reflect.isExtensible 2019-06-06 15:56:53 +00:00
ChangeLog
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS
DEPS Update V8 DEPS. 2019-06-06 03:39:39 +00:00
ENG_REVIEW_OWNERS
INFRA_OWNERS
INTL_OWNERS Add missing owners files 2019-05-31 07:21:01 +00:00
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
MIPS_OWNERS
OWNERS Remove COMMON_OWNERS from top-level OWNERS 2019-06-03 09:43:05 +00:00
PPC_OWNERS
PRESUBMIT.py
README.md
S390_OWNERS
WATCHLISTS

V8 JavaScript Engine

V8 is Google's open source JavaScript engine.

V8 implements ECMAScript as specified in ECMA-262.

V8 is written in C++ and is used in Google Chrome, the open source browser from Google.

V8 can run standalone, or can be embedded into any C++ application.

V8 Project page: https://v8.dev/docs

Getting the Code

Checkout depot tools, and run

    fetch v8

This will checkout V8 into the directory v8 and fetch all of its dependencies. To stay up to date, run

    git pull origin
    gclient sync

For fetching all branches, add the following into your remote configuration in .git/config:

    fetch = +refs/branch-heads/*:refs/remotes/branch-heads/*
    fetch = +refs/tags/*:refs/tags/*

Contributing

Please follow the instructions mentioned at v8.dev/docs/contribute.