Go to file
Milad Farazmand e7351c5e38 PPC: [wasm-simd] Implement simd conversion operations
Change-Id: I0eb2046d4bbb4305873866e99053d520d5e402f6
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2295882
Reviewed-by: Junliang Yan <jyan@ca.ibm.com>
Commit-Queue: Milad Farazmand <miladfar@ca.ibm.com>
Cr-Commit-Position: refs/heads/master@{#68829}
2020-07-13 23:04:09 +00:00
build_overrides
custom_deps
docs
gni Add google_benchmark depdendency 2020-07-02 20:11:29 +00:00
include heap: Add atomic unified-heap support 2020-07-10 20:50:06 +00:00
infra Reland "infra: Set gcc builders not to use Goma" 2020-06-30 10:41:37 +00:00
samples cppgc: Introduce AllocationHandle 2020-06-10 23:11:20 +00:00
src PPC: [wasm-simd] Implement simd conversion operations 2020-07-13 23:04:09 +00:00
test [heap] Rename main thread allocation functions 2020-07-13 19:20:39 +00:00
testing
third_party Add google_benchmark depdendency 2020-07-02 20:11:29 +00:00
tools [tools][system-analyzer] Add instructions to index.html 2020-07-13 10:27:17 +00:00
.clang-format
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore
.gn
.vpython
.ycm_extra_conf.py
AUTHORS Fix crash on inspector setScriptSource calls when source is unchanged 2020-07-07 13:25:51 +00:00
BUILD.gn [zone] Cleanup ZoneList and ScopedList classes 2020-07-13 15:36:28 +00:00
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS [owners] Add thibaudm and ecmziegler to COMMON_OWNERS 2020-05-20 18:41:54 +00:00
DEPS Update V8 DEPS. 2020-07-10 03:48:05 +00:00
ENG_REVIEW_OWNERS
INFRA_OWNERS
INTL_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
MIPS_OWNERS
OWNERS
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.