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

Unified Diff: src/objects.cc

Issue 23480031: Enable preaging of code objects when --optimize-for-size. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Make pre-aging conditional on is_memory_constrained() Created 7 years, 3 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
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index f329c274dc643592bf8621ce4c2a3e2be03d6648..64b0d3f260aef2cb70779b4cc044a5bf053b4b43 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -10460,7 +10460,7 @@ bool Code::IsOld() {
Age age;
MarkingParity parity;
GetCodeAgeAndParity(sequence, &age, &parity);
- return age >= kSexagenarianCodeAge;
+ return age >= kIsOldCodeAge;
}
« no previous file with comments | « src/objects.h ('k') | src/x64/codegen-x64.cc » ('j') | test/cctest/test-heap.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698