]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - runtime/StructureChain.h
JavaScriptCore-1218.34.tar.gz
[apple/javascriptcore.git] / runtime / StructureChain.h
index c48749d29be302f6733162ec4c972b2c4e5340b7..e652fecc2fb0ba13ad9b8deaa54320a88605d6c3 100644 (file)
 #ifndef StructureChain_h
 #define StructureChain_h
 
+#include "JSCell.h"
+#include "JSObject.h"
+#include "Structure.h"
+
 #include <wtf/OwnArrayPtr.h>
 #include <wtf/PassRefPtr.h>
 #include <wtf/RefCounted.h>
 
 namespace JSC {
 
+    class LLIntOffsetsExtractor;
     class Structure;
 
-    class StructureChain : public RefCounted<StructureChain> {
+    class StructureChain : public JSCell {
+        friend class JIT;
+
     public:
-        static PassRefPtr<StructureChain> create(Structure* head) { return adoptRef(new StructureChain(head)); }
-        RefPtr<Structure>* head() { return m_vector.get(); }
-        bool isCacheable() const;
+        typedef JSCell Base;
 
-    private:
-        StructureChain(Structure* head);
+        static StructureChain* create(VM& vm, Structure* head)
+        { 
+            StructureChain* chain = new (NotNull, allocateCell<StructureChain>(vm.heap)) StructureChain(vm, vm.structureChainStructure.get());
+            chain->finishCreation(vm, head);
+            return chain;
+        }
+        WriteBarrier<Structure>* head() { return m_vector.get(); }
+        static void visitChildren(JSCell*, SlotVisitor&);
+
+        static Structure* createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype) { return Structure::create(vm, globalObject, prototype, TypeInfo(CompoundType, OverridesVisitChildren), &s_info); }
+        
+        static ClassInfo s_info;
 
-        OwnArrayPtr<RefPtr<Structure> > m_vector;
+        static const bool needsDestruction = true;
+        static const bool hasImmortalStructure = true;
+        static void destroy(JSCell*);
+
+    protected:
+        void finishCreation(VM& vm, Structure* head)
+        {
+            Base::finishCreation(vm);
+            size_t size = 0;
+            for (Structure* current = head; current; current = current->storedPrototype().isNull() ? 0 : asObject(current->storedPrototype())->structure())
+                ++size;
+    
+            m_vector = adoptArrayPtr(new WriteBarrier<Structure>[size + 1]);
+
+            size_t i = 0;
+            for (Structure* current = head; current; current = current->storedPrototype().isNull() ? 0 : asObject(current->storedPrototype())->structure())
+                m_vector[i++].set(vm, this, current);
+        }
+
+    private:
+        friend class LLIntOffsetsExtractor;
+        
+        StructureChain(VM&, Structure*);
+        OwnArrayPtr<WriteBarrier<Structure> > m_vector;
     };
 
 } // namespace JSC