Changeset 105579 in webkit for trunk/Source/JavaScriptCore/dfg/DFGDriver.h
- Timestamp:
- Jan 21, 2012, 4:48:18 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGDriver.h
r98082 r105579 31 31 namespace JSC { 32 32 33 class ExecState;34 33 class CodeBlock; 35 34 class JITCode; 35 class JSGlobalData; 36 36 class MacroAssemblerCodePtr; 37 37 … … 39 39 40 40 #if ENABLE(DFG_JIT) 41 bool tryCompile( ExecState*, CodeBlock*, JITCode&);42 bool tryCompileFunction( ExecState*, CodeBlock*, JITCode&, MacroAssemblerCodePtr& jitCodeWithArityCheck);41 bool tryCompile(JSGlobalData&, CodeBlock*, JITCode&); 42 bool tryCompileFunction(JSGlobalData&, CodeBlock*, JITCode&, MacroAssemblerCodePtr& jitCodeWithArityCheck); 43 43 #else 44 inline bool tryCompile( ExecState*, CodeBlock*, JITCode&) { return false; }45 inline bool tryCompileFunction( ExecState*, CodeBlock*, JITCode&, MacroAssemblerCodePtr&) { return false; }44 inline bool tryCompile(JSGlobalData&, CodeBlock*, JITCode&) { return false; } 45 inline bool tryCompileFunction(JSGlobalData&, CodeBlock*, JITCode&, MacroAssemblerCodePtr&) { return false; } 46 46 #endif 47 47
Note:
See TracChangeset
for help on using the changeset viewer.