Changeset 193649 in webkit for trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT64.cpp
- Timestamp:
- Dec 7, 2015, 2:03:48 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT64.cpp
r193606 r193649 4461 4461 4462 4462 case CheckWatchdogTimer: { 4463 ASSERT(m_jit.vm()->watchdog );4463 ASSERT(m_jit.vm()->watchdog()); 4464 4464 GPRTemporary unused(this); 4465 4465 GPRReg unusedGPR = unused.gpr(); 4466 4466 4467 4467 JITCompiler::Jump timerDidFire = m_jit.branchTest8(JITCompiler::NonZero, 4468 JITCompiler::AbsoluteAddress(m_jit.vm()->watchdog ->timerDidFireAddress()));4468 JITCompiler::AbsoluteAddress(m_jit.vm()->watchdog()->timerDidFireAddress())); 4469 4469 4470 4470 addSlowPathGenerator(slowPathCall(timerDidFire, this, operationHandleWatchdogTimer, unusedGPR));
Note:
See TracChangeset
for help on using the changeset viewer.