Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 718c304

Browse filesBrowse 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 <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <ben@strongloop.com> PR-URL: #3474
1 parent 32b51c9 commit 718c304
Copy full SHA for 718c304

File tree

Expand file treeCollapse file tree

1 file changed

+3
-0
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+3
-0
lines changed
Open diff view settings
Collapse file

‎deps/v8/src/builtins.cc‎

Copy file name to clipboardExpand all lines: deps/v8/src/builtins.cc
+3Lines changed: 3 additions & 0 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.