summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/dfg/DFGStackLayoutPhase.cpp
diff options
context:
space:
mode:
authorKonstantin Tokarev <annulen@yandex.ru>2016-08-25 19:20:41 +0300
committerKonstantin Tokarev <annulen@yandex.ru>2017-02-02 12:30:55 +0000
commit6882a04fb36642862b11efe514251d32070c3d65 (patch)
treeb7959826000b061fd5ccc7512035c7478742f7b0 /Source/JavaScriptCore/dfg/DFGStackLayoutPhase.cpp
parentab6df191029eeeb0b0f16f127d553265659f739e (diff)
downloadqtwebkit-6882a04fb36642862b11efe514251d32070c3d65.tar.gz
Imported QtWebKit TP3 (git b57bc6801f1876c3220d5a4bfea33d620d477443)
Change-Id: I3b1d8a2808782c9f34d50240000e20cb38d3680f Reviewed-by: Konstantin Tokarev <annulen@yandex.ru>
Diffstat (limited to 'Source/JavaScriptCore/dfg/DFGStackLayoutPhase.cpp')
-rw-r--r--Source/JavaScriptCore/dfg/DFGStackLayoutPhase.cpp271
1 files changed, 271 insertions, 0 deletions
diff --git a/Source/JavaScriptCore/dfg/DFGStackLayoutPhase.cpp b/Source/JavaScriptCore/dfg/DFGStackLayoutPhase.cpp
new file mode 100644
index 000000000..09fe995e3
--- /dev/null
+++ b/Source/JavaScriptCore/dfg/DFGStackLayoutPhase.cpp
@@ -0,0 +1,271 @@
+/*
+ * Copyright (C) 2013, 2015 Apple Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
+ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
+ * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include "config.h"
+#include "DFGStackLayoutPhase.h"
+
+#if ENABLE(DFG_JIT)
+
+#include "DFGGraph.h"
+#include "DFGPhase.h"
+#include "DFGValueSource.h"
+#include "JSCInlines.h"
+
+namespace JSC { namespace DFG {
+
+class StackLayoutPhase : public Phase {
+ static const bool verbose = false;
+
+public:
+ StackLayoutPhase(Graph& graph)
+ : Phase(graph, "stack layout")
+ {
+ }
+
+ bool run()
+ {
+ // This enumerates the locals that we actually care about and packs them. So for example
+ // if we use local 1, 3, 4, 5, 7, then we remap them: 1->0, 3->1, 4->2, 5->3, 7->4. We
+ // treat a variable as being "used" if there exists an access to it (SetLocal, GetLocal,
+ // Flush, PhantomLocal).
+
+ BitVector usedLocals;
+
+ // Collect those variables that are used from IR.
+ bool hasNodesThatNeedFixup = false;
+ for (BlockIndex blockIndex = m_graph.numBlocks(); blockIndex--;) {
+ BasicBlock* block = m_graph.block(blockIndex);
+ if (!block)
+ continue;
+ for (unsigned nodeIndex = block->size(); nodeIndex--;) {
+ Node* node = block->at(nodeIndex);
+ switch (node->op()) {
+ case GetLocal:
+ case SetLocal:
+ case Flush:
+ case PhantomLocal: {
+ VariableAccessData* variable = node->variableAccessData();
+ if (variable->local().isArgument())
+ break;
+ usedLocals.set(variable->local().toLocal());
+ break;
+ }
+
+ case GetLocalUnlinked: {
+ VirtualRegister operand = node->unlinkedLocal();
+ if (operand.isArgument())
+ break;
+ usedLocals.set(operand.toLocal());
+ hasNodesThatNeedFixup = true;
+ break;
+ }
+
+ case LoadVarargs:
+ case ForwardVarargs: {
+ LoadVarargsData* data = node->loadVarargsData();
+ if (data->count.isLocal())
+ usedLocals.set(data->count.toLocal());
+ if (data->start.isLocal()) {
+ // This part really relies on the contiguity of stack layout
+ // assignments.
+ ASSERT(VirtualRegister(data->start.offset() + data->limit - 1).isLocal());
+ for (unsigned i = data->limit; i--;)
+ usedLocals.set(VirtualRegister(data->start.offset() + i).toLocal());
+ } // the else case shouldn't happen.
+ hasNodesThatNeedFixup = true;
+ break;
+ }
+
+ case PutStack:
+ case GetStack: {
+ StackAccessData* stack = node->stackAccessData();
+ if (stack->local.isArgument())
+ break;
+ usedLocals.set(stack->local.toLocal());
+ break;
+ }
+
+ default:
+ break;
+ }
+ }
+ }
+
+ for (InlineCallFrameSet::iterator iter = m_graph.m_plan.inlineCallFrames->begin(); !!iter; ++iter) {
+ InlineCallFrame* inlineCallFrame = *iter;
+
+ if (inlineCallFrame->isVarargs()) {
+ usedLocals.set(VirtualRegister(
+ JSStack::ArgumentCount + inlineCallFrame->stackOffset).toLocal());
+ }
+
+ for (unsigned argument = inlineCallFrame->arguments.size(); argument-- > 1;) {
+ usedLocals.set(VirtualRegister(
+ virtualRegisterForArgument(argument).offset() +
+ inlineCallFrame->stackOffset).toLocal());
+ }
+ }
+
+ Vector<unsigned> allocation(usedLocals.size());
+ m_graph.m_nextMachineLocal = codeBlock()->calleeSaveSpaceAsVirtualRegisters();
+ for (unsigned i = 0; i < usedLocals.size(); ++i) {
+ if (!usedLocals.get(i)) {
+ allocation[i] = UINT_MAX;
+ continue;
+ }
+
+ allocation[i] = m_graph.m_nextMachineLocal++;
+ }
+
+ for (unsigned i = m_graph.m_variableAccessData.size(); i--;) {
+ VariableAccessData* variable = &m_graph.m_variableAccessData[i];
+ if (!variable->isRoot())
+ continue;
+
+ if (variable->local().isArgument()) {
+ variable->machineLocal() = variable->local();
+ continue;
+ }
+
+ size_t local = variable->local().toLocal();
+ if (local >= allocation.size())
+ continue;
+
+ if (allocation[local] == UINT_MAX)
+ continue;
+
+ variable->machineLocal() = assign(allocation, variable->local());
+ }
+
+ for (StackAccessData* data : m_graph.m_stackAccessData) {
+ if (!data->local.isLocal()) {
+ data->machineLocal = data->local;
+ continue;
+ }
+
+ if (static_cast<size_t>(data->local.toLocal()) >= allocation.size())
+ continue;
+ if (allocation[data->local.toLocal()] == UINT_MAX)
+ continue;
+
+ data->machineLocal = assign(allocation, data->local);
+ }
+
+ if (LIKELY(!m_graph.hasDebuggerEnabled()))
+ codeBlock()->setScopeRegister(VirtualRegister());
+ else
+ codeBlock()->setScopeRegister(assign(allocation, codeBlock()->scopeRegister()));
+
+ for (unsigned i = m_graph.m_inlineVariableData.size(); i--;) {
+ InlineVariableData data = m_graph.m_inlineVariableData[i];
+ InlineCallFrame* inlineCallFrame = data.inlineCallFrame;
+
+ if (inlineCallFrame->isVarargs()) {
+ inlineCallFrame->argumentCountRegister = assign(
+ allocation, VirtualRegister(inlineCallFrame->stackOffset + JSStack::ArgumentCount));
+ }
+
+ for (unsigned argument = inlineCallFrame->arguments.size(); argument-- > 1;) {
+ ArgumentPosition& position = m_graph.m_argumentPositions[
+ data.argumentPositionStart + argument];
+ VariableAccessData* variable = position.someVariable();
+ ValueSource source;
+ if (!variable)
+ source = ValueSource(SourceIsDead);
+ else {
+ source = ValueSource::forFlushFormat(
+ variable->machineLocal(), variable->flushFormat());
+ }
+ inlineCallFrame->arguments[argument] = source.valueRecovery();
+ }
+
+ RELEASE_ASSERT(inlineCallFrame->isClosureCall == !!data.calleeVariable);
+ if (inlineCallFrame->isClosureCall) {
+ VariableAccessData* variable = data.calleeVariable->find();
+ ValueSource source = ValueSource::forFlushFormat(
+ variable->machineLocal(),
+ variable->flushFormat());
+ inlineCallFrame->calleeRecovery = source.valueRecovery();
+ } else
+ RELEASE_ASSERT(inlineCallFrame->calleeRecovery.isConstant());
+ }
+
+ // Fix GetLocalUnlinked's variable references.
+ if (hasNodesThatNeedFixup) {
+ for (BlockIndex blockIndex = m_graph.numBlocks(); blockIndex--;) {
+ BasicBlock* block = m_graph.block(blockIndex);
+ if (!block)
+ continue;
+ for (unsigned nodeIndex = block->size(); nodeIndex--;) {
+ Node* node = block->at(nodeIndex);
+ switch (node->op()) {
+ case GetLocalUnlinked: {
+ node->setUnlinkedMachineLocal(assign(allocation, node->unlinkedLocal()));
+ break;
+ }
+
+ case LoadVarargs:
+ case ForwardVarargs: {
+ LoadVarargsData* data = node->loadVarargsData();
+ data->machineCount = assign(allocation, data->count);
+ data->machineStart = assign(allocation, data->start);
+ break;
+ }
+
+ default:
+ break;
+ }
+ }
+ }
+ }
+
+ return true;
+ }
+
+private:
+ VirtualRegister assign(const Vector<unsigned>& allocation, VirtualRegister src)
+ {
+ VirtualRegister result = src;
+ if (result.isLocal()) {
+ unsigned myAllocation = allocation[result.toLocal()];
+ if (myAllocation == UINT_MAX)
+ result = VirtualRegister();
+ else
+ result = virtualRegisterForLocal(myAllocation);
+ }
+ return result;
+ }
+};
+
+bool performStackLayout(Graph& graph)
+{
+ SamplingRegion samplingRegion("DFG Stack Layout Phase");
+ return runPhase<StackLayoutPhase>(graph);
+}
+
+} } // namespace JSC::DFG
+
+#endif // ENABLE(DFG_JIT)
+