Commit af20990e authored by erik.corry@gmail.com's avatar erik.corry@gmail.com

Don't need to protect pregenerated stubs from flushing from the

cache.  They are in a different cache that is not flushed.  Keep
the marking of pregenerated stubs for assertion purposes.
Review URL: http://codereview.chromium.org/8065028

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@9479 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent acc105af
......@@ -1109,18 +1109,12 @@ MaybeObject* StubCache::ComputeCallDebugPrepareStepIn(
void StubCache::Clear() {
Code* empty = isolate_->builtins()->builtin(Builtins::kIllegal);
for (int i = 0; i < kPrimaryTableSize; i++) {
Code* code = primary_[i].value;
if (code != empty && !code->is_pregenerated()) {
primary_[i].key = heap()->empty_string();
primary_[i].value = empty;
}
primary_[i].key = heap()->empty_string();
primary_[i].value = empty;
}
for (int j = 0; j < kSecondaryTableSize; j++) {
Code* code = secondary_[j].value;
if (code != empty && !code->is_pregenerated()) {
secondary_[j].key = heap()->empty_string();
secondary_[j].value = empty;
}
secondary_[j].key = heap()->empty_string();
secondary_[j].value = empty;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment