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

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: 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 93cb0fc809c5d6cd83c6adb5346b14cd926fa8f9..6e7b116283c4f1b91bc1f935ce7fc3d2ce89ae4f 100644
--- a/src/objects-inl.h
+++ b/src/objects-inl.h
@@ -1928,6 +1928,10 @@ String* DescriptorArray::GetKey(int descriptor_number) {
return String::cast(get(ToKeyIndex(descriptor_number)));
}
Michael Starzinger 2012/05/24 14:28:54 Two lines between top-level declarations.
Toon Verwaest 2012/05/25 12:27:26 Done.
+Object** DescriptorArray::GetValueSlot(int descriptor_number) {
+ ASSERT(descriptor_number < number_of_descriptors());
+ return GetContentArray()->data_start() + ToValueIndex(descriptor_number);
+}
Michael Starzinger 2012/05/24 14:28:54 Likewise.
Toon Verwaest 2012/05/25 12:27:26 Done.
Object* DescriptorArray::GetValue(int descriptor_number) {
ASSERT(descriptor_number < number_of_descriptors());
« 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