Go to file
Ng Zhi An 031193b4c5 [wasm-simd] Convert some codegen to use macros
The macros will use AVX variants when available.

Bug: v8:9561
Change-Id: I06872a08184983adc8018ffdf03916feac02016f
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1857422
Reviewed-by: Deepti Gandluri <gdeepti@chromium.org>
Commit-Queue: Zhi An Ng <zhin@chromium.org>
Cr-Commit-Position: refs/heads/master@{#64280}
2019-10-14 20:49:35 +00:00
benchmarks
build_overrides
custom_deps
docs
gni Enable v8_use_snapshot by default for 64-bit Windows cross builds 2019-10-07 14:33:32 +00:00
include [api] Deprecate old tasks API 2019-10-14 12:17:02 +00:00
infra Revert "[ptr-compr][x64] Temporarily enable pointer compression on x64" 2019-10-11 19:57:01 +00:00
samples
src [wasm-simd] Convert some codegen to use macros 2019-10-14 20:49:35 +00:00
test [wasm-simd] Implement v8x16.swizzle for arm64 2019-10-14 17:30:13 +00:00
testing
third_party [DevTools] Roll inspector protocol (v8) 2019-10-11 21:22:31 +00:00
tools Whitespace change to test bots 2019-10-12 16:27:42 +00:00
.clang-format
.clang-tidy
.editorconfig
.flake8
.git-blame-ignore-revs
.gitattributes
.gitignore Remove MIPS(64) builders from V8 infra 2019-09-16 11:20:11 +00:00
.gn
.vpython
.ycm_extra_conf.py
AUTHORS [log] report code relocation through CodeEventHandler 2019-09-24 10:50:05 +00:00
BUILD.gn [torque] Generate instance types 2019-10-11 22:37:22 +00:00
ChangeLog
CODE_OF_CONDUCT.md
codereview.settings
COMMON_OWNERS Rename clemensh to clemensb in OWNERS 2019-09-26 08:44:44 +00:00
DEPS Update V8 DEPS. 2019-10-14 03:19:15 +00:00
ENG_REVIEW_OWNERS
INFRA_OWNERS
INTL_OWNERS
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
MIPS_OWNERS
OWNERS Add syg@chromium.org as DEPS owner for test262 rolls 2019-09-17 19:29:11 +00:00
PPC_OWNERS
PRESUBMIT.py Re-check all files on a DEPS change 2019-09-30 09:23:36 +00:00
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.