Changeset 249365 in webkit
- Timestamp:
- Sep 1, 2019, 9:31:51 AM (6 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r249362 r249365 1 2019-09-01 Mark Lam <mark.lam@apple.com> 2 3 Speculative build fix for ARMv7 and MIPS. 4 https://bugs.webkit.org/show_bug.cgi?id=201389 5 6 Not reviewed. 7 8 * bytecode/CodeBlock.cpp: 9 (JSC::CodeBlock::jettison): 10 1 11 2019-08-30 Yusuke Suzuki <ysuzuki@apple.com> 2 12 -
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r249175 r249365 2009 2009 2010 2010 VM& vm = *m_vm; 2011 2012 CODEBLOCK_LOG_EVENT(this, "jettison", ("due to ", reason, ", counting = ", mode == CountReoptimization, ", detail = ", pointerDump(detail))); 2011 2012 CodeBlock* codeBlock = this; // Placate GCC for use in CODEBLOCK_LOG_EVENT (does not like this). 2013 CODEBLOCK_LOG_EVENT(codeBlock, "jettison", ("due to ", reason, ", counting = ", mode == CountReoptimization, ", detail = ", pointerDump(detail))); 2013 2014 2014 2015 RELEASE_ASSERT(reason != Profiler::NotJettisoned);
Note:
See TracChangeset
for help on using the changeset viewer.