Changeset 192935 in webkit for trunk/Source/JavaScriptCore/jit/JIT.cpp
- Timestamp:
- Dec 1, 2015, 5:37:19 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JIT.cpp
r192914 r192935 216 216 DEFINE_OP(op_check_tdz) 217 217 DEFINE_OP(op_assert) 218 DEFINE_OP(op_save)219 DEFINE_OP(op_resume)220 218 DEFINE_OP(op_debug) 221 219 DEFINE_OP(op_del_by_id) … … 264 262 DEFINE_OP(op_new_func) 265 263 DEFINE_OP(op_new_func_exp) 266 DEFINE_OP(op_new_generator_func)267 DEFINE_OP(op_new_generator_func_exp)268 264 DEFINE_OP(op_new_arrow_func_exp) 269 265 DEFINE_OP(op_new_object) … … 769 765 unsigned JIT::frameRegisterCountFor(CodeBlock* codeBlock) 770 766 { 771 ASSERT(static_cast<unsigned>(codeBlock->m_numCallee Locals) == WTF::roundUpToMultipleOf(stackAlignmentRegisters(), static_cast<unsigned>(codeBlock->m_numCalleeLocals)));772 773 return roundLocalRegisterCountForFramePointerOffset(codeBlock->m_numCallee Locals + maxFrameExtentForSlowPathCallInRegisters);767 ASSERT(static_cast<unsigned>(codeBlock->m_numCalleeRegisters) == WTF::roundUpToMultipleOf(stackAlignmentRegisters(), static_cast<unsigned>(codeBlock->m_numCalleeRegisters))); 768 769 return roundLocalRegisterCountForFramePointerOffset(codeBlock->m_numCalleeRegisters + maxFrameExtentForSlowPathCallInRegisters); 774 770 } 775 771
Note:
See TracChangeset
for help on using the changeset viewer.