Changeset 154833 in webkit for trunk/Source/JavaScriptCore/jit/JIT.h
- Timestamp:
- Aug 29, 2013, 12:28:55 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JIT.h
r154156 r154833 299 299 300 300 public: 301 static PassRefPtr<JITCode> compile(VM* vm, CodeBlock* codeBlock, JITCompilationEffort effort, CodePtr* functionEntryArityCheck = 0)302 { 303 return JIT(vm, codeBlock).privateCompile( functionEntryArityCheck,effort);301 static CompilationResult compile(VM* vm, CodeBlock* codeBlock, JITCompilationEffort effort) 302 { 303 return JIT(vm, codeBlock).privateCompile(effort); 304 304 } 305 305 … … 404 404 void privateCompileLinkPass(); 405 405 void privateCompileSlowCases(); 406 PassRefPtr<JITCode> privateCompile(CodePtr* functionEntryArityCheck,JITCompilationEffort);406 CompilationResult privateCompile(JITCompilationEffort); 407 407 408 408 void privateCompileClosureCall(CallLinkInfo*, CodeBlock* calleeCodeBlock, Structure*, ExecutableBase*, MacroAssemblerCodePtr);
Note:
See TracChangeset
for help on using the changeset viewer.