Skip to content

Commit

Permalink
deps: patch V8 to 6.8.275.32
Browse files Browse the repository at this point in the history
PR-URL: #22682
Refs: v8/v8@6.8.275.30...6.8.275.32
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
targos committed Sep 7, 2018
1 parent 44f1438 commit e85aa19
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion deps/v8/include/v8-version.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define V8_MAJOR_VERSION 6
#define V8_MINOR_VERSION 8
#define V8_BUILD_NUMBER 275
#define V8_PATCH_LEVEL 30
#define V8_PATCH_LEVEL 32

// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
Expand Down
12 changes: 8 additions & 4 deletions deps/v8/src/ppc/macro-assembler-ppc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2944,10 +2944,14 @@ void TurboAssembler::SwapP(Register src, MemOperand dst, Register scratch) {

void TurboAssembler::SwapP(MemOperand src, MemOperand dst, Register scratch_0,
Register scratch_1) {
if (src.ra() != r0) DCHECK(!AreAliased(src.ra(), scratch_0, scratch_1));
if (src.rb() != r0) DCHECK(!AreAliased(src.rb(), scratch_0, scratch_1));
if (dst.ra() != r0) DCHECK(!AreAliased(dst.ra(), scratch_0, scratch_1));
if (dst.rb() != r0) DCHECK(!AreAliased(dst.rb(), scratch_0, scratch_1));
if (src.ra() != r0 && src.ra().is_valid())
DCHECK(!AreAliased(src.ra(), scratch_0, scratch_1));
if (src.rb() != r0 && src.rb().is_valid())
DCHECK(!AreAliased(src.rb(), scratch_0, scratch_1));
if (dst.ra() != r0 && dst.ra().is_valid())
DCHECK(!AreAliased(dst.ra(), scratch_0, scratch_1));
if (dst.rb() != r0 && dst.rb().is_valid())
DCHECK(!AreAliased(dst.rb(), scratch_0, scratch_1));
DCHECK(!AreAliased(scratch_0, scratch_1));
if (is_int16(src.offset()) || is_int16(dst.offset())) {
if (!is_int16(src.offset())) {
Expand Down
3 changes: 1 addition & 2 deletions deps/v8/tools/release/create_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,7 @@ def RunStep(self):
else:
self.GitUpload(author=self._options.author,
force=True,
bypass_hooks=True,
private=True)
bypass_hooks=True)
cmd = "cl land --bypass-hooks -f"
if self._options.dry_run:
print "Dry run. Command:\ngit %s" % cmd
Expand Down
2 changes: 1 addition & 1 deletion deps/v8/tools/release/filter_build_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
LIBRARY_FILES = {
'android': ['*.a', '*.so'],
'linux': ['*.a', '*.so'],
'mac': ['*.a', '*.so'],
'mac': ['*.a', '*.so', '*.dylib'],
'win': ['*.lib', '*.dll'],
}

Expand Down
6 changes: 2 additions & 4 deletions deps/v8/tools/release/git_recipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ def GitApplyPatch(self, patch_file, reverse=False, **kwargs):
self.Git(MakeArgs(args), **kwargs)

def GitUpload(self, reviewer="", author="", force=False, cq=False,
cq_dry_run=False, bypass_hooks=False, cc="", private=False,
tbr_reviewer="", **kwargs):
cq_dry_run=False, bypass_hooks=False, cc="", tbr_reviewer="",
**kwargs):
args = ["cl upload --send-mail"]
if author:
args += ["--email", Quoted(author)]
Expand All @@ -226,8 +226,6 @@ def GitUpload(self, reviewer="", author="", force=False, cq=False,
if cc:
args += ["--cc", Quoted(cc)]
args += ["--gerrit"]
if private:
args += ["--private"]
# TODO(machenbach): Check output in forced mode. Verify that all required
# base files were uploaded, if not retry.
self.Git(MakeArgs(args), pipe=False, **kwargs)
Expand Down
2 changes: 1 addition & 1 deletion deps/v8/tools/release/test_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ def CheckVersionCommit():
Cmd("git commit -aF \"%s\"" % TEST_CONFIG["COMMITMSG_FILE"], "",
cb=CheckVersionCommit),
Cmd("git cl upload --send-mail --email \"author@chromium.org\" "
"-f --bypass-hooks --gerrit --private", ""),
"-f --bypass-hooks --gerrit", ""),
Cmd("git cl land --bypass-hooks -f", ""),
Cmd("git fetch", ""),
Cmd("git log -1 --format=%H --grep="
Expand Down

0 comments on commit e85aa19

Please sign in to comment.