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

Unified Diff: src/objects-inl.h

Issue 10417030: Decoupling MarkDescriptorArray as much as possible from the ContentArray. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressing comments Created 8 years, 7 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
« src/objects.cc ('K') | « src/objects.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects-inl.h
diff --git a/src/objects-inl.h b/src/objects-inl.h
index 544443866efc52a82fdb20f9b84db8540c1334fb..08c7078a134e3edaae7ea5e10642edac8b58bdc3 100644
--- a/src/objects-inl.h
+++ b/src/objects-inl.h
@@ -1929,6 +1929,12 @@ String* DescriptorArray::GetKey(int descriptor_number) {
}
+Object** DescriptorArray::GetValueSlot(int descriptor_number) {
+ ASSERT(descriptor_number < number_of_descriptors());
+ return GetContentArray()->data_start() + ToValueIndex(descriptor_number);
+}
+
+
Object* DescriptorArray::GetValue(int descriptor_number) {
ASSERT(descriptor_number < number_of_descriptors());
return GetContentArray()->get(ToValueIndex(descriptor_number));
@@ -1942,6 +1948,25 @@ PropertyDetails DescriptorArray::GetDetails(int descriptor_number) {
}
+FixedArray* DescriptorArray::RawGetContentArray() {
+ Object* array = this->get(DescriptorArray::kContentArrayIndex);
+ return static_cast<FixedArray*>(array);
+}
+
+
+Object* DescriptorArray::RawGetValue(int descriptor_number) {
+ ASSERT(descriptor_number < number_of_descriptors());
+ return RawGetContentArray()->get(ToValueIndex(descriptor_number));
+}
+
+
+PropertyDetails DescriptorArray::RawGetDetails(int descriptor_number) {
+ ASSERT(descriptor_number < number_of_descriptors());
+ Object* details = RawGetContentArray()->get(ToDetailsIndex(descriptor_number));
+ return PropertyDetails(Smi::cast(details));
+}
+
+
PropertyType DescriptorArray::GetType(int descriptor_number) {
return GetDetails(descriptor_number).type();
}
« src/objects.cc ('K') | « src/objects.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698