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

Unified Diff: src/ic/ic.h

Issue 579153003: Move state sentinels into TypeFeedbackVector. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: ports. Created 6 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
« no previous file with comments | « src/ia32/full-codegen-ia32.cc ('k') | src/ic/ic.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ic/ic.h
diff --git a/src/ic/ic.h b/src/ic/ic.h
index 549cc20e4929a0dd727017e123a6aeb6c976444d..2a4ed688296b95f69b3958b8c1293d7045fa2ada 100644
--- a/src/ic/ic.h
+++ b/src/ic/ic.h
@@ -295,15 +295,15 @@ class CallIC : public IC {
public:
explicit CallIC(Isolate* isolate) : IC(EXTRA_CALL_FRAME, isolate) {}
- void PatchMegamorphic(Handle<Object> function, Handle<FixedArray> vector,
- Handle<Smi> slot);
+ void PatchMegamorphic(Handle<Object> function,
+ Handle<TypeFeedbackVector> vector, Handle<Smi> slot);
void HandleMiss(Handle<Object> receiver, Handle<Object> function,
- Handle<FixedArray> vector, Handle<Smi> slot);
+ Handle<TypeFeedbackVector> vector, Handle<Smi> slot);
// Returns true if a custom handler was installed.
bool DoCustomHandler(Handle<Object> receiver, Handle<Object> function,
- Handle<FixedArray> vector, Handle<Smi> slot,
+ Handle<TypeFeedbackVector> vector, Handle<Smi> slot,
const CallICState& state);
// Code generator routines.
@@ -314,7 +314,7 @@ class CallIC : public IC {
ConstantPoolArray* constant_pool);
private:
- inline IC::State FeedbackToState(Handle<FixedArray> vector,
+ inline IC::State FeedbackToState(Handle<TypeFeedbackVector> vector,
Handle<Smi> slot) const;
};
« no previous file with comments | « src/ia32/full-codegen-ia32.cc ('k') | src/ic/ic.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698