diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-12 19:40:54 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-12 19:40:54 +0000 |
commit | 1da50dc6f5e5315debc5f9eabb2a82c876974f32 (patch) | |
tree | a3de201469b3069649eb75fe2e125edba4e9991a /lib | |
parent | 03b2a616c336b0e05b527fb9408a18569350ce92 (diff) | |
download | external_llvm-1da50dc6f5e5315debc5f9eabb2a82c876974f32.tar.gz external_llvm-1da50dc6f5e5315debc5f9eabb2a82c876974f32.tar.bz2 external_llvm-1da50dc6f5e5315debc5f9eabb2a82c876974f32.zip |
add a helper function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93251 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Transforms/Utils/Local.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/Transforms/Utils/Local.cpp b/lib/Transforms/Utils/Local.cpp index 1a7d27ad45..90e929e127 100644 --- a/lib/Transforms/Utils/Local.cpp +++ b/lib/Transforms/Utils/Local.cpp @@ -335,6 +335,30 @@ llvm::RecursivelyDeleteDeadPHINode(PHINode *PN) { return Changed; } +/// SimplifyInstructionsInBlock - Scan the specified basic block and try to +/// simplify any instructions in it and recursively delete dead instructions. +/// +/// This returns true if it changed the code, note that it can delete +/// instructions in other blocks as well in this block. +bool llvm::SimplifyInstructionsInBlock(BasicBlock *BB, const TargetData *TD) { + bool MadeChange = false; + for (BasicBlock::iterator BI = BB->begin(), E = BB->end(); BI != E; ) { + Instruction *Inst = BI++; + + if (Value *V = SimplifyInstruction(Inst, TD)) { + WeakVH BIHandle(BI); + ReplaceAndSimplifyAllUses(Inst, V, TD); + MadeChange = true; + if (BIHandle == 0) + BI = BB->begin(); + continue; + } + + MadeChange |= RecursivelyDeleteTriviallyDeadInstructions(Inst); + } + return MadeChange; +} + //===----------------------------------------------------------------------===// // Control Flow Graph Restructuring. // |