blob: bbd65f17528baaeec3ec2497995f47a72ad9333c [file] [log] [blame]
Duncan Sands69fdf872010-12-20 21:07:42 +00001//===------ SimplifyInstructions.cpp - Remove redundant instructions ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This is a utility pass used for testing the InstructionSimplify analysis.
11// The analysis is applied to every instruction, and if it simplifies then the
12// instruction is replaced by the simplification. If you are looking for a pass
13// that performs serious instruction folding, use the instcombine pass instead.
14//
15//===----------------------------------------------------------------------===//
16
17#define DEBUG_TYPE "instsimplify"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000018#include "llvm/Transforms/Scalar.h"
Duncan Sands8a3d29c2010-12-31 17:49:05 +000019#include "llvm/ADT/DepthFirstIterator.h"
Duncan Sandsdc615e42011-01-03 10:50:04 +000020#include "llvm/ADT/SmallPtrSet.h"
Duncan Sands69fdf872010-12-20 21:07:42 +000021#include "llvm/ADT/Statistic.h"
Duncan Sands69fdf872010-12-20 21:07:42 +000022#include "llvm/Analysis/InstructionSimplify.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000023#include "llvm/IR/DataLayout.h"
Stephen Hines36b56882014-04-23 16:57:46 -070024#include "llvm/IR/Dominators.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000025#include "llvm/IR/Function.h"
26#include "llvm/IR/Type.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000027#include "llvm/Pass.h"
Chad Rosier618c1db2011-12-01 03:08:23 +000028#include "llvm/Target/TargetLibraryInfo.h"
Duncan Sandse95cc252010-12-21 16:12:03 +000029#include "llvm/Transforms/Utils/Local.h"
Duncan Sands69fdf872010-12-20 21:07:42 +000030using namespace llvm;
31
32STATISTIC(NumSimplified, "Number of redundant instructions removed");
33
34namespace {
35 struct InstSimplifier : public FunctionPass {
36 static char ID; // Pass identification, replacement for typeid
37 InstSimplifier() : FunctionPass(ID) {
38 initializeInstSimplifierPass(*PassRegistry::getPassRegistry());
39 }
40
Stephen Hines36b56882014-04-23 16:57:46 -070041 void getAnalysisUsage(AnalysisUsage &AU) const override {
Duncan Sands69fdf872010-12-20 21:07:42 +000042 AU.setPreservesCFG();
Chad Rosier618c1db2011-12-01 03:08:23 +000043 AU.addRequired<TargetLibraryInfo>();
Duncan Sands69fdf872010-12-20 21:07:42 +000044 }
45
46 /// runOnFunction - Remove instructions that simplify.
Stephen Hines36b56882014-04-23 16:57:46 -070047 bool runOnFunction(Function &F) override {
48 const DominatorTreeWrapperPass *DTWP =
49 getAnalysisIfAvailable<DominatorTreeWrapperPass>();
50 const DominatorTree *DT = DTWP ? &DTWP->getDomTree() : 0;
51 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
52 const DataLayout *DL = DLP ? &DLP->getDataLayout() : 0;
Chad Rosier618c1db2011-12-01 03:08:23 +000053 const TargetLibraryInfo *TLI = &getAnalysis<TargetLibraryInfo>();
Duncan Sandsdc615e42011-01-03 10:50:04 +000054 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2;
Duncan Sandse95cc252010-12-21 16:12:03 +000055 bool Changed = false;
56
Duncan Sands8a3d29c2010-12-31 17:49:05 +000057 do {
Duncan Sands8a3d29c2010-12-31 17:49:05 +000058 for (df_iterator<BasicBlock*> DI = df_begin(&F.getEntryBlock()),
59 DE = df_end(&F.getEntryBlock()); DI != DE; ++DI)
60 for (BasicBlock::iterator BI = DI->begin(), BE = DI->end(); BI != BE;) {
61 Instruction *I = BI++;
Duncan Sandsdc615e42011-01-03 10:50:04 +000062 // The first time through the loop ToSimplify is empty and we try to
63 // simplify all instructions. On later iterations ToSimplify is not
64 // empty and we only bother simplifying instructions that are in it.
65 if (!ToSimplify->empty() && !ToSimplify->count(I))
66 continue;
67 // Don't waste time simplifying unused instructions.
Duncan Sands8a3d29c2010-12-31 17:49:05 +000068 if (!I->use_empty())
Stephen Hines36b56882014-04-23 16:57:46 -070069 if (Value *V = SimplifyInstruction(I, DL, TLI, DT)) {
Duncan Sandsdc615e42011-01-03 10:50:04 +000070 // Mark all uses for resimplification next time round the loop.
Stephen Hines36b56882014-04-23 16:57:46 -070071 for (User *U : I->users())
72 Next->insert(cast<Instruction>(U));
Duncan Sands8a3d29c2010-12-31 17:49:05 +000073 I->replaceAllUsesWith(V);
Duncan Sands8a3d29c2010-12-31 17:49:05 +000074 ++NumSimplified;
Duncan Sandsdc615e42011-01-03 10:50:04 +000075 Changed = true;
Duncan Sands8a3d29c2010-12-31 17:49:05 +000076 }
Benjamin Kramer8e0d1c02012-08-29 15:32:21 +000077 Changed |= RecursivelyDeleteTriviallyDeadInstructions(I, TLI);
Duncan Sands69fdf872010-12-20 21:07:42 +000078 }
Duncan Sandse95cc252010-12-21 16:12:03 +000079
Duncan Sandsdc615e42011-01-03 10:50:04 +000080 // Place the list of instructions to simplify on the next loop iteration
81 // into ToSimplify.
82 std::swap(ToSimplify, Next);
83 Next->clear();
84 } while (!ToSimplify->empty());
Duncan Sands1cd0f4632010-12-21 17:08:55 +000085
Duncan Sands69fdf872010-12-20 21:07:42 +000086 return Changed;
87 }
88 };
89}
90
91char InstSimplifier::ID = 0;
Chad Rosier618c1db2011-12-01 03:08:23 +000092INITIALIZE_PASS_BEGIN(InstSimplifier, "instsimplify",
93 "Remove redundant instructions", false, false)
94INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfo)
95INITIALIZE_PASS_END(InstSimplifier, "instsimplify",
96 "Remove redundant instructions", false, false)
Duncan Sands69fdf872010-12-20 21:07:42 +000097char &llvm::InstructionSimplifierID = InstSimplifier::ID;
98
99// Public interface to the simplify instructions pass.
100FunctionPass *llvm::createInstructionSimplifierPass() {
101 return new InstSimplifier();
102}