mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
Fix bug raising allocations whose call sites were invoke instructions.
Thanks to brg for tracking down the problem so precisely! llvm-svn: 8568
This commit is contained in:
parent
8502d4f3f8
commit
13c224fd17
@ -9,6 +9,7 @@
|
||||
#include "llvm/Module.h"
|
||||
#include "llvm/DerivedTypes.h"
|
||||
#include "llvm/iMemory.h"
|
||||
#include "llvm/iTerminators.h"
|
||||
#include "llvm/iOther.h"
|
||||
#include "llvm/Pass.h"
|
||||
#include "llvm/Support/CallSite.h"
|
||||
@ -130,6 +131,13 @@ bool RaiseAllocations::run(Module &M) {
|
||||
std::string Name(I->getName()); I->setName("");
|
||||
MallocInst *MI = new MallocInst(Type::SByteTy, Source, Name, I);
|
||||
I->replaceAllUsesWith(MI);
|
||||
|
||||
// If the old instruction was an invoke, add an unconditional branch
|
||||
// before the invoke, which will become the new terminator.
|
||||
if (InvokeInst *II = dyn_cast<InvokeInst>(I))
|
||||
new BranchInst(II->getNormalDest(), I);
|
||||
|
||||
// Delete the old call site
|
||||
MI->getParent()->getInstList().erase(I);
|
||||
Changed = true;
|
||||
++NumRaised;
|
||||
@ -160,6 +168,13 @@ bool RaiseAllocations::run(Module &M) {
|
||||
Source = new CastInst(Source, PointerType::get(Type::SByteTy),
|
||||
"FreePtrCast", I);
|
||||
new FreeInst(Source, I);
|
||||
|
||||
// If the old instruction was an invoke, add an unconditional branch
|
||||
// before the invoke, which will become the new terminator.
|
||||
if (InvokeInst *II = dyn_cast<InvokeInst>(I))
|
||||
new BranchInst(II->getNormalDest(), I);
|
||||
|
||||
// Delete the old call site
|
||||
I->getParent()->getInstList().erase(I);
|
||||
Changed = true;
|
||||
++NumRaised;
|
||||
|
Loading…
x
Reference in New Issue
Block a user