Skip to content

Commit 718c304

Browse files
mhdawsonrvagg
authored andcommitted
v8: pull fix for builtin code size on PPC
Pull in the change that has been committed to v8 master in https://codereview.chromium.org/1415463002/. We are currently cherry-picking into 4.6 and 4.7 but until next next v8 update into Node Master I'd like to float it as it will make PPC LE go green in the CI Fixes: #3390 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> PR-URL: #3474
1 parent 32b51c9 commit 718c304

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

deps/v8/src/builtins.cc

+3
Original file line numberDiff line numberDiff line change
@@ -1430,6 +1430,9 @@ void Builtins::SetUp(Isolate* isolate, bool create_heap_objects) {
14301430
#ifdef DEBUG
14311431
// We can generate a lot of debug code on Arm64.
14321432
const size_t buffer_size = 32*KB;
1433+
#elif V8_TARGET_ARCH_PPC64
1434+
// 8 KB is insufficient on PPC64 when FLAG_debug_code is on.
1435+
const size_t buffer_size = 10 * KB;
14331436
#else
14341437
const size_t buffer_size = 8*KB;
14351438
#endif

0 commit comments

Comments
 (0)