Changeset 99382 in webkit
- Timestamp:
- Nov 6, 2011, 1:29:52 PM (15 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 9 edited
-
ChangeLog (modified) (1 diff)
-
assembler/AssemblerBufferWithConstantPool.h (modified) (1 diff)
-
bytecode/CodeBlock.h (modified) (1 diff)
-
dfg/DFGVariableAccessData.h (modified) (1 diff)
-
heap/VTableSpectrum.h (modified) (1 diff)
-
jit/ExecutableAllocator.cpp (modified) (1 diff)
-
jit/ExecutableAllocatorFixedVMPool.cpp (modified) (1 diff)
-
wtf/MetaAllocatorHandle.h (modified) (1 diff)
-
wtf/UnionFind.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r99378 r99382 1 2011-11-06 Sam Weinig <sam@webkit.org> 2 3 Add space missing from some class declarations 4 https://bugs.webkit.org/show_bug.cgi?id=71632 5 6 Reviewed by Anders Carlsson. 7 8 * assembler/AssemblerBufferWithConstantPool.h: 9 * bytecode/CodeBlock.h: 10 * dfg/DFGVariableAccessData.h: 11 * heap/VTableSpectrum.h: 12 * jit/ExecutableAllocator.cpp: 13 * jit/ExecutableAllocatorFixedVMPool.cpp: 14 * wtf/MetaAllocatorHandle.h: 15 * wtf/UnionFind.h: 16 1 17 2011-11-06 Sam Weinig <sam@webkit.org> 2 18 -
trunk/Source/JavaScriptCore/assembler/AssemblerBufferWithConstantPool.h
r95901 r99382 84 84 85 85 template <int maxPoolSize, int barrierSize, int maxInstructionSize, class AssemblerType> 86 class AssemblerBufferWithConstantPool : public AssemblerBuffer {86 class AssemblerBufferWithConstantPool : public AssemblerBuffer { 87 87 typedef SegmentedVector<uint32_t, 512> LoadOffsets; 88 88 using AssemblerBuffer::putIntegral; -
trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
r99009 r99382 104 104 105 105 #if ENABLE(JIT) 106 struct CallLinkInfo : public BasicRawSentinelNode<CallLinkInfo> {106 struct CallLinkInfo : public BasicRawSentinelNode<CallLinkInfo> { 107 107 CallLinkInfo() 108 108 : hasSeenShouldRepatch(false) -
trunk/Source/JavaScriptCore/dfg/DFGVariableAccessData.h
r99144 r99382 34 34 namespace JSC { namespace DFG { 35 35 36 class VariableAccessData : public UnionFind<VariableAccessData> {36 class VariableAccessData : public UnionFind<VariableAccessData> { 37 37 public: 38 38 VariableAccessData() -
trunk/Source/JavaScriptCore/heap/VTableSpectrum.h
r99374 r99382 34 34 class JSCell; 35 35 36 class VTableSpectrum : Spectrum<void*> {36 class VTableSpectrum : Spectrum<void*> { 37 37 public: 38 38 VTableSpectrum(); -
trunk/Source/JavaScriptCore/jit/ExecutableAllocator.cpp
r97557 r99382 42 42 #if ENABLE(EXECUTABLE_ALLOCATOR_DEMAND) 43 43 44 class DemandExecutableAllocator : public MetaAllocator {44 class DemandExecutableAllocator : public MetaAllocator { 45 45 public: 46 46 DemandExecutableAllocator() -
trunk/Source/JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp
r95901 r99382 54 54 #endif 55 55 56 class FixedVMPoolExecutableAllocator : public MetaAllocator {56 class FixedVMPoolExecutableAllocator : public MetaAllocator { 57 57 public: 58 58 FixedVMPoolExecutableAllocator() -
trunk/Source/JavaScriptCore/wtf/MetaAllocatorHandle.h
r95901 r99382 38 38 class MetaAllocator; 39 39 40 class MetaAllocatorHandle : public RefCounted<MetaAllocatorHandle> {40 class MetaAllocatorHandle : public RefCounted<MetaAllocatorHandle> { 41 41 private: 42 42 MetaAllocatorHandle(MetaAllocator*, void* start, size_t sizeInBytes); -
trunk/Source/JavaScriptCore/wtf/UnionFind.h
r96375 r99382 36 36 // superclass: 37 37 // 38 // class MemberOfSet : public UnionFind<MemberOfSet> { ... }38 // class MemberOfSet : public UnionFind<MemberOfSet> { ... } 39 39 // 40 40 // Calling x->find() gives you a MemberOfSet* that represents the
Note:
See TracChangeset
for help on using the changeset viewer.