6f9d60cc6f
of running a script is really spent in compilation. That is, sum up the total time spent compiling (parsing + compile proper) within a run call as seen through the API. @jochen: So many questions: - Is it ok to re-use V8.CompileLazy? This measures something a little different. - clang-format does funny things to the huge macro definitions. I accepted clang-format changes for all code, but reverted for the #define orgies in counters.h. ok? - Am I measuring the right thing. That is, are Aggregat[ing|ed]TimerScope in the right place? I'll fiddle a bit more with this to see if it does the right thing. Would be happy if you could still review now-ish. BUG= Review URL: https://codereview.chromium.org/790413004 Cr-Commit-Position: refs/heads/master@{#26226} |
||
---|---|---|
benchmarks | ||
build | ||
include | ||
samples | ||
src | ||
test | ||
testing | ||
tools | ||
.clang-format | ||
.gitignore | ||
AUTHORS | ||
BUILD.gn | ||
ChangeLog | ||
codereview.settings | ||
DEPS | ||
LICENSE | ||
LICENSE.strongtalk | ||
LICENSE.v8 | ||
LICENSE.valgrind | ||
Makefile | ||
Makefile.android | ||
Makefile.nacl | ||
OWNERS | ||
PRESUBMIT.py | ||
README.md | ||
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://code.google.com/p/v8/
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/*