summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2007-09-01 02:00:51 +0000
committerEvan Cheng <evan.cheng@apple.com>2007-09-01 02:00:51 +0000
commit4e9c473c4d9e0e93da67d6a0e20227e5a1e16543 (patch)
tree6dee4698affb94b4ac5b849f0723c80fd0c8aeea
parente15c2db9935eee66a8008f1bd09882aff2ed3aae (diff)
downloadllvm-4e9c473c4d9e0e93da67d6a0e20227e5a1e16543.tar.gz
llvm-4e9c473c4d9e0e93da67d6a0e20227e5a1e16543.tar.bz2
llvm-4e9c473c4d9e0e93da67d6a0e20227e5a1e16543.tar.xz
Fix a gcroot lowering bug.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41668 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Transforms/Scalar/LowerGC.cpp7
-rw-r--r--test/CodeGen/Generic/GC/lower_gcroot.ll10
2 files changed, 15 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/LowerGC.cpp b/lib/Transforms/Scalar/LowerGC.cpp
index e1576845dc..0da1d9199b 100644
--- a/lib/Transforms/Scalar/LowerGC.cpp
+++ b/lib/Transforms/Scalar/LowerGC.cpp
@@ -262,7 +262,7 @@ bool LowerGC::runOnFunction(Function &F) {
cast<PointerType>(GCRootInt->getFunctionType()->getParamType(0));
Constant *Null = ConstantPointerNull::get(PtrLocTy);
- // Initialize all of the gcroot records now, and eliminate them as we go.
+ // Initialize all of the gcroot records now.
for (unsigned i = 0, e = GCRoots.size(); i != e; ++i) {
// Initialize the meta-data pointer.
Par[2] = ConstantInt::get(Type::Int32Ty, i);
@@ -282,7 +282,6 @@ bool LowerGC::runOnFunction(Function &F) {
new StoreInst(Constant::getNullValue(PtrLocTy->getElementType()),
GCRoots[i]->getOperand(1), GCRoots[i]);
new StoreInst(GCRoots[i]->getOperand(1), RootPtrPtr, GCRoots[i]);
- GCRoots[i]->getParent()->getInstList().erase(GCRoots[i]);
}
// Now that the record is all initialized, store the pointer into the global
@@ -290,6 +289,10 @@ bool LowerGC::runOnFunction(Function &F) {
Value *C = new BitCastInst(AI, PointerType::get(MainRootRecordType), "", IP);
new StoreInst(C, RootChain, IP);
+ // Eliminate all the gcroot records now.
+ for (unsigned i = 0, e = GCRoots.size(); i != e; ++i)
+ GCRoots[i]->getParent()->getInstList().erase(GCRoots[i]);
+
// On exit from the function we have to remove the entry from the GC root
// chain. Doing this is straight-forward for return and unwind instructions:
// just insert the appropriate copy.
diff --git a/test/CodeGen/Generic/GC/lower_gcroot.ll b/test/CodeGen/Generic/GC/lower_gcroot.ll
new file mode 100644
index 0000000000..3a3abac258
--- /dev/null
+++ b/test/CodeGen/Generic/GC/lower_gcroot.ll
@@ -0,0 +1,10 @@
+; RUN: llvm-as < %s | llc
+
+ %Env = type opaque*
+
+define void @.main(%Env) {
+ call void @llvm.gcroot( %Env* null, %Env null )
+ unreachable
+}
+
+declare void @llvm.gcroot(%Env*, %Env)