Changeset 61853 in webkit


Ignore:
Timestamp:
Jun 25, 2010 5:28:44 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-06-25 Lucas De Marchi <lucas.demarchi@profusion.mobi>

Reviewed by Kenneth Rohde Christiansen.

[CMake] Add option to enable JIT.
JIT is disabled by default, but now it's possible to enable it through
an option to CMake: -DENABLE_JIT will enable it.
https://bugs.webkit.org/show_bug.cgi?id=40936

  • cmake/OptionsEfl.cmake: add new -DENABLE_JIT option.
  • cmakeconfig.h.cmake: use new -DENABLE_JIT option.

2010-06-25 Lucas De Marchi <lucas.demarchi@profusion.mobi>

Reviewed by Kenneth Rohde Christiansen.

[CMake] Add option to enable JIT.
JIT is disabled by default, but now it's possible to enable it through
an option to CMake: -DENABLE_JIT will enable it.
https://bugs.webkit.org/show_bug.cgi?id=40936

  • CMakeLists.txt: Add missing files and re-sort.
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r61708 r61853  
     12010-06-25  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [CMake] Add option to enable JIT.
     6        JIT is disabled by default, but now it's possible to enable it through
     7        an option to CMake: -DENABLE_JIT will enable it.
     8        https://bugs.webkit.org/show_bug.cgi?id=40936
     9
     10        * cmake/OptionsEfl.cmake: add new -DENABLE_JIT option.
     11        * cmakeconfig.h.cmake: use new -DENABLE_JIT option.
     12
    1132010-06-23  Leandro Pereira  <leandro@profusion.mobi>
    214
  • trunk/JavaScriptCore/CMakeLists.txt

    r61763 r61853  
    5555    jit/ExecutableAllocatorSymbian.cpp
    5656    jit/ExecutableAllocatorWin.cpp
     57    jit/JITArithmetic32_64.cpp
     58    jit/JITArithmetic.cpp
     59    jit/JITCall32_64.cpp
     60    jit/JITCall.cpp
     61    jit/JIT.cpp
     62    jit/JITOpcodes32_64.cpp
     63    jit/JITOpcodes.cpp
     64    jit/JITPropertyAccess32_64.cpp
     65    jit/JITPropertyAccess.cpp
    5766    jit/JITStubs.cpp
    58     jit/JITOpcodes.cpp
    59     jit/JITOpcodes32_64.cpp
    60     jit/JITPropertyAccess.cpp
    61     jit/JITPropertyAccess32_64.cpp
    62     jit/JITArithmetic.cpp
    63     jit/JITCall.cpp
    64     jit/JITCall32_64.cpp
    65     jit/JIT.cpp
     67    jit/ThunkGenerators.cpp
    6668
    6769    parser/JSParser.cpp
  • trunk/JavaScriptCore/ChangeLog

    r61852 r61853  
     12010-06-25  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [CMake] Add option to enable JIT.
     6        JIT is disabled by default, but now it's possible to enable it through
     7        an option to CMake: -DENABLE_JIT will enable it.
     8        https://bugs.webkit.org/show_bug.cgi?id=40936
     9
     10        * CMakeLists.txt: Add missing files and re-sort.
     11
    1122010-06-25  Lucas De Marchi  <lucas.demarchi@profusion.mobi>
    213
  • trunk/cmake/OptionsEfl.cmake

    r61708 r61853  
    6666WEBKIT_FEATURE(ENABLE_INSPECTOR "Enable inspector" DEFAULT ON)
    6767WEBKIT_FEATURE(ENABLE_JAVASCRIPT_DEBUGGER "Enable JavaScript debugger" DEFAULT ON)
     68WEBKIT_FEATURE(ENABLE_JIT "Enable JIT code" DEFAULT OFF)
    6869WEBKIT_FEATURE(ENABLE_MATHML "Enable MathML" DEFAULT OFF)
    6970WEBKIT_FEATURE(ENABLE_NOTIFICATIONS "Enable notifications" DEFAULT OFF)
  • trunk/cmakeconfig.h.cmake

    r59537 r61853  
    1616#define ENABLE_ICONDATABASE @ENABLE_ICONDATABASE_VALUE@
    1717#define ENABLE_JAVASCRIPT_DEBUGGER @ENABLE_JAVASCRIPT_DEBUGGER_VALUE@
     18#define ENABLE_JIT @ENABLE_JIT_VALUE@
    1819#define ENABLE_MATHML @ENABLE_MATHML_VALUE@
    1920#define ENABLE_NOTIFICATIONS @ENABLE_NOTIFICATIONS_VALUE@
Note: See TracChangeset for help on using the changeset viewer.