Add allocation sites to scratchpad only if a significant amount of mementos was found.

BUG=
R=titzer@chromium.org

Review URL: https://codereview.chromium.org/284223007

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21370 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
hpayer@chromium.org 2014-05-19 16:07:20 +00:00
parent 13af2c0598
commit b2c9fcaa4c

View File

@ -1566,7 +1566,7 @@ inline bool AllocationSite::IncrementMementoFoundCount() {
int value = memento_found_count();
set_memento_found_count(value + 1);
return value == 0;
return value == kPretenureMinimumCreated;
}