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

Unified Diff: src/global-handles.h

Issue 21133006: introduce eternal handles (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 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/global-handles.h
diff --git a/src/global-handles.h b/src/global-handles.h
index cd75133a24367092ec07e87bd9fc451a8a9e9d64..ad785c4eb4f897287620aceec487bd38806d6cf7 100644
--- a/src/global-handles.h
+++ b/src/global-handles.h
@@ -28,6 +28,8 @@
#ifndef V8_GLOBAL_HANDLES_H_
#define V8_GLOBAL_HANDLES_H_
+#include <vector>
+
#include "../include/v8.h"
#include "../include/v8-profiler.h"
@@ -331,6 +333,54 @@ class GlobalHandles {
};
+class EternalHandles {
+ public:
+ static const int kInvalidIndex = -1;
+ enum IndexedHandle {
+ I18N_TEMPLATE_ONE,
+ I18N_TEMPLATE_TWO,
+
+ LAST_INDEX = I18N_TEMPLATE_TWO
+ };
+
+ EternalHandles();
+ ~EternalHandles();
+
+ int NumberOfHandles() { return size_; }
+
+ int Create(Isolate* isolate, Object* object);
+
+ inline Object** Get(int index) {
+ ASSERT(index >= 0 && index < size_);
+ return &blocks_[index >> kShift][index & kMask];
+ }
+
+ inline int GetIndex(IndexedHandle i) {
+ return indexed_handles_[i];
+ }
+
+ int CreateIndexed(Isolate* isolate, Object* object, IndexedHandle i) {
+ ASSERT(GetIndex(i) == kInvalidIndex);
+ indexed_handles_[i] = Create(isolate, object);
+ return indexed_handles_[i];
+ }
+
+ void IterateAllRoots(ObjectVisitor* visitor);
+
+ private:
+ static const int kShift = 8;
+ static const int kSize = 1 << kShift;
+ static const int kMask = 0xff;
+ typedef std::vector<Object**> BlockStore;
+ int size_;
+ Object*** blocks_;
+ BlockStore block_store_;
+ int indexed_handles_[LAST_INDEX+1];
+
+ DISALLOW_COPY_AND_ASSIGN(EternalHandles);
+};
+
+
} } // namespace v8::internal
#endif // V8_GLOBAL_HANDLES_H_
« include/v8.h ('K') | « src/extensions/i18n/i18n-utils.cc ('k') | src/global-handles.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698