Changeset 39087 in webkit
- Timestamp:
- Dec 7, 2008, 5:28:48 PM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r39085 r39087 1 2008-12-07 Oliver Hunt <[email protected]> 2 3 Reviewed by NOBODY (Build fix). 4 5 Put ENABLE(ASSEMBLER) guards around use of ExecutableAllocator in global data 6 7 Correct Qt and Gtk project files 8 9 * GNUmakefile.am: 10 * JavaScriptCore.pri: 11 * runtime/JSGlobalData.h: 12 1 13 2008-12-07 Oliver Hunt <[email protected]> 2 14 -
trunk/JavaScriptCore/GNUmakefile.am
r39085 r39087 79 79 JavaScriptCore/jit/JITArithmetic.cpp \ 80 80 JavaScriptCore/jit/ExecutableAllocator.cpp \ 81 JavaScriptCore/jit/ExecutableAllocator MMAP.cpp \81 JavaScriptCore/jit/ExecutableAllocatorPosix.cpp \ 82 82 JavaScriptCore/jit/JIT.h \ 83 83 JavaScriptCore/jit/JITInlineMethods.h \ -
trunk/JavaScriptCore/JavaScriptCore.pri
r39085 r39087 76 76 jit/JITPropertyAccess.cpp \ 77 77 jit/ExecutableAllocator.cpp \ 78 jit/ExecutableAllocator MMAP.cpp \78 jit/ExecutableAllocatorPosix.cpp \ 79 79 bytecompiler/BytecodeGenerator.cpp \ 80 80 runtime/ExceptionHelpers.cpp \ -
trunk/JavaScriptCore/runtime/JSGlobalData.h
r39083 r39087 121 121 122 122 Heap heap; 123 123 #if ENABLE(ASSEMBLER) 124 124 PassRefPtr<ExecutablePool> poolForSize(size_t n) { return m_executableAllocator.poolForSize(n); } 125 #endif 125 126 private: 126 127 JSGlobalData(bool isShared = false); 128 #if ENABLE(ASSEMBLER) 127 129 ExecutableAllocator m_executableAllocator; 130 #endif 128 131 129 132 static JSGlobalData*& sharedInstanceInternal();
Note:
See TracChangeset
for help on using the changeset viewer.