Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
deps: V8: cherry-pick 32141e9 from upstream
Original commit message:
  Disable --turbo-inline-array-builtins by default.

  Current chrome stable has a high number of crashes due to bugs in
  this feature. These bugs are already fixed but the fixes are hard
  to merge back. Therefore we decided to disable the feature in stable.
  This CL is intended to be merged to stable and then reverted in tot.

  Bug: chromium:762020
  Change-Id: Ibd5a08e3b303a204fb84a408271a1c0f97cc5b7b
  Reviewed-on: https://chromium-review.googlesource.com/738176
  Reviewed-by: Jaroslav Sevcik <jarin@chromium.org>
  Commit-Queue: Georg Neis <neis@chromium.org>
  Cr-Commit-Position: refs/heads/master@{#48931}

Refs: v8/v8@32141e9
PR-URL: #16704
  • Loading branch information
ofrobots authored and gibfahn committed Nov 7, 2017
commit 6a7e5ceaa9b1e9f9cba8441c433aacbe86b99eba
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 1
#define V8_BUILD_NUMBER 534
#define V8_PATCH_LEVEL 46
#define V8_PATCH_LEVEL 47

// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
Expand Down
2 changes: 1 addition & 1 deletion deps/v8/src/flag-definitions.h
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ DEFINE_BOOL(function_context_specialization, false,
"enable function context specialization in TurboFan")
DEFINE_BOOL(turbo_inlining, true, "enable inlining in TurboFan")
DEFINE_BOOL(trace_turbo_inlining, false, "trace TurboFan inlining")
DEFINE_BOOL(turbo_inline_array_builtins, true,
DEFINE_BOOL(turbo_inline_array_builtins, false,
"inline array builtins in TurboFan code")
DEFINE_BOOL(turbo_load_elimination, true, "enable load elimination in TurboFan")
DEFINE_BOOL(trace_turbo_load_elimination, false,
Expand Down