Changeset 39087 in webkit


Ignore:
Timestamp:
Dec 7, 2008, 5:28:48 PM (17 years ago)
Author:
[email protected]
Message:

Put ENABLE(ASSEMBLER) guards around use of ExecutableAllocator in global data
Correct Qt and Gtk project files

Location:
trunk/JavaScriptCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r39085 r39087  
     12008-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
    1132008-12-07  Oliver Hunt  <[email protected]>
    214
  • trunk/JavaScriptCore/GNUmakefile.am

    r39085 r39087  
    7979        JavaScriptCore/jit/JITArithmetic.cpp \
    8080        JavaScriptCore/jit/ExecutableAllocator.cpp \
    81         JavaScriptCore/jit/ExecutableAllocatorMMAP.cpp \
     81        JavaScriptCore/jit/ExecutableAllocatorPosix.cpp \
    8282        JavaScriptCore/jit/JIT.h \
    8383        JavaScriptCore/jit/JITInlineMethods.h \
  • trunk/JavaScriptCore/JavaScriptCore.pri

    r39085 r39087  
    7676    jit/JITPropertyAccess.cpp \
    7777    jit/ExecutableAllocator.cpp \
    78     jit/ExecutableAllocatorMMAP.cpp \
     78    jit/ExecutableAllocatorPosix.cpp \
    7979    bytecompiler/BytecodeGenerator.cpp \
    8080    runtime/ExceptionHelpers.cpp \
  • trunk/JavaScriptCore/runtime/JSGlobalData.h

    r39083 r39087  
    121121
    122122        Heap heap;
    123 
     123#if ENABLE(ASSEMBLER)
    124124        PassRefPtr<ExecutablePool> poolForSize(size_t n) { return m_executableAllocator.poolForSize(n); }
     125#endif
    125126    private:
    126127        JSGlobalData(bool isShared = false);
     128#if ENABLE(ASSEMBLER)
    127129        ExecutableAllocator m_executableAllocator;
     130#endif
    128131
    129132        static JSGlobalData*& sharedInstanceInternal();
Note: See TracChangeset for help on using the changeset viewer.