Go to file
Manos Koukoutos 520dc0d3de [wasm-gc][turbofan] Simple escape analysis
We introduce simple escape analysis for wasm-gc objects, where struct
allocations that are only assigned to are eliminated. Handling phi uses
of allocated objects is left for future work.

Bug: v8:11510
Change-Id: Ibd0b220466546e150b26b02890572a5174c6872d
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3229744
Reviewed-by: Nico Hartmann <nicohartmann@chromium.org>
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Commit-Queue: Manos Koukoutos <manoskouk@chromium.org>
Cr-Commit-Position: refs/heads/main@{#77515}
2021-10-25 09:42:14 +00:00
.github
bazel
build_overrides
custom_deps
docs
gni
include cppgc: Adjust assert ensuring Oilpan generally satisfies alignof(std::max_align_t) 2021-10-18 13:21:04 +00:00
infra [test] Bump shards on slow bots 2021-10-20 14:25:51 +00:00
samples
src [wasm-gc][turbofan] Simple escape analysis 2021-10-25 09:42:14 +00:00
test [regexp] Only emit valid ranges in MakeRangeArray 2021-10-25 09:32:49 +00:00
testing
third_party Manually update google_benchmark 2021-10-21 16:36:41 +00:00
tools Add owners file to gcmole folder 2021-10-23 07:03:02 +00:00
.bazelrc
.clang-format
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore
.gn
.mailmap
.vpython
.ycm_extra_conf.py
AUTHORS
BUILD.bazel [wasm-gc][turbofan] Simple escape analysis 2021-10-25 09:42:14 +00:00
BUILD.gn [wasm-gc][turbofan] Simple escape analysis 2021-10-25 09:42:14 +00:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS
DEPS Update V8 DEPS. 2021-10-25 03:44:59 +00:00
DIR_METADATA
ENG_REVIEW_OWNERS
INFRA_OWNERS
INTL_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LOONG_OWNERS
MIPS_OWNERS
OWNERS
PPC_OWNERS
PRESUBMIT.py
README.md
RISCV_OWNERS
S390_OWNERS
WATCHLISTS
WORKSPACE

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.