Skip to content

Commit

Permalink
Upgrade V8 to 7.9.317.12 (denoland#3208)
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Oct 28, 2019
1 parent 65d9286 commit b273989
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gclient_config.py
@@ -1,7 +1,7 @@
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
solutions = [
{
'url': 'https://chromium.googlesource.com/v8/v8.git@7.9.304',
'url': 'https://chromium.googlesource.com/v8/v8.git@7.9.317.12',
'name': 'v8',
'deps_file': 'DEPS',
'custom_deps': {
Expand Down
2 changes: 1 addition & 1 deletion third_party
Submodule third_party updated 78 files
+1 −1 depot_tools/gsutil.vpython
+28 −55 v8/BUILD.gn
+65 −0 v8/ChangeLog
+4 −4 v8/DEPS
+2 −6 v8/gni/v8.gni
+1 −0 v8/include/OWNERS
+2 −2 v8/include/v8-version.h
+5 −4 v8/include/v8.h
+4 −8 v8/infra/mb/mb_config.pyl
+6 −6 v8/infra/testing/builders.pyl
+9 −0 v8/src/api/api.cc
+6 −0 v8/src/asmjs/asm-js.cc
+0 −49 v8/src/builtins/builtins-regexp-gen.cc
+0 −4 v8/src/builtins/builtins-regexp-gen.h
+1 −1 v8/src/builtins/regexp-match-all.tq
+1 −1 v8/src/builtins/regexp-search.tq
+1 −1 v8/src/builtins/regexp-test.tq
+28 −2 v8/src/builtins/regexp.tq
+2 −2 v8/src/codegen/arm/assembler-arm.h
+2 −2 v8/src/codegen/arm64/assembler-arm64.h
+18 −15 v8/src/codegen/code-stub-assembler.cc
+1 −1 v8/src/codegen/ia32/assembler-ia32.h
+7 −0 v8/src/codegen/x64/assembler-x64.cc
+3 −1 v8/src/codegen/x64/assembler-x64.h
+91 −3 v8/src/codegen/x64/macro-assembler-x64.cc
+22 −0 v8/src/codegen/x64/macro-assembler-x64.h
+1 −1 v8/src/common/globals.h
+59 −59 v8/src/compiler/backend/x64/code-generator-x64.cc
+6 −8 v8/src/compiler/wasm-compiler.cc
+0 −22 v8/src/compiler/wasm-compiler.h
+30 −8 v8/src/debug/debug-coverage.cc
+5 −5 v8/src/diagnostics/x64/disasm-x64.cc
+0 −2 v8/src/heap/heap-inl.h
+31 −1 v8/src/objects/js-date-time-format.cc
+27 −5 v8/src/objects/js-objects.cc
+1 −7 v8/src/parsing/expression-scope.h
+1 −1 v8/src/regexp/regexp-ast.h
+23 −2 v8/src/regexp/regexp-parser.cc
+2 −2 v8/src/strings/string-hasher-inl.h
+43 −3 v8/src/wasm/baseline/arm/liftoff-assembler-arm.h
+37 −3 v8/src/wasm/baseline/arm64/liftoff-assembler-arm64.h
+31 −0 v8/src/wasm/baseline/ia32/liftoff-assembler-ia32.h
+1 −0 v8/src/wasm/baseline/liftoff-assembler.h
+86 −49 v8/src/wasm/baseline/liftoff-compiler.cc
+55 −2 v8/src/wasm/baseline/mips/liftoff-assembler-mips.h
+60 −2 v8/src/wasm/baseline/mips64/liftoff-assembler-mips64.h
+82 −0 v8/src/wasm/baseline/ppc/liftoff-assembler-ppc.h
+81 −0 v8/src/wasm/baseline/s390/liftoff-assembler-s390.h
+29 −0 v8/src/wasm/baseline/x64/liftoff-assembler-x64.h
+6 −0 v8/src/wasm/decoder.h
+17 −14 v8/src/wasm/graph-builder-interface.cc
+0 −10 v8/src/wasm/wasm-module.h
+1 −1 v8/test/cctest/heap/test-embedder-tracing.cc
+0 −3 v8/test/cctest/test-debug.cc
+2 −0 v8/test/cctest/test-disasm-x64.cc
+15 −0 v8/test/intl/regress-9849.js
+17 −0 v8/test/mjsunit/asm/regress-1013920.js
+15 −0 v8/test/mjsunit/code-coverage-block.js
+9 −0 v8/test/mjsunit/harmony/regexp-named-captures.js
+1 −0 v8/test/mjsunit/mjsunit.status
+27 −0 v8/test/mjsunit/regress/regress-crbug-1012301-1.js
+5 −0 v8/test/mjsunit/regress/regress-crbug-1015567.js
+20 −0 v8/test/mjsunit/regress/wasm/regress-1014798.js
+1 −2 v8/test/mkgrokdump/mkgrokdump.cc
+0 −5 v8/test/unittests/logging/counters-unittest.cc
+1 −0 v8/tools/clang/blink_gc_plugin/OWNERS
+0 −9 v8/tools/clang/scripts/package.py
+1 −3 v8/tools/debug_helper/debug-helper-internal.cc
+1 −1 v8/tools/debug_helper/debug-helper.h
+0 −3 v8/tools/debug_helper/gen-heap-constants.py
+3 −1 v8/tools/testrunner/base_runner.py
+15 −1 v8/tools/testrunner/testproc/progress.py
+2 −3 v8/tools/unittests/run_tests_test.py
+1 −1 v8/tools/unittests/testdata/testroot1/test/sweet/sweet.status
+0 −1 v8/tools/unittests/testdata/testroot1/v8_build_config.json
+0 −1 v8/tools/unittests/testdata/testroot2/v8_build_config.json
+192 −192 v8/tools/v8heapconst.py
+1 −1 v8/tools/whitespace.txt

0 comments on commit b273989

Please sign in to comment.