Changeset 109307 in webkit for trunk/Source/JavaScriptCore/jit/JIT.h
- Timestamp:
- Feb 29, 2012, 9:46:20 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JIT.h
r109038 r109307 200 200 201 201 public: 202 static JITCode compile(JSGlobalData* globalData, CodeBlock* codeBlock, CodePtr* functionEntryArityCheck = 0)203 { 204 return JIT(globalData, codeBlock).privateCompile(functionEntryArityCheck );202 static JITCode compile(JSGlobalData* globalData, CodeBlock* codeBlock, JITCompilationEffort effort, CodePtr* functionEntryArityCheck = 0) 203 { 204 return JIT(globalData, codeBlock).privateCompile(functionEntryArityCheck, effort); 205 205 } 206 206 … … 292 292 void privateCompileLinkPass(); 293 293 void privateCompileSlowCases(); 294 JITCode privateCompile(CodePtr* functionEntryArityCheck );294 JITCode privateCompile(CodePtr* functionEntryArityCheck, JITCompilationEffort); 295 295 void privateCompileGetByIdProto(StructureStubInfo*, Structure*, Structure* prototypeStructure, const Identifier&, const PropertySlot&, size_t cachedOffset, ReturnAddressPtr returnAddress, CallFrame* callFrame); 296 296 void privateCompileGetByIdSelfList(StructureStubInfo*, PolymorphicAccessStructureList*, int, Structure*, const Identifier&, const PropertySlot&, size_t cachedOffset);
Note:
See TracChangeset
for help on using the changeset viewer.