Changeset 55117 in webkit for trunk/JavaScriptCore/Android.mk


Ignore:
Timestamp:
Feb 22, 2010, 5:55:38 PM (15 years ago)
Author:
[email protected]
Message:

2010-02-22 Huahui Wu <[email protected]>

Reviewed by Eric Seidel.

Add code that enables SquirrelFish Extreme (a.k.a JSCX, JSC JIT)
in Android. It's disabled by default, but is enabled when the
enveronment variable ENABLE_JSC_JIT is set to true.
https://bugs.webkit.org/show_bug.cgi?id=34855

  • Android.mk:

2010-02-22 Huahui Wu <[email protected]>

Reviewed by Eric Seidel.

Add code that enables SquirrelFish Extreme (a.k.a JSCX, JSC JIT)
in Android. It's disabled by default, but is enabled when the
enveronment variable ENABLE_JSC_JIT is set to true.
https://bugs.webkit.org/show_bug.cgi?id=34855

  • Android.mk:
  • wtf/Platform.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/Android.mk

    r53714 r55117  
    4545        interpreter/Interpreter.cpp \
    4646        interpreter/RegisterFile.cpp \
     47        \
     48        jit/ExecutableAllocator.cpp\
     49        jit/ExecutableAllocatorFixedVMPool.cpp \
     50        jit/ExecutableAllocatorPosix.cpp \
     51        jit/JIT.cpp \
     52        jit/JITArithmetic.cpp \
     53        jit/JITCall.cpp \
     54        jit/JITOpcodes.cpp \
     55        jit/JITPropertyAccess.cpp \
     56        jit/JITStubs.cpp \
    4757        \
    4858        parser/Lexer.cpp \
     
    172182        wtf/unicode/UTF8.cpp \
    173183        \
    174         wtf/unicode/icu/CollatorICU.cpp
     184        wtf/unicode/icu/CollatorICU.cpp \
     185        \
     186        yarr/RegexCompiler.cpp \
     187        yarr/RegexInterpreter.cpp \
     188        yarr/RegexJIT.cpp
    175189
    176190# Rule to build grammar.y with our custom bison.
Note: See TracChangeset for help on using the changeset viewer.