Changeset 163027 in webkit for trunk/Source/JavaScriptCore/dfg/DFGCommon.h
- Timestamp:
- Jan 29, 2014, 11:18:54 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGCommon.h
r161126 r163027 88 88 } 89 89 90 inline bool enableConcurrentJIT()91 {92 #if ENABLE(CONCURRENT_JIT)93 return Options::enableConcurrentJIT() && Options::numberOfCompilerThreads();94 #else95 return false;96 #endif97 }98 99 90 inline bool enableInt52() 100 91 { … … 236 227 // Put things here that must be defined even if ENABLE(DFG_JIT) is false. 237 228 238 enum CapabilityLevel { CannotCompile, CanInline, CanCompile, CanCompileAndInline, CapabilityLevelNotSet }; 229 enum CapabilityLevel { 230 CannotCompile, 231 CanInline, 232 CanCompile, 233 CanCompileAndInline, 234 CapabilityLevelNotSet 235 }; 239 236 240 237 inline bool canCompile(CapabilityLevel level)
Note:
See TracChangeset
for help on using the changeset viewer.