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

Unified Diff: src/ic.h

Issue 12088021: Only update POLYMORPHIC stubs using other POLYMORPHIC or GENERIC stubs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed nit Created 7 years, 11 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 | src/ic.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic.h
diff --git a/src/ic.h b/src/ic.h
index cea308b28636ffea5a6767e55472d376eeba821c..ea6aa057dfbd40cf889140c88baf5027cdba8b93 100644
--- a/src/ic.h
+++ b/src/ic.h
@@ -179,6 +179,14 @@ class IC {
UNREACHABLE();
return Handle<Code>::null();
}
+ virtual Handle<Code> generic_stub() const {
+ UNREACHABLE();
+ return Handle<Code>::null();
+ }
+ virtual Handle<Code> generic_stub_strict() const {
+ UNREACHABLE();
+ return Handle<Code>::null();
+ }
private:
// Frame pointer for the frame that uses (calls) the IC.
« no previous file with comments | « no previous file | src/ic.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698