Go to file
Camillo Bruni a29516bcce [cleanup] Add templatized FunctionTester::CallChecked(...) helpers
- use asm_tester instead of data variable name
- directly expose Variable and Label for convenience

Change-Id: I211fe07e236f96067037ca00c1435c1491121e6b
Reviewed-on: https://chromium-review.googlesource.com/574914
Commit-Queue: Camillo Bruni <cbruni@chromium.org>
Reviewed-by: Peter Marshall <petermarshall@chromium.org>
Cr-Commit-Position: refs/heads/master@{#46738}
2017-07-18 14:25:21 +00:00
benchmarks
build_overrides Remove build_override for macOS min SDK and deployment target. 2017-07-14 18:24:44 +00:00
docs
gni [build] Dump build configuration for all v8 executables 2017-06-29 08:06:45 +00:00
gypfiles Disable strict-aliasing for gyp 2017-07-14 13:16:52 +00:00
include Remove padding instance types. 2017-07-13 14:48:56 +00:00
infra [build] Add MB configs for ubsan bots 2017-07-18 14:08:09 +00:00
samples
src [heap] Introduce separate pass for pre-freeing empty buckets in SlotSet 2017-07-18 14:18:49 +00:00
test [cleanup] Add templatized FunctionTester::CallChecked(...) helpers 2017-07-18 14:25:21 +00:00
testing
third_party Remove myself from non-toplevel owners files 2017-06-28 10:00:48 +00:00
tools [tools] Add a whole process memory size measurement. 2017-07-17 15:38:05 +00:00
.clang-format
.gitignore [wasm] Remove the wasm-asmjs fuzzer 2017-06-21 10:59:35 +00:00
.gn
.ycm_extra_conf.py
AUTHORS [build] Set MSVS .obj folders in gyp for v8_base 2017-06-30 12:40:19 +00:00
BUILD.gn [wasm] Extract WasmVal to own header and rename to WasmValue 2017-07-18 13:12:56 +00:00
ChangeLog
CODE_OF_CONDUCT.md
codereview.settings Make Gerrit the default code review for V8 2017-06-30 17:37:37 +00:00
DEPS Update V8 DEPS. 2017-07-18 03:46:49 +00:00
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
Makefile [build] Life support for top-level Makefile. 2017-06-07 13:10:40 +00:00
Makefile.android
OWNERS
PRESUBMIT.py [test] Automatically add a noi18n bot for changes affecting Intl 2017-06-06 13:01:14 +00:00
README.md
snapshot_toolchain.gni
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://github.com/v8/v8/wiki

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 on the V8 wiki.