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

Unified Diff: src/objects.h

Issue 10411067: TraversableMap only dependent on DescriptorArray (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
« no previous file with comments | « no previous file | src/objects.cc » ('j') | src/objects.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 4fd29ad56227d368d2ebb0773c566f6cba3909b0..116c92b54025c5ec938a81c04c0c4d87085d5460 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -2475,6 +2475,10 @@ class DescriptorArray: public FixedArray {
inline String* GetKey(int descriptor_number);
inline Object* GetValue(int descriptor_number);
inline PropertyDetails GetDetails(int descriptor_number);
+
+ inline Object* RawGetValue(int descriptor_number);
Michael Starzinger 2012/05/24 14:02:25 These methods are only needed by the IntrusiveMapT
Toon Verwaest 2012/05/25 11:36:46 Done.
+ inline PropertyDetails RawGetDetails(int descriptor_number);
+
inline PropertyType GetType(int descriptor_number);
inline int GetFieldIndex(int descriptor_number);
inline JSFunction* GetConstantFunction(int descriptor_number);
@@ -2650,6 +2654,7 @@ class DescriptorArray: public FixedArray {
FixedArray* GetContentArray() {
return FixedArray::cast(get(kContentArrayIndex));
}
+ inline FixedArray* RawGetContentArray();
Michael Starzinger 2012/05/24 14:02:25 Likewise.
Toon Verwaest 2012/05/25 11:36:46 Done.
DISALLOW_IMPLICIT_CONSTRUCTORS(DescriptorArray);
};
« no previous file with comments | « no previous file | src/objects.cc » ('j') | src/objects.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698