Go to file
Jakob Kummerow 6a1b41ca4d Fix DateCache::DaylightSavingsOffsetInMs fallback path.
The code after the binary-search loop is unlikely to be reached,
but not actually UNREACHABLE(). Restore the "return 0" that was
there until a cleanup [1] removed it.

[1] crrev.com/c/507287/2/src/date.cc

Bug: chromium:767039
Change-Id: I9e007d3b7d693d4866ccc3e3cf2b71e78e9bd07f
Reviewed-on: https://chromium-review.googlesource.com/675755
Reviewed-by: Ulan Degenbaev <ulan@chromium.org>
Commit-Queue: Jakob Kummerow <jkummerow@chromium.org>
Cr-Commit-Position: refs/heads/master@{#48117}
2017-09-21 18:52:02 +00:00
benchmarks
build_overrides
docs
gni
gypfiles Reland "[heap] Enable concurrent marking for x86 and x64." 2017-09-21 12:35:10 +00:00
include Allow overriding DCHECK handling and make it non-fatal. 2017-09-15 11:48:16 +00:00
infra
samples
src Fix DateCache::DaylightSavingsOffsetInMs fallback path. 2017-09-21 18:52:02 +00:00
test Reland "[cctest] Add fuzz tests for generating parallel moves." 2017-09-21 17:46:50 +00:00
testing
third_party
tools Make JavaScriptFrame pure virtual. 2017-09-15 11:40:06 +00:00
.clang-format
.editorconfig
.gitignore
.gn
.ycm_extra_conf.py
AUTHORS
BUILD.gn Reland "[heap] Enable concurrent marking for x86 and x64." 2017-09-21 12:35:10 +00:00
ChangeLog
CODE_OF_CONDUCT.md
codereview.settings
DEPS [test] test262 roll 2017-09-11 17:12:48 +00:00
LICENSE
LICENSE.fdlibm
LICENSE.strongtalk
LICENSE.v8
LICENSE.valgrind
Makefile
Makefile.android
OWNERS
PRESUBMIT.py [iwyu] Turn inclusion presubmit warning into and error. 2017-09-14 10:17:58 +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.