Changeset 153121 in webkit for trunk/Source/JavaScriptCore/ftl/FTLCompile.h
- Timestamp:
- Jul 24, 2013, 8:58:38 PM (12 years ago)
- Location:
- trunk/Source/JavaScriptCore/ftl
- Files:
-
- 1 added
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ftl/FTLCompile.h
r153120 r153121 24 24 */ 25 25 26 #ifndef DFGOSRExitCompilerCommon_h27 #define DFGOSRExitCompilerCommon_h26 #ifndef FTLCompile_h 27 #define FTLCompile_h 28 28 29 29 #include <wtf/Platform.h> 30 30 31 #if ENABLE( DFG_JIT)31 #if ENABLE(FTL_JIT) 32 32 33 #include "DFGCCallHelpers.h" 34 #include "DFGOSRExit.h" 33 #include "FTLState.h" 35 34 36 namespace JSC { namespace DFG{35 namespace JSC { namespace FTL { 37 36 38 void handleExitCounts(CCallHelpers&, const OSRExit&); 39 void reifyInlinedCallFrames(CCallHelpers&, const OSRExit&); 40 void adjustAndJumpToTarget(CCallHelpers&, const OSRExit&); 37 void compile(State&, RefPtr<JSC::JITCode>&, MacroAssemblerCodePtr& jitCodeWithArityCheck); 41 38 42 } } // namespace JSC:: DFG39 } } // namespace JSC::FTL 43 40 44 #endif // ENABLE( DFG_JIT)41 #endif // ENABLE(FTL_JIT) 45 42 46 #endif // DFGOSRExitCompilerCommon_h43 #endif // FTLCompile_h 47 44
Note:
See TracChangeset
for help on using the changeset viewer.