blob: 9bd387c33e80a7ccbe03439572e00bfb4d60529c [file] [log] [blame]
Hal Finkel2bb61ba2015-02-17 01:36:59 +00001//===---- BDCE.cpp - Bit-tracking dead code elimination -------------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Hal Finkel2bb61ba2015-02-17 01:36:59 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file implements the Bit-Tracking Dead Code Elimination pass. Some
10// instructions (shifts, some ands, ors, etc.) kill some of their input bits.
11// We track these dead bits and remove instructions that compute only these
12// dead bits.
13//
14//===----------------------------------------------------------------------===//
15
Davide Italiano655a1452016-05-25 01:57:04 +000016#include "llvm/Transforms/Scalar/BDCE.h"
Sanjay Patelfe346f92017-08-12 16:41:08 +000017#include "llvm/ADT/SmallPtrSet.h"
Hal Finkel2bb61ba2015-02-17 01:36:59 +000018#include "llvm/ADT/SmallVector.h"
19#include "llvm/ADT/Statistic.h"
James Molloy87405c72015-08-14 11:09:09 +000020#include "llvm/Analysis/DemandedBits.h"
Davide Italiano655a1452016-05-25 01:57:04 +000021#include "llvm/Analysis/GlobalsModRef.h"
David Blaikie31b98d22018-06-04 21:23:21 +000022#include "llvm/Transforms/Utils/Local.h"
Hal Finkel2bb61ba2015-02-17 01:36:59 +000023#include "llvm/IR/InstIterator.h"
24#include "llvm/IR/Instructions.h"
Hal Finkel2bb61ba2015-02-17 01:36:59 +000025#include "llvm/Pass.h"
26#include "llvm/Support/Debug.h"
27#include "llvm/Support/raw_ostream.h"
Davide Italiano655a1452016-05-25 01:57:04 +000028#include "llvm/Transforms/Scalar.h"
Hal Finkel2bb61ba2015-02-17 01:36:59 +000029using namespace llvm;
30
31#define DEBUG_TYPE "bdce"
32
33STATISTIC(NumRemoved, "Number of instructions removed (unused)");
34STATISTIC(NumSimplified, "Number of instructions trivialized (dead bits)");
35
Sanjay Patelfe346f92017-08-12 16:41:08 +000036/// If an instruction is trivialized (dead), then the chain of users of that
37/// instruction may need to be cleared of assumptions that can no longer be
38/// guaranteed correct.
39static void clearAssumptionsOfUsers(Instruction *I, DemandedBits &DB) {
Nikita Popov110cf052018-12-07 15:38:13 +000040 assert(I->getType()->isIntOrIntVectorTy() &&
41 "Trivializing a non-integer value?");
Sanjay Patelfe346f92017-08-12 16:41:08 +000042
43 // Initialize the worklist with eligible direct users.
Fangrui Songb0f764c2019-03-07 06:38:03 +000044 SmallPtrSet<Instruction *, 16> Visited;
Sanjay Patelfe346f92017-08-12 16:41:08 +000045 SmallVector<Instruction *, 16> WorkList;
46 for (User *JU : I->users()) {
Sanjay Patela1067d92017-08-14 15:13:46 +000047 // If all bits of a user are demanded, then we know that nothing below that
48 // in the def-use chain needs to be changed.
Sanjay Patelfe346f92017-08-12 16:41:08 +000049 auto *J = dyn_cast<Instruction>(JU);
Nikita Popov110cf052018-12-07 15:38:13 +000050 if (J && J->getType()->isIntOrIntVectorTy() &&
Fangrui Songb0f764c2019-03-07 06:38:03 +000051 !DB.getDemandedBits(J).isAllOnesValue()) {
52 Visited.insert(J);
Sanjay Patelfe346f92017-08-12 16:41:08 +000053 WorkList.push_back(J);
Fangrui Songb0f764c2019-03-07 06:38:03 +000054 }
Hal Finkel9e54b702017-08-16 16:09:22 +000055
Nikita Popov110cf052018-12-07 15:38:13 +000056 // Note that we need to check for non-int types above before asking for
Hal Finkel9e54b702017-08-16 16:09:22 +000057 // demanded bits. Normally, the only way to reach an instruction with an
Nikita Popov110cf052018-12-07 15:38:13 +000058 // non-int type is via an instruction that has side effects (or otherwise
Hal Finkel9e54b702017-08-16 16:09:22 +000059 // will demand its input bits). However, if we have a readnone function
60 // that returns an unsized type (e.g., void), we must avoid asking for the
61 // demanded bits of the function call's return value. A void-returning
62 // readnone function is always dead (and so we can stop walking the use/def
63 // chain here), but the check is necessary to avoid asserting.
Sanjay Patelfe346f92017-08-12 16:41:08 +000064 }
65
66 // DFS through subsequent users while tracking visits to avoid cycles.
Sanjay Patelfe346f92017-08-12 16:41:08 +000067 while (!WorkList.empty()) {
68 Instruction *J = WorkList.pop_back_val();
69
70 // NSW, NUW, and exact are based on operands that might have changed.
71 J->dropPoisonGeneratingFlags();
72
73 // We do not have to worry about llvm.assume or range metadata:
74 // 1. llvm.assume demands its operand, so trivializing can't change it.
75 // 2. range metadata only applies to memory accesses which demand all bits.
76
Sanjay Patelfe346f92017-08-12 16:41:08 +000077 for (User *KU : J->users()) {
Sanjay Patela1067d92017-08-14 15:13:46 +000078 // If all bits of a user are demanded, then we know that nothing below
79 // that in the def-use chain needs to be changed.
Sanjay Patelfe346f92017-08-12 16:41:08 +000080 auto *K = dyn_cast<Instruction>(KU);
Fangrui Songb0f764c2019-03-07 06:38:03 +000081 if (K && Visited.insert(K).second && K->getType()->isIntOrIntVectorTy() &&
Hal Finkel9e54b702017-08-16 16:09:22 +000082 !DB.getDemandedBits(K).isAllOnesValue())
Sanjay Patelfe346f92017-08-12 16:41:08 +000083 WorkList.push_back(K);
84 }
85 }
86}
87
Davide Italiano655a1452016-05-25 01:57:04 +000088static bool bitTrackingDCE(Function &F, DemandedBits &DB) {
Hal Finkel2bb61ba2015-02-17 01:36:59 +000089 SmallVector<Instruction*, 128> Worklist;
Hal Finkel2bb61ba2015-02-17 01:36:59 +000090 bool Changed = false;
Nico Rieck78199512015-08-06 19:10:45 +000091 for (Instruction &I : instructions(F)) {
Davide Italiano043e6612016-12-06 21:52:47 +000092 // If the instruction has side effects and no non-dbg uses,
Davide Italiano1ed53962016-12-07 21:47:32 +000093 // skip it. This way we avoid computing known bits on an instruction
94 // that will not help us.
Davide Italiano043e6612016-12-06 21:52:47 +000095 if (I.mayHaveSideEffects() && I.use_empty())
96 continue;
97
Nikita Popovcc6ef7f2019-01-02 20:02:14 +000098 // Remove instructions that are dead, either because they were not reached
99 // during analysis or have no demanded bits.
100 if (DB.isInstructionDead(&I) ||
101 (I.getType()->isIntOrIntVectorTy() &&
102 DB.getDemandedBits(&I).isNullValue() &&
103 wouldInstructionBeTriviallyDead(&I))) {
Nikita Popovbc9986e2019-01-01 10:05:26 +0000104 salvageDebugInfo(I);
105 Worklist.push_back(&I);
106 I.dropAllReferences();
107 Changed = true;
108 continue;
109 }
110
111 for (Use &U : I.operands()) {
112 // DemandedBits only detects dead integer uses.
113 if (!U->getType()->isIntOrIntVectorTy())
114 continue;
115
Nikita Popov6658fce2019-01-04 21:21:43 +0000116 if (!isa<Instruction>(U) && !isa<Argument>(U))
Nikita Popovbc9986e2019-01-01 10:05:26 +0000117 continue;
118
119 if (!DB.isUseDead(&U))
120 continue;
121
122 LLVM_DEBUG(dbgs() << "BDCE: Trivializing: " << U << " (all bits dead)\n");
Sanjay Patelfe346f92017-08-12 16:41:08 +0000123
124 clearAssumptionsOfUsers(&I, DB);
125
James Molloy87405c72015-08-14 11:09:09 +0000126 // FIXME: In theory we could substitute undef here instead of zero.
127 // This should be reconsidered once we settle on the semantics of
128 // undef, poison, etc.
Nikita Popovbc9986e2019-01-01 10:05:26 +0000129 U.set(ConstantInt::get(U->getType(), 0));
James Molloy87405c72015-08-14 11:09:09 +0000130 ++NumSimplified;
James Molloy87405c72015-08-14 11:09:09 +0000131 Changed = true;
Hal Finkel2bb61ba2015-02-17 01:36:59 +0000132 }
Hal Finkel2bb61ba2015-02-17 01:36:59 +0000133 }
134
135 for (Instruction *&I : Worklist) {
136 ++NumRemoved;
137 I->eraseFromParent();
138 }
139
140 return Changed;
141}
142
Davide Italiano655a1452016-05-25 01:57:04 +0000143PreservedAnalyses BDCEPass::run(Function &F, FunctionAnalysisManager &AM) {
144 auto &DB = AM.getResult<DemandedBitsAnalysis>(F);
Davide Italianobdc29712016-05-31 17:53:22 +0000145 if (!bitTrackingDCE(F, DB))
146 return PreservedAnalyses::all();
147
Chandler Carruthca68a3e2017-01-15 06:32:49 +0000148 PreservedAnalyses PA;
149 PA.preserveSet<CFGAnalyses>();
Davide Italianobdc29712016-05-31 17:53:22 +0000150 PA.preserve<GlobalsAA>();
151 return PA;
Hal Finkel2bb61ba2015-02-17 01:36:59 +0000152}
153
Davide Italiano655a1452016-05-25 01:57:04 +0000154namespace {
155struct BDCELegacyPass : public FunctionPass {
156 static char ID; // Pass identification, replacement for typeid
157 BDCELegacyPass() : FunctionPass(ID) {
158 initializeBDCELegacyPassPass(*PassRegistry::getPassRegistry());
159 }
160
161 bool runOnFunction(Function &F) override {
162 if (skipFunction(F))
163 return false;
164 auto &DB = getAnalysis<DemandedBitsWrapperPass>().getDemandedBits();
165 return bitTrackingDCE(F, DB);
166 }
167
168 void getAnalysisUsage(AnalysisUsage &AU) const override {
169 AU.setPreservesCFG();
170 AU.addRequired<DemandedBitsWrapperPass>();
171 AU.addPreserved<GlobalsAAWrapperPass>();
172 }
173};
174}
175
176char BDCELegacyPass::ID = 0;
177INITIALIZE_PASS_BEGIN(BDCELegacyPass, "bdce",
178 "Bit-Tracking Dead Code Elimination", false, false)
179INITIALIZE_PASS_DEPENDENCY(DemandedBitsWrapperPass)
180INITIALIZE_PASS_END(BDCELegacyPass, "bdce",
181 "Bit-Tracking Dead Code Elimination", false, false)
182
183FunctionPass *llvm::createBitTrackingDCEPass() { return new BDCELegacyPass(); }