Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1211)

Unified Diff: src/spaces.cc

Issue 39363004: MIPS: Increase code space first page size due to r17334. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/spaces.cc
diff --git a/src/spaces.cc b/src/spaces.cc
index 9ed8d9e7553b8eb29b53ba5ab88ee6c71e0b6e12..ee6a890424be06e7da351c44c5f2757cbb214a9a 100644
--- a/src/spaces.cc
+++ b/src/spaces.cc
@@ -1080,10 +1080,8 @@ intptr_t PagedSpace::SizeOfFirstPage() {
size = AreaSize();
} else {
#if V8_TARGET_ARCH_MIPS
- // On MIPS, code stubs seem to be quite a bit larger.
- // TODO(olivf/MIPS folks): Can we do anything about this? Does it
- // indicate the presence of a bug?
- size = 464 * KB;
+ // TODO(plind): Investigate larger code stubs size on MIPS.
+ size = 480 * KB;
#else
size = 416 * KB;
#endif
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698