Skip to content

Commit e85aa19

Browse files
committed
deps: patch V8 to 6.8.275.32
PR-URL: #22682 Refs: v8/v8@6.8.275.30...6.8.275.32 Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 44f1438 commit e85aa19

File tree

6 files changed

+14
-13
lines changed

6 files changed

+14
-13
lines changed

deps/v8/include/v8-version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define V8_MAJOR_VERSION 6
1212
#define V8_MINOR_VERSION 8
1313
#define V8_BUILD_NUMBER 275
14-
#define V8_PATCH_LEVEL 30
14+
#define V8_PATCH_LEVEL 32
1515

1616
// Use 1 for candidates and 0 otherwise.
1717
// (Boolean macro values are not supported by all preprocessors.)

deps/v8/src/ppc/macro-assembler-ppc.cc

+8-4
Original file line numberDiff line numberDiff line change
@@ -2944,10 +2944,14 @@ void TurboAssembler::SwapP(Register src, MemOperand dst, Register scratch) {
29442944

29452945
void TurboAssembler::SwapP(MemOperand src, MemOperand dst, Register scratch_0,
29462946
Register scratch_1) {
2947-
if (src.ra() != r0) DCHECK(!AreAliased(src.ra(), scratch_0, scratch_1));
2948-
if (src.rb() != r0) DCHECK(!AreAliased(src.rb(), scratch_0, scratch_1));
2949-
if (dst.ra() != r0) DCHECK(!AreAliased(dst.ra(), scratch_0, scratch_1));
2950-
if (dst.rb() != r0) DCHECK(!AreAliased(dst.rb(), scratch_0, scratch_1));
2947+
if (src.ra() != r0 && src.ra().is_valid())
2948+
DCHECK(!AreAliased(src.ra(), scratch_0, scratch_1));
2949+
if (src.rb() != r0 && src.rb().is_valid())
2950+
DCHECK(!AreAliased(src.rb(), scratch_0, scratch_1));
2951+
if (dst.ra() != r0 && dst.ra().is_valid())
2952+
DCHECK(!AreAliased(dst.ra(), scratch_0, scratch_1));
2953+
if (dst.rb() != r0 && dst.rb().is_valid())
2954+
DCHECK(!AreAliased(dst.rb(), scratch_0, scratch_1));
29512955
DCHECK(!AreAliased(scratch_0, scratch_1));
29522956
if (is_int16(src.offset()) || is_int16(dst.offset())) {
29532957
if (!is_int16(src.offset())) {

deps/v8/tools/release/create_release.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,7 @@ def RunStep(self):
221221
else:
222222
self.GitUpload(author=self._options.author,
223223
force=True,
224-
bypass_hooks=True,
225-
private=True)
224+
bypass_hooks=True)
226225
cmd = "cl land --bypass-hooks -f"
227226
if self._options.dry_run:
228227
print "Dry run. Command:\ngit %s" % cmd

deps/v8/tools/release/filter_build_files.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
LIBRARY_FILES = {
3636
'android': ['*.a', '*.so'],
3737
'linux': ['*.a', '*.so'],
38-
'mac': ['*.a', '*.so'],
38+
'mac': ['*.a', '*.so', '*.dylib'],
3939
'win': ['*.lib', '*.dll'],
4040
}
4141

deps/v8/tools/release/git_recipes.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ def GitApplyPatch(self, patch_file, reverse=False, **kwargs):
206206
self.Git(MakeArgs(args), **kwargs)
207207

208208
def GitUpload(self, reviewer="", author="", force=False, cq=False,
209-
cq_dry_run=False, bypass_hooks=False, cc="", private=False,
210-
tbr_reviewer="", **kwargs):
209+
cq_dry_run=False, bypass_hooks=False, cc="", tbr_reviewer="",
210+
**kwargs):
211211
args = ["cl upload --send-mail"]
212212
if author:
213213
args += ["--email", Quoted(author)]
@@ -226,8 +226,6 @@ def GitUpload(self, reviewer="", author="", force=False, cq=False,
226226
if cc:
227227
args += ["--cc", Quoted(cc)]
228228
args += ["--gerrit"]
229-
if private:
230-
args += ["--private"]
231229
# TODO(machenbach): Check output in forced mode. Verify that all required
232230
# base files were uploaded, if not retry.
233231
self.Git(MakeArgs(args), pipe=False, **kwargs)

deps/v8/tools/release/test_scripts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@ def CheckVersionCommit():
934934
Cmd("git commit -aF \"%s\"" % TEST_CONFIG["COMMITMSG_FILE"], "",
935935
cb=CheckVersionCommit),
936936
Cmd("git cl upload --send-mail --email \"[email protected]\" "
937-
"-f --bypass-hooks --gerrit --private", ""),
937+
"-f --bypass-hooks --gerrit", ""),
938938
Cmd("git cl land --bypass-hooks -f", ""),
939939
Cmd("git fetch", ""),
940940
Cmd("git log -1 --format=%H --grep="

0 commit comments

Comments
 (0)