Ignore:
Timestamp:
Jan 30, 2011, 5:13:10 PM (14 years ago)
Author:
[email protected]
Message:

Convert markstack to a slot visitor API
https://bugs.webkit.org/show_bug.cgi?id=53219

rolling r77006 and r77020 back in.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/Structure.h

    r77044 r77098  
    8181        static PassRefPtr<Structure> toUncacheableDictionaryTransition(Structure*);
    8282
    83         PassRefPtr<Structure> flattenDictionaryStructure(JSObject*);
     83        PassRefPtr<Structure> flattenDictionaryStructure(JSGlobalData&, JSObject*);
    8484
    8585        ~Structure();
     
    9595        const TypeInfo& typeInfo() const { return m_typeInfo; }
    9696
    97         JSValue storedPrototype() const { return m_prototype; }
     97        JSValue storedPrototype() const { return m_prototype.get(); }
     98        DeprecatedPtr<Unknown>* storedPrototypeSlot() { return &m_prototype; }
    9899        JSValue prototypeForLookup(ExecState*) const;
    99100        StructureChain* prototypeChain(ExecState*) const;
     
    207208        TypeInfo m_typeInfo;
    208209
    209         JSValue m_prototype;
     210        DeprecatedPtr<Unknown> m_prototype;
    210211        mutable RefPtr<StructureChain> m_cachedPrototypeChain;
    211212
Note: See TracChangeset for help on using the changeset viewer.