2016-01-12 18:01:16 +01:00
|
|
|
//===--- RDFDeadCode.cpp --------------------------------------------------===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2016-01-12 18:01:16 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// RDF-based generic dead code elimination.
|
|
|
|
|
2017-06-06 13:49:48 +02:00
|
|
|
#include "RDFDeadCode.h"
|
2016-01-12 18:01:16 +01:00
|
|
|
|
|
|
|
#include "llvm/ADT/SetVector.h"
|
|
|
|
#include "llvm/CodeGen/MachineBasicBlock.h"
|
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
2020-03-17 19:45:11 +01:00
|
|
|
#include "llvm/CodeGen/RDFGraph.h"
|
|
|
|
#include "llvm/CodeGen/RDFLiveness.h"
|
2019-10-19 02:22:07 +02:00
|
|
|
#include "llvm/Support/Debug.h"
|
2016-01-12 18:01:16 +01:00
|
|
|
|
2016-01-18 21:42:47 +01:00
|
|
|
#include <queue>
|
|
|
|
|
2016-01-12 18:01:16 +01:00
|
|
|
using namespace llvm;
|
|
|
|
using namespace rdf;
|
|
|
|
|
2016-01-18 21:42:47 +01:00
|
|
|
// This drastically improves execution time in "collect" over using
|
|
|
|
// SetVector as a work queue, and popping the first element from it.
|
|
|
|
template<typename T> struct DeadCodeElimination::SetQueue {
|
|
|
|
SetQueue() : Set(), Queue() {}
|
|
|
|
|
|
|
|
bool empty() const {
|
|
|
|
return Queue.empty();
|
|
|
|
}
|
|
|
|
T pop_front() {
|
|
|
|
T V = Queue.front();
|
|
|
|
Queue.pop();
|
|
|
|
Set.erase(V);
|
|
|
|
return V;
|
|
|
|
}
|
|
|
|
void push_back(T V) {
|
|
|
|
if (Set.count(V))
|
|
|
|
return;
|
|
|
|
Queue.push(V);
|
|
|
|
Set.insert(V);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
DenseSet<T> Set;
|
|
|
|
std::queue<T> Queue;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-01-12 18:01:16 +01:00
|
|
|
// Check if the given instruction has observable side-effects, i.e. if
|
|
|
|
// it should be considered "live". It is safe for this function to be
|
|
|
|
// overly conservative (i.e. return "true" for all instructions), but it
|
|
|
|
// is not safe to return "false" for an instruction that should not be
|
|
|
|
// considered removable.
|
|
|
|
bool DeadCodeElimination::isLiveInstr(const MachineInstr *MI) const {
|
|
|
|
if (MI->mayStore() || MI->isBranch() || MI->isCall() || MI->isReturn())
|
|
|
|
return true;
|
2017-11-21 22:05:51 +01:00
|
|
|
if (MI->hasOrderedMemoryRef() || MI->hasUnmodeledSideEffects() ||
|
|
|
|
MI->isPosition())
|
2016-01-12 18:01:16 +01:00
|
|
|
return true;
|
|
|
|
if (MI->isPHI())
|
|
|
|
return false;
|
2017-02-17 23:14:51 +01:00
|
|
|
for (auto &Op : MI->operands()) {
|
2016-01-12 18:01:16 +01:00
|
|
|
if (Op.isReg() && MRI.isReserved(Op.getReg()))
|
|
|
|
return true;
|
2017-02-17 23:14:51 +01:00
|
|
|
if (Op.isRegMask()) {
|
|
|
|
const uint32_t *BM = Op.getRegMask();
|
|
|
|
for (unsigned R = 0, RN = DFG.getTRI().getNumRegs(); R != RN; ++R) {
|
|
|
|
if (BM[R/32] & (1u << (R%32)))
|
|
|
|
continue;
|
|
|
|
if (MRI.isReserved(R))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-01-12 18:01:16 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DeadCodeElimination::scanInstr(NodeAddr<InstrNode*> IA,
|
2016-01-18 21:42:47 +01:00
|
|
|
SetQueue<NodeId> &WorkQ) {
|
2016-01-12 18:01:16 +01:00
|
|
|
if (!DFG.IsCode<NodeAttrs::Stmt>(IA))
|
|
|
|
return;
|
|
|
|
if (!isLiveInstr(NodeAddr<StmtNode*>(IA).Addr->getCode()))
|
|
|
|
return;
|
|
|
|
for (NodeAddr<RefNode*> RA : IA.Addr->members(DFG)) {
|
|
|
|
if (!LiveNodes.count(RA.Id))
|
2016-01-18 21:42:47 +01:00
|
|
|
WorkQ.push_back(RA.Id);
|
2016-01-12 18:01:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DeadCodeElimination::processDef(NodeAddr<DefNode*> DA,
|
2016-01-18 21:42:47 +01:00
|
|
|
SetQueue<NodeId> &WorkQ) {
|
2016-01-12 18:01:16 +01:00
|
|
|
NodeAddr<InstrNode*> IA = DA.Addr->getOwner(DFG);
|
|
|
|
for (NodeAddr<UseNode*> UA : IA.Addr->members_if(DFG.IsUse, DFG)) {
|
|
|
|
if (!LiveNodes.count(UA.Id))
|
2016-01-18 21:42:47 +01:00
|
|
|
WorkQ.push_back(UA.Id);
|
2016-01-12 18:01:16 +01:00
|
|
|
}
|
|
|
|
for (NodeAddr<DefNode*> TA : DFG.getRelatedRefs(IA, DA))
|
|
|
|
LiveNodes.insert(TA.Id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DeadCodeElimination::processUse(NodeAddr<UseNode*> UA,
|
2016-01-18 21:42:47 +01:00
|
|
|
SetQueue<NodeId> &WorkQ) {
|
2016-01-12 18:01:16 +01:00
|
|
|
for (NodeAddr<DefNode*> DA : LV.getAllReachingDefs(UA)) {
|
|
|
|
if (!LiveNodes.count(DA.Id))
|
2016-01-18 21:42:47 +01:00
|
|
|
WorkQ.push_back(DA.Id);
|
2016-01-12 18:01:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Traverse the DFG and collect the set dead RefNodes and the set of
|
|
|
|
// dead instructions. Return "true" if any of these sets is non-empty,
|
|
|
|
// "false" otherwise.
|
|
|
|
bool DeadCodeElimination::collect() {
|
|
|
|
// This function works by first finding all live nodes. The dead nodes
|
|
|
|
// are then the complement of the set of live nodes.
|
|
|
|
//
|
|
|
|
// Assume that all nodes are dead. Identify instructions which must be
|
|
|
|
// considered live, i.e. instructions with observable side-effects, such
|
|
|
|
// as calls and stores. All arguments of such instructions are considered
|
|
|
|
// live. For each live def, all operands used in the corresponding
|
|
|
|
// instruction are considered live. For each live use, all its reaching
|
|
|
|
// defs are considered live.
|
|
|
|
LiveNodes.clear();
|
2016-01-18 21:42:47 +01:00
|
|
|
SetQueue<NodeId> WorkQ;
|
2016-01-12 18:01:16 +01:00
|
|
|
for (NodeAddr<BlockNode*> BA : DFG.getFunc().Addr->members(DFG))
|
|
|
|
for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG))
|
|
|
|
scanInstr(IA, WorkQ);
|
|
|
|
|
|
|
|
while (!WorkQ.empty()) {
|
2016-01-18 21:42:47 +01:00
|
|
|
NodeId N = WorkQ.pop_front();
|
2016-01-12 18:01:16 +01:00
|
|
|
LiveNodes.insert(N);
|
|
|
|
auto RA = DFG.addr<RefNode*>(N);
|
|
|
|
if (DFG.IsDef(RA))
|
|
|
|
processDef(RA, WorkQ);
|
|
|
|
else
|
|
|
|
processUse(RA, WorkQ);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (trace()) {
|
|
|
|
dbgs() << "Live nodes:\n";
|
|
|
|
for (NodeId N : LiveNodes) {
|
|
|
|
auto RA = DFG.addr<RefNode*>(N);
|
|
|
|
dbgs() << PrintNode<RefNode*>(RA, DFG) << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto IsDead = [this] (NodeAddr<InstrNode*> IA) -> bool {
|
|
|
|
for (NodeAddr<DefNode*> DA : IA.Addr->members_if(DFG.IsDef, DFG))
|
|
|
|
if (LiveNodes.count(DA.Id))
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
for (NodeAddr<BlockNode*> BA : DFG.getFunc().Addr->members(DFG)) {
|
|
|
|
for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG)) {
|
|
|
|
for (NodeAddr<RefNode*> RA : IA.Addr->members(DFG))
|
|
|
|
if (!LiveNodes.count(RA.Id))
|
|
|
|
DeadNodes.insert(RA.Id);
|
|
|
|
if (DFG.IsCode<NodeAttrs::Stmt>(IA))
|
|
|
|
if (isLiveInstr(NodeAddr<StmtNode*>(IA).Addr->getCode()))
|
|
|
|
continue;
|
|
|
|
if (IsDead(IA)) {
|
|
|
|
DeadInstrs.insert(IA.Id);
|
|
|
|
if (trace())
|
|
|
|
dbgs() << "Dead instr: " << PrintNode<InstrNode*>(IA, DFG) << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return !DeadNodes.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Erase the nodes given in the Nodes set from DFG. In addition to removing
|
|
|
|
// them from the DFG, if a node corresponds to a statement, the corresponding
|
|
|
|
// machine instruction is erased from the function.
|
|
|
|
bool DeadCodeElimination::erase(const SetVector<NodeId> &Nodes) {
|
|
|
|
if (Nodes.empty())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Prepare the actual set of ref nodes to remove: ref nodes from Nodes
|
|
|
|
// are included directly, for each InstrNode in Nodes, include the set
|
|
|
|
// of all RefNodes from it.
|
|
|
|
NodeList DRNs, DINs;
|
|
|
|
for (auto I : Nodes) {
|
|
|
|
auto BA = DFG.addr<NodeBase*>(I);
|
|
|
|
uint16_t Type = BA.Addr->getType();
|
|
|
|
if (Type == NodeAttrs::Ref) {
|
|
|
|
DRNs.push_back(DFG.addr<RefNode*>(I));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If it's a code node, add all ref nodes from it.
|
|
|
|
uint16_t Kind = BA.Addr->getKind();
|
|
|
|
if (Kind == NodeAttrs::Stmt || Kind == NodeAttrs::Phi) {
|
2021-01-24 21:18:55 +01:00
|
|
|
append_range(DRNs, NodeAddr<CodeNode*>(BA).Addr->members(DFG));
|
2016-01-12 18:01:16 +01:00
|
|
|
DINs.push_back(DFG.addr<InstrNode*>(I));
|
|
|
|
} else {
|
|
|
|
llvm_unreachable("Unexpected code node");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sort the list so that use nodes are removed first. This makes the
|
|
|
|
// "unlink" functions a bit faster.
|
|
|
|
auto UsesFirst = [] (NodeAddr<RefNode*> A, NodeAddr<RefNode*> B) -> bool {
|
|
|
|
uint16_t KindA = A.Addr->getKind(), KindB = B.Addr->getKind();
|
|
|
|
if (KindA == NodeAttrs::Use && KindB == NodeAttrs::Def)
|
|
|
|
return true;
|
|
|
|
if (KindA == NodeAttrs::Def && KindB == NodeAttrs::Use)
|
|
|
|
return false;
|
|
|
|
return A.Id < B.Id;
|
|
|
|
};
|
llvm::sort(C.begin(), C.end(), ...) -> llvm::sort(C, ...)
Summary: The convenience wrapper in STLExtras is available since rL342102.
Reviewers: dblaikie, javed.absar, JDevlieghere, andreadb
Subscribers: MatzeB, sanjoy, arsenm, dschuff, mehdi_amini, sdardis, nemanjai, jvesely, nhaehnle, sbc100, jgravelle-google, eraman, aheejin, kbarton, JDevlieghere, javed.absar, gbedwell, jrtc27, mgrang, atanasyan, steven_wu, george.burgess.iv, dexonsmith, kristina, jsji, llvm-commits
Differential Revision: https://reviews.llvm.org/D52573
llvm-svn: 343163
2018-09-27 04:13:45 +02:00
|
|
|
llvm::sort(DRNs, UsesFirst);
|
2016-01-12 18:01:16 +01:00
|
|
|
|
|
|
|
if (trace())
|
|
|
|
dbgs() << "Removing dead ref nodes:\n";
|
|
|
|
for (NodeAddr<RefNode*> RA : DRNs) {
|
|
|
|
if (trace())
|
|
|
|
dbgs() << " " << PrintNode<RefNode*>(RA, DFG) << '\n';
|
|
|
|
if (DFG.IsUse(RA))
|
2016-01-18 21:41:34 +01:00
|
|
|
DFG.unlinkUse(RA, true);
|
2016-01-12 18:01:16 +01:00
|
|
|
else if (DFG.IsDef(RA))
|
2016-01-18 21:41:34 +01:00
|
|
|
DFG.unlinkDef(RA, true);
|
2016-01-12 18:01:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Now, remove all dead instruction nodes.
|
|
|
|
for (NodeAddr<InstrNode*> IA : DINs) {
|
|
|
|
NodeAddr<BlockNode*> BA = IA.Addr->getOwner(DFG);
|
|
|
|
BA.Addr->removeMember(IA, DFG);
|
|
|
|
if (!DFG.IsCode<NodeAttrs::Stmt>(IA))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
MachineInstr *MI = NodeAddr<StmtNode*>(IA).Addr->getCode();
|
|
|
|
if (trace())
|
|
|
|
dbgs() << "erasing: " << *MI;
|
|
|
|
MI->eraseFromParent();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|