Index: src/type-info.h |
diff --git a/src/type-info.h b/src/type-info.h |
index 5c99e71d550a1e190a169039e3a05b5c36de8d3f..ef8b5e85912d87022e3798247130536757d60e71 100644 |
--- a/src/type-info.h |
+++ b/src/type-info.h |
@@ -25,7 +25,7 @@ class TypeFeedbackOracle: public ZoneObject { |
bool LoadIsUninitialized(TypeFeedbackId id); |
bool StoreIsUninitialized(TypeFeedbackId id); |
- bool CallIsMonomorphic(FeedbackVectorSlot slot); |
+ bool CallIsMonomorphic(FeedbackVectorICSlot slot); |
bool CallIsMonomorphic(TypeFeedbackId aid); |
Jakob Kummerow
2014/10/14 15:27:20
While you're here: this method doesn't seem to exi
mvstanton
2014/10/16 10:54:15
Done.
|
bool KeyedArrayCallIsHoley(TypeFeedbackId id); |
bool CallNewIsMonomorphic(FeedbackVectorSlot slot); |
@@ -59,8 +59,8 @@ class TypeFeedbackOracle: public ZoneObject { |
static bool CanRetainOtherContext(JSFunction* function, |
Context* native_context); |
- Handle<JSFunction> GetCallTarget(FeedbackVectorSlot slot); |
- Handle<AllocationSite> GetCallAllocationSite(FeedbackVectorSlot slot); |
+ Handle<JSFunction> GetCallTarget(FeedbackVectorICSlot slot); |
+ Handle<AllocationSite> GetCallAllocationSite(FeedbackVectorICSlot slot); |
Handle<JSFunction> GetCallNewTarget(FeedbackVectorSlot slot); |
Handle<AllocationSite> GetCallNewAllocationSite(FeedbackVectorSlot slot); |
@@ -113,6 +113,7 @@ class TypeFeedbackOracle: public ZoneObject { |
// Returns an element from the type feedback vector. Returns undefined |
// if there is no information. |
Handle<Object> GetInfo(FeedbackVectorSlot slot); |
+ Handle<Object> GetInfo(FeedbackVectorICSlot slot); |
private: |
Handle<Context> native_context_; |