Changeset 89077 in webkit
- Timestamp:
- Jun 16, 2011, 3:29:45 PM (15 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 10 edited
-
ChangeLog (modified) (1 diff)
-
JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def (modified) (1 diff)
-
bytecode/EvalCodeCache.h (modified) (1 diff)
-
heap/HandleHeap.h (modified) (1 diff)
-
heap/HeapRootVisitor.h (modified) (1 diff)
-
heap/NewSpace.h (modified) (1 diff)
-
runtime/ArgList.h (modified) (1 diff)
-
runtime/ScopeChain.h (modified) (1 diff)
-
runtime/SmallStrings.h (modified) (1 diff)
-
runtime/Structure.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r89075 r89077 1 2011-06-16 Geoffrey Garen <ggaren@apple.com> 2 3 Try to fix the Windows build. 4 5 * JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def: Export another 6 symbol. 7 8 * bytecode/EvalCodeCache.h: 9 * heap/HandleHeap.h: 10 * heap/HeapRootVisitor.h: 11 * heap/NewSpace.h: 12 * runtime/ArgList.h: 13 * runtime/ScopeChain.h: 14 * runtime/SmallStrings.h: 15 * runtime/Structure.h: Stop forward-declaring things that don't really 16 exist anymore. 17 1 18 2011-06-16 Geoffrey Garen <ggaren@apple.com> 2 19 -
trunk/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def
r89072 r89077 366 366 ?unwrappedObject@JSObject@JSC@@UAEPAV12@XZ 367 367 ?utf8@UString@JSC@@QBE?AVCString@WTF@@_N@Z 368 ?visitChildren@JSGlobalObject@JSC@@UAEXAAVSlotVisitor@2@@Z 368 369 ?visitChildren@JSObject@JSC@@UAEXAAVSlotVisitor@2@@Z 369 370 ?visitChildren@JSWrapperObject@JSC@@EAEXAAVSlotVisitor@2@@Z -
trunk/Source/JavaScriptCore/bytecode/EvalCodeCache.h
r89069 r89077 42 42 namespace JSC { 43 43 44 class MarkStack;45 44 class SlotVisitor; 46 45 -
trunk/Source/JavaScriptCore/heap/HandleHeap.h
r89069 r89077 39 39 class JSGlobalData; 40 40 class JSValue; 41 class MarkStack;42 41 class SlotVisitor; 43 42 -
trunk/Source/JavaScriptCore/heap/HeapRootVisitor.h
r89069 r89077 33 33 // Privileged class for marking JSValues directly. It is only safe to use 34 34 // this class to mark direct heap roots that are marked during every GC pass. 35 // All other references should be wrapped in WriteBarriers and marked through 36 // the MarkStack. 35 // All other references should be wrapped in WriteBarriers. 37 36 class HeapRootVisitor { 38 37 private: -
trunk/Source/JavaScriptCore/heap/NewSpace.h
r89069 r89077 40 40 class JSCell; 41 41 class LiveObjectIterator; 42 class MarkStack;43 42 class WeakGCHandle; 44 43 class SlotVisitor; -
trunk/Source/JavaScriptCore/runtime/ArgList.h
r89069 r89077 31 31 namespace JSC { 32 32 33 class MarkStack;34 33 class SlotVisitor; 35 34 -
trunk/Source/JavaScriptCore/runtime/ScopeChain.h
r89069 r89077 31 31 class JSGlobalObject; 32 32 class JSObject; 33 class MarkStack;34 33 class ScopeChainIterator; 35 34 class SlotVisitor; -
trunk/Source/JavaScriptCore/runtime/SmallStrings.h
r89069 r89077 36 36 class JSGlobalData; 37 37 class JSString; 38 class MarkStack;39 38 class SmallStringsStorage; 40 39 class SlotVisitor; -
trunk/Source/JavaScriptCore/runtime/Structure.h
r89069 r89077 45 45 namespace JSC { 46 46 47 class MarkStack;48 47 class PropertyNameArray; 49 48 class PropertyNameArrayData;
Note:
See TracChangeset
for help on using the changeset viewer.