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

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

Issue 1369973002: Use FeedbackVectorSlotKind instead of Code::Kind for type feedback vector. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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/type-feedback-vector.h ('k') | src/type-info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/type-feedback-vector.cc
diff --git a/src/type-feedback-vector.cc b/src/type-feedback-vector.cc
index e8993dd44e6b646608828882a8bcab68c37ef2dc..506e20d1386094e78727521f88e5336ef7966478 100644
--- a/src/type-feedback-vector.cc
+++ b/src/type-feedback-vector.cc
@@ -13,65 +13,24 @@
namespace v8 {
namespace internal {
-// static
-TypeFeedbackVector::VectorICKind TypeFeedbackVector::FromCodeKind(
- Code::Kind kind) {
- switch (kind) {
- case Code::CALL_IC:
- return KindCallIC;
- case Code::LOAD_IC:
- return KindLoadIC;
- case Code::KEYED_LOAD_IC:
- return KindKeyedLoadIC;
- case Code::STORE_IC:
- return KindStoreIC;
- case Code::KEYED_STORE_IC:
- return KindKeyedStoreIC;
- default:
- // Shouldn't get here.
- UNREACHABLE();
- }
-
- return KindUnused;
+std::ostream& operator<<(std::ostream& os, FeedbackVectorSlotKind kind) {
+ return os << TypeFeedbackVector::Kind2String(kind);
}
-// static
-Code::Kind TypeFeedbackVector::FromVectorICKind(VectorICKind kind) {
- switch (kind) {
- case KindCallIC:
- return Code::CALL_IC;
- case KindLoadIC:
- return Code::LOAD_IC;
- case KindKeyedLoadIC:
- return Code::KEYED_LOAD_IC;
- case KindStoreIC:
- DCHECK(FLAG_vector_stores);
- return Code::STORE_IC;
- case KindKeyedStoreIC:
- DCHECK(FLAG_vector_stores);
- return Code::KEYED_STORE_IC;
- case KindUnused:
- break;
- }
- // Sentinel for no information.
- return Code::NUMBER_OF_KINDS;
-}
-
-
-Code::Kind TypeFeedbackVector::GetKind(FeedbackVectorICSlot slot) const {
+FeedbackVectorSlotKind TypeFeedbackVector::GetKind(
+ FeedbackVectorICSlot slot) const {
int index = VectorICComputer::index(kReservedIndexCount, slot.ToInt());
int data = Smi::cast(get(index))->value();
- VectorICKind b = VectorICComputer::decode(data, slot.ToInt());
- return FromVectorICKind(b);
+ return VectorICComputer::decode(data, slot.ToInt());
}
-void TypeFeedbackVector::SetKind(FeedbackVectorICSlot slot, Code::Kind kind) {
- VectorICKind b = FromCodeKind(kind);
+void TypeFeedbackVector::SetKind(FeedbackVectorICSlot slot,
+ FeedbackVectorSlotKind kind) {
int index = VectorICComputer::index(kReservedIndexCount, slot.ToInt());
int data = Smi::cast(get(index))->value();
- int new_data = VectorICComputer::encode(data, slot.ToInt(), b);
+ int new_data = VectorICComputer::encode(data, slot.ToInt(), kind);
set(index, Smi::FromInt(new_data));
}
@@ -135,7 +94,7 @@ int TypeFeedbackVector::PushAppliedArgumentsIndex() {
// static
Handle<TypeFeedbackVector> TypeFeedbackVector::CreatePushAppliedArgumentsVector(
Isolate* isolate) {
- Code::Kind kinds[] = {Code::KEYED_LOAD_IC};
+ FeedbackVectorSlotKind kinds[] = {FeedbackVectorSlotKind::KEYED_LOAD_IC};
FeedbackVectorSpec spec(0, 1, kinds);
Handle<TypeFeedbackVector> feedback_vector =
isolate->factory()->NewTypeFeedbackVector(&spec);
@@ -219,24 +178,39 @@ void TypeFeedbackVector::ClearICSlotsImpl(SharedFunctionInfo* shared,
FeedbackVectorICSlot slot(i);
Object* obj = Get(slot);
if (obj != uninitialized_sentinel) {
- Code::Kind kind = GetKind(slot);
- if (kind == Code::CALL_IC) {
- CallICNexus nexus(this, slot);
- nexus.Clear(host);
- } else if (kind == Code::LOAD_IC) {
- LoadICNexus nexus(this, slot);
- nexus.Clear(host);
- } else if (kind == Code::KEYED_LOAD_IC) {
- KeyedLoadICNexus nexus(this, slot);
- nexus.Clear(host);
- } else if (kind == Code::STORE_IC) {
- DCHECK(FLAG_vector_stores);
- StoreICNexus nexus(this, slot);
- nexus.Clear(host);
- } else if (kind == Code::KEYED_STORE_IC) {
- DCHECK(FLAG_vector_stores);
- KeyedStoreICNexus nexus(this, slot);
- nexus.Clear(host);
+ FeedbackVectorSlotKind kind = GetKind(slot);
+ switch (kind) {
+ case FeedbackVectorSlotKind::CALL_IC: {
+ CallICNexus nexus(this, slot);
+ nexus.Clear(host);
+ break;
+ }
+ case FeedbackVectorSlotKind::LOAD_IC: {
+ LoadICNexus nexus(this, slot);
+ nexus.Clear(host);
+ break;
+ }
+ case FeedbackVectorSlotKind::KEYED_LOAD_IC: {
+ KeyedLoadICNexus nexus(this, slot);
+ nexus.Clear(host);
+ break;
+ }
+ case FeedbackVectorSlotKind::STORE_IC: {
+ DCHECK(FLAG_vector_stores);
+ StoreICNexus nexus(this, slot);
+ nexus.Clear(host);
+ break;
+ }
+ case FeedbackVectorSlotKind::KEYED_STORE_IC: {
+ DCHECK(FLAG_vector_stores);
+ KeyedStoreICNexus nexus(this, slot);
+ nexus.Clear(host);
+ break;
+ }
+ case FeedbackVectorSlotKind::UNUSED:
+ case FeedbackVectorSlotKind::KINDS_NUMBER:
+ UNREACHABLE();
+ break;
}
}
}
@@ -266,8 +240,8 @@ void TypeFeedbackVector::ClearKeyedStoreICs(SharedFunctionInfo* shared) {
FeedbackVectorICSlot slot(i);
Object* obj = Get(slot);
if (obj != uninitialized_sentinel) {
- Code::Kind kind = GetKind(slot);
- if (kind == Code::KEYED_STORE_IC) {
+ FeedbackVectorSlotKind kind = GetKind(slot);
+ if (kind == FeedbackVectorSlotKind::KEYED_STORE_IC) {
DCHECK(FLAG_vector_stores);
KeyedStoreICNexus nexus(this, slot);
nexus.Clear(host);
@@ -283,6 +257,28 @@ Handle<TypeFeedbackVector> TypeFeedbackVector::DummyVector(Isolate* isolate) {
}
+const char* TypeFeedbackVector::Kind2String(FeedbackVectorSlotKind kind) {
+ switch (kind) {
+ case FeedbackVectorSlotKind::UNUSED:
+ return "UNUSED";
+ case FeedbackVectorSlotKind::CALL_IC:
+ return "CALL_IC";
+ case FeedbackVectorSlotKind::LOAD_IC:
+ return "LOAD_IC";
+ case FeedbackVectorSlotKind::KEYED_LOAD_IC:
+ return "KEYED_LOAD_IC";
+ case FeedbackVectorSlotKind::STORE_IC:
+ return "STORE_IC";
+ case FeedbackVectorSlotKind::KEYED_STORE_IC:
+ return "KEYED_STORE_IC";
+ case FeedbackVectorSlotKind::KINDS_NUMBER:
+ break;
+ }
+ UNREACHABLE();
+ return "?";
+}
+
+
Handle<FixedArray> FeedbackNexus::EnsureArrayOfSize(int length) {
Isolate* isolate = GetIsolate();
Handle<Object> feedback = handle(GetFeedback(), isolate);
« no previous file with comments | « src/type-feedback-vector.h ('k') | src/type-info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698