Skip to content

Commit b9b1048

Browse files
committed
Version 4.7.80.15 (cherry-pick)
Merged d3a1fa0 Stack buffer for builtin code generation too small in some cases. R=hablich@chromium.org BUG= Review URL: https://codereview.chromium.org/1419613006 . Cr-Commit-Position: refs/branch-heads/4.7@{#24} Cr-Branched-From: f3c8926-refs/heads/master@{#31014}
1 parent c26b05d commit b9b1048

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

include/v8-version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define V8_MAJOR_VERSION 4
1212
#define V8_MINOR_VERSION 7
1313
#define V8_BUILD_NUMBER 80
14-
#define V8_PATCH_LEVEL 14
14+
#define V8_PATCH_LEVEL 15
1515

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

src/builtins.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1984,6 +1984,9 @@ void Builtins::SetUp(Isolate* isolate, bool create_heap_objects) {
19841984
#ifdef DEBUG
19851985
// We can generate a lot of debug code on Arm64.
19861986
const size_t buffer_size = 32*KB;
1987+
#elif V8_TARGET_ARCH_PPC64
1988+
// 8 KB is insufficient on PPC64 when FLAG_debug_code is on.
1989+
const size_t buffer_size = 10 * KB;
19871990
#else
19881991
const size_t buffer_size = 8*KB;
19891992
#endif

0 commit comments

Comments
 (0)