diff options
author | Chris Lattner <sabre@nondot.org> | 2005-10-24 06:22:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-10-24 06:22:12 +0000 |
commit | b53c2382a9a56e7dd210d6798e97b7aee4d9ac5d (patch) | |
tree | 9d458922f0154a0e91018dc2b9fb0c99a8f4f066 /lib/Transforms/Scalar/InstructionCombining.cpp | |
parent | b3f8397a3d92efa30203a0cd007d584f4503bef3 (diff) |
Before promoting a malloc type, remove dead uses. This makes instcombine
more effective at promoting these allocations, catching them earlier in the
compile process.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23959 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/InstructionCombining.cpp')
-rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 4c6b6a82d7..09fee7cc4b 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -3769,6 +3769,26 @@ Instruction *InstCombiner::PromoteCastOfAllocation(CastInst &CI, const PointerType *PTy = dyn_cast<PointerType>(CI.getType()); if (AI.isArrayAllocation() || !PTy) return 0; + // Remove any uses of AI that are dead. + assert(!CI.use_empty() && "Dead instructions should be removed earlier!"); + std::vector<Instruction*> DeadUsers; + for (Value::use_iterator UI = AI.use_begin(), E = AI.use_end(); UI != E; ) { + Instruction *User = cast<Instruction>(*UI++); + if (isInstructionTriviallyDead(User)) { + while (UI != E && *UI == User) + ++UI; // If this instruction uses AI more than once, don't break UI. + + // Add operands to the worklist. + AddUsesToWorkList(*User); + ++NumDeadInst; + DEBUG(std::cerr << "IC: DCE: " << *User); + + User->eraseFromParent(); + removeFromWorkList(User); + } + } + + // Finally, if the instruction now has one use, delete it. if (!AI.hasOneUse()) return 0; // Get the type really allocated and the type casted to. |