1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
|
/*
* Copyright (C) 2013-2017 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 "DFGLivenessAnalysisPhase.h"
#if ENABLE(DFG_JIT)
#include "DFGBlockMapInlines.h"
#include "DFGFlowIndexing.h"
#include "DFGGraph.h"
#include "DFGPhase.h"
#include "JSCJSValueInlines.h"
#include <wtf/BitVector.h>
#include <wtf/IndexSparseSet.h>
namespace JSC { namespace DFG {
namespace {
// Uncomment this to log hashtable operations.
// static const char templateString[] = "unsigned, DefaultHash<unsigned>, WTF::UnsignedWithZeroKeyHashTraits<unsigned>";
// typedef LoggingHashSet<templateString, unsigned, DefaultHash<unsigned>, WTF::UnsignedWithZeroKeyHashTraits<unsigned>> LiveSet;
typedef UncheckedKeyHashSet<unsigned, DefaultHash<unsigned>, WTF::UnsignedWithZeroKeyHashTraits<unsigned>> LiveSet;
typedef IndexSparseSet<unsigned, DefaultIndexSparseSetTraits<unsigned>, UnsafeVectorOverflow> Workset;
class LivenessAnalysisPhase : public Phase {
public:
LivenessAnalysisPhase(Graph& graph)
: Phase(graph, "liveness analysis"_s)
, m_dirtyBlocks(m_graph.numBlocks())
, m_indexing(*m_graph.m_indexingCache)
, m_liveAtHead(m_graph)
, m_liveAtTail(m_graph)
{
m_graph.m_indexingCache->recompute();
m_workset = makeUnique<Workset>(m_graph.m_indexingCache->numIndices());
}
bool run()
{
// Start with all valid block dirty.
BlockIndex numBlock = m_graph.numBlocks();
m_dirtyBlocks.ensureSize(numBlock);
for (BlockIndex blockIndex = 0; blockIndex < numBlock; ++blockIndex) {
if (m_graph.block(blockIndex))
m_dirtyBlocks.quickSet(blockIndex);
}
// Fixpoint until we do not add any new live values at tail.
bool changed;
do {
changed = false;
for (BlockIndex blockIndex = numBlock; blockIndex--;) {
if (!m_dirtyBlocks.quickClear(blockIndex))
continue;
changed |= processBlock(blockIndex);
}
} while (changed);
// Update the per-block node list for live and tail.
for (BlockIndex blockIndex = numBlock; blockIndex--;) {
BasicBlock* block = m_graph.block(blockIndex);
if (!block)
continue;
{
block->ssa->liveAtHead = m_liveAtHead[blockIndex].map([this](auto index) {
return m_indexing.nodeProjection(index);
});
}
{
block->ssa->liveAtTail = WTF::map(m_liveAtTail[blockIndex], [this](auto index) {
return m_indexing.nodeProjection(index);
});
}
}
return true;
}
private:
bool processBlock(BlockIndex blockIndex)
{
BasicBlock* block = m_graph.block(blockIndex);
ASSERT_WITH_MESSAGE(block, "Only dirty blocks needs updates. A null block should never be dirty.");
m_workset->clear();
for (unsigned index : m_liveAtTail[blockIndex])
m_workset->add(index);
for (unsigned nodeIndex = block->size(); nodeIndex--;) {
Node* node = block->at(nodeIndex);
auto handleEdge = [&] (Edge& edge) {
bool newEntry = m_workset->add(m_indexing.index(edge.node()));
edge.setKillStatus(newEntry ? DoesKill : DoesNotKill);
};
switch (node->op()) {
case Upsilon: {
ASSERT_WITH_MESSAGE(!m_workset->contains(node->index()), "Upsilon should not be used as defs by other nodes.");
Node* phi = node->phi();
m_workset->remove(m_indexing.shadowIndex(phi));
handleEdge(node->child1());
break;
}
case Phi: {
m_workset->remove(m_indexing.index(node));
m_workset->add(m_indexing.shadowIndex(node));
break;
}
default:
m_workset->remove(m_indexing.index(node));
m_graph.doToChildren(node, handleEdge);
break;
}
}
// Update live at head.
Vector<unsigned, 0, UnsafeVectorOverflow, 1>& liveAtHead = m_liveAtHead[blockIndex];
if (m_workset->size() == liveAtHead.size())
return false;
for (unsigned liveIndexAtHead : liveAtHead)
m_workset->remove(liveIndexAtHead);
ASSERT(!m_workset->isEmpty());
liveAtHead.appendRange(m_workset->begin(), m_workset->end());
bool changedPredecessor = false;
for (BasicBlock* predecessor : block->predecessors) {
LiveSet& liveAtTail = m_liveAtTail[predecessor];
for (unsigned newValue : *m_workset) {
if (liveAtTail.add(newValue)) {
if (!m_dirtyBlocks.quickSet(predecessor->index))
changedPredecessor = true;
}
}
}
return changedPredecessor;
}
// Blocks with new live values at tail.
BitVector m_dirtyBlocks;
FlowIndexing& m_indexing;
// Live values per block edge.
BlockMap<Vector<unsigned, 0, UnsafeVectorOverflow, 1>> m_liveAtHead;
BlockMap<LiveSet> m_liveAtTail;
// Single sparse set allocated once and used by every basic block.
std::unique_ptr<Workset> m_workset;
};
} // anonymous namespace
bool performGraphPackingAndLivenessAnalysis(Graph& graph)
{
graph.packNodeIndices();
#ifndef NDEBUG
graph.clearAbstractValues();
#endif
return runPhase<LivenessAnalysisPhase>(graph);
}
} } // namespace JSC::DFG
#endif // ENABLE(DFG_JIT)
|