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

Unified Diff: src/type-feedback-vector.h

Issue 650073002: vector-based ICs did not update type feedback counts correctly. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Ports. Created 6 years, 2 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
Index: src/type-feedback-vector.h
diff --git a/src/type-feedback-vector.h b/src/type-feedback-vector.h
index b6fadba73ea0623ea62ee852f15eda9af3394207..f0f31c6f5965af275d41066d2845456a6b79b7cd 100644
--- a/src/type-feedback-vector.h
+++ b/src/type-feedback-vector.h
@@ -14,6 +14,15 @@
namespace v8 {
namespace internal {
+// The shape of the TypeFeedbackVector is an array with:
+// 0: first_ic_slot_index (-1 if no ic slots present)
+// 1: ics_with_types
+// 2: ics_with_generic_info
+// 3: first feedback slot
+// ...
+// [<first_ic_slot_index>: feedback slot]
+// ...to length() - 1
+//
class TypeFeedbackVector : public FixedArray {
public:
// Casting.
@@ -22,9 +31,53 @@ class TypeFeedbackVector : public FixedArray {
return reinterpret_cast<TypeFeedbackVector*>(obj);
}
+ // In a TypeFeedbackVector for ICs, the first two indexes are reserved
ulan 2014/10/15 10:17:06 Comment seems out-of-date.
mvstanton 2014/10/16 10:54:15 Thanks. I removed it, as it seems pretty clear fro
+ // for keeping track of type info in the overall function.
+ static const int kReservedIndexCount = 3;
+ static const int kFirstICSlotIndex = 0;
+ static const int kWithTypesIndex = 1;
+ static const int kGenericCountIndex = 2;
+
+ inline int first_ic_slot_index() {
+ DCHECK(length() >= kReservedIndexCount);
+ return Smi::cast(get(kFirstICSlotIndex))->value();
+ }
+ inline int ic_with_type_info_count();
+ inline void change_ic_with_type_info_count(int delta);
+
+ inline int ic_generic_count();
+ inline void change_ic_generic_count(int delta);
+
+ inline int Slots();
+ inline int ICSlots();
+
+ // Conversion from a slot or ic slot to an integer index to the underlying
+ // array.
+ inline int GetIndex(FeedbackVectorSlot slot);
+ inline int GetIndex(FeedbackVectorICSlot slot);
+
+ // Conversion from an integer index to either a slot or an ic slot. The caller
+ // should know what kind she expects.
+ inline FeedbackVectorSlot ToSlot(int index);
+ inline FeedbackVectorICSlot ToICSlot(int index);
+
+ inline Object* Get(FeedbackVectorSlot slot);
+ inline void Set(FeedbackVectorSlot slot, Object* value,
+ WriteBarrierMode mode = UPDATE_WRITE_BARRIER);
+
+ inline Object* Get(FeedbackVectorICSlot slot);
+ inline void Set(FeedbackVectorICSlot slot, Object* value,
+ WriteBarrierMode mode = UPDATE_WRITE_BARRIER);
+
+ static Handle<TypeFeedbackVector> Allocate(Isolate* isolate, int slot_count,
+ int ic_slot_count);
+
static Handle<TypeFeedbackVector> Copy(Isolate* isolate,
Handle<TypeFeedbackVector> vector);
+ // Clears vector slots, and leaves vector ic slots alone.
+ void ClearSlots();
+
// The object that indicates an uninitialized cache.
static inline Handle<Object> UninitializedSentinel(Isolate* isolate);

Powered by Google App Engine
This is Rietveld 408576698