diff options
author | Konstantin Tokarev <annulen@yandex.ru> | 2016-08-25 19:20:41 +0300 |
---|---|---|
committer | Konstantin Tokarev <annulen@yandex.ru> | 2017-02-02 12:30:55 +0000 |
commit | 6882a04fb36642862b11efe514251d32070c3d65 (patch) | |
tree | b7959826000b061fd5ccc7512035c7478742f7b0 /Source/JavaScriptCore/dfg/DFGOSRExit.cpp | |
parent | ab6df191029eeeb0b0f16f127d553265659f739e (diff) | |
download | qtwebkit-6882a04fb36642862b11efe514251d32070c3d65.tar.gz |
Imported QtWebKit TP3 (git b57bc6801f1876c3220d5a4bfea33d620d477443)
Change-Id: I3b1d8a2808782c9f34d50240000e20cb38d3680f
Reviewed-by: Konstantin Tokarev <annulen@yandex.ru>
Diffstat (limited to 'Source/JavaScriptCore/dfg/DFGOSRExit.cpp')
-rw-r--r-- | Source/JavaScriptCore/dfg/DFGOSRExit.cpp | 40 |
1 files changed, 14 insertions, 26 deletions
diff --git a/Source/JavaScriptCore/dfg/DFGOSRExit.cpp b/Source/JavaScriptCore/dfg/DFGOSRExit.cpp index ac085ec06..b95d4093e 100644 --- a/Source/JavaScriptCore/dfg/DFGOSRExit.cpp +++ b/Source/JavaScriptCore/dfg/DFGOSRExit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2011 Apple Inc. All rights reserved. + * Copyright (C) 2011, 2013 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -28,26 +28,28 @@ #if ENABLE(DFG_JIT) -#include "DFGAssemblyHelpers.h" +#include "AssemblyHelpers.h" +#include "DFGGraph.h" +#include "DFGMayExit.h" #include "DFGSpeculativeJIT.h" -#include "JSCellInlines.h" +#include "JSCInlines.h" namespace JSC { namespace DFG { OSRExit::OSRExit(ExitKind kind, JSValueSource jsValueSource, MethodOfGettingAValueProfile valueProfile, SpeculativeJIT* jit, unsigned streamIndex, unsigned recoveryIndex) - : m_jsValueSource(jsValueSource) + : OSRExitBase(kind, jit->m_origin.forExit, jit->m_origin.semantic) + , m_jsValueSource(jsValueSource) , m_valueProfile(valueProfile) , m_patchableCodeOffset(0) - , m_codeOrigin(jit->m_codeOriginForOSR) - , m_codeOriginForExitProfile(m_codeOrigin) , m_recoveryIndex(recoveryIndex) - , m_watchpointIndex(std::numeric_limits<unsigned>::max()) - , m_kind(kind) - , m_count(0) , m_streamIndex(streamIndex) - , m_lastSetOperand(jit->m_lastSetOperand) { - ASSERT(m_codeOrigin.isSet()); + bool canExit = jit->m_origin.exitOK; + if (!canExit && jit->m_currentNode) { + ExitMode exitMode = mayExit(jit->m_jit.graph(), jit->m_currentNode); + canExit = exitMode == ExitMode::Exits || exitMode == ExitMode::ExitsForExceptions; + } + DFG_ASSERT(jit->m_jit.graph(), jit->m_currentNode, canExit); } void OSRExit::setPatchableCodeOffset(MacroAssembler::PatchableJump check) @@ -62,7 +64,7 @@ MacroAssembler::Jump OSRExit::getPatchableCodeOffsetAsJump() const CodeLocationJump OSRExit::codeLocationForRepatch(CodeBlock* dfgCodeBlock) const { - return CodeLocationJump(dfgCodeBlock->getJITCode().dataAddressAtOffset(m_patchableCodeOffset)); + return CodeLocationJump(dfgCodeBlock->jitCode()->dataAddressAtOffset(m_patchableCodeOffset)); } void OSRExit::correctJump(LinkBuffer& linkBuffer) @@ -72,20 +74,6 @@ void OSRExit::correctJump(LinkBuffer& linkBuffer) m_patchableCodeOffset = linkBuffer.offsetOf(label); } -bool OSRExit::considerAddingAsFrequentExitSiteSlow(CodeBlock* profiledCodeBlock) -{ - FrequentExitSite exitSite; - - if (m_kind == ArgumentsEscaped) { - // Count this one globally. It doesn't matter where in the code block the arguments excaped; - // the fact that they did is not associated with any particular instruction. - exitSite = FrequentExitSite(m_kind); - } else - exitSite = FrequentExitSite(m_codeOriginForExitProfile.bytecodeIndex, m_kind); - - return baselineCodeBlockForOriginAndBaselineCodeBlock(m_codeOriginForExitProfile, profiledCodeBlock)->addFrequentExitSite(exitSite); -} - } } // namespace JSC::DFG #endif // ENABLE(DFG_JIT) |