Ignore:
Timestamp:
Jan 29, 2014, 11:18:54 AM (12 years ago)
Author:
[email protected]
Message:

Merge the jsCStack branch
https://bugs.webkit.org/show_bug.cgi?id=127763

Reviewed by Mark Hahnenberg.

Source/JavaScriptCore:

Changes from http://svn.webkit.org/repository/webkit/branches/jsCStack
up to changeset 162958.

Source/WebCore:

Changes from http://svn.webkit.org/repository/webkit/branches/jsCStack
up to changeset 162958.

Source/WTF:

Changes from http://svn.webkit.org/repository/webkit/branches/jsCStack
up to changeset 162958.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/dfg/DFGCommon.h

    r161126 r163027  
    8888}
    8989
    90 inline bool enableConcurrentJIT()
    91 {
    92 #if ENABLE(CONCURRENT_JIT)
    93     return Options::enableConcurrentJIT() && Options::numberOfCompilerThreads();
    94 #else
    95     return false;
    96 #endif
    97 }
    98 
    9990inline bool enableInt52()
    10091{
     
    236227// Put things here that must be defined even if ENABLE(DFG_JIT) is false.
    237228
    238 enum CapabilityLevel { CannotCompile, CanInline, CanCompile, CanCompileAndInline, CapabilityLevelNotSet };
     229enum CapabilityLevel {
     230    CannotCompile,
     231    CanInline,
     232    CanCompile,
     233    CanCompileAndInline,
     234    CapabilityLevelNotSet
     235};
    239236
    240237inline bool canCompile(CapabilityLevel level)
Note: See TracChangeset for help on using the changeset viewer.