[PATCH] D52537: Allow null-valued function operands in getCalledFunction()

David Stenberg via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 1 07:05:13 PDT 2018


dstenb updated this revision to Diff 167728.
dstenb retitled this revision from "Ignore dropped call operands when allocating MD slot numbers" to "Allow null-valued function operands in getCalledFunction()".
dstenb edited the summary of this revision.
dstenb added a reviewer: hfinkel.
dstenb added a comment.

- Changed so that getCalledFunction() allows null valued operands.
- Rewrote the test case to a unit test.


https://reviews.llvm.org/D52537

Files:
  include/llvm/IR/Instructions.h
  unittests/IR/MetadataTest.cpp


Index: unittests/IR/MetadataTest.cpp
===================================================================
--- unittests/IR/MetadataTest.cpp
+++ unittests/IR/MetadataTest.cpp
@@ -402,6 +402,27 @@
   EXPECT_PRINTER_EQ("metadata !0", MAV0->printAsOperand(OS, true, MST));
   EXPECT_PRINTER_EQ("metadata !1", MAV1->printAsOperand(OS, true, MST));
 }
+
+TEST_F(MDNodeTest, PrintWithDroppedCallOperand) {
+  Module M("test", Context);
+
+  auto *FTy = FunctionType::get(Type::getVoidTy(Context), false);
+  auto *F0 = Function::Create(FTy, GlobalValue::ExternalLinkage, "F0", &M);
+  auto *F1 = Function::Create(FTy, GlobalValue::ExternalLinkage, "F1", &M);
+  auto *BB0 = BasicBlock::Create(Context, "entry", F0);
+
+  CallInst *CI0 = CallInst::Create(F1, "", BB0);
+  CI0->dropAllReferences();
+
+  auto *R0 = ReturnInst::Create(Context, BB0);
+  auto *N0 = MDNode::getDistinct(Context, None);
+  R0->setMetadata("md", N0);
+
+  // Printing the metadata node would previously result in a failed assertion
+  // due to the call instruction's dropped function operand.
+  ModuleSlotTracker MST(&M);
+  EXPECT_PRINTER_EQ("!0 = distinct !{}", N0->print(OS, MST));
+}
 #undef EXPECT_PRINTER_EQ
 
 TEST_F(MDNodeTest, NullOperand) {
Index: include/llvm/IR/Instructions.h
===================================================================
--- include/llvm/IR/Instructions.h
+++ include/llvm/IR/Instructions.h
@@ -1523,7 +1523,7 @@
   /// indirect function invocation.
   ///
   Function *getCalledFunction() const {
-    return dyn_cast<Function>(Op<-InstTy::ArgOffset>());
+    return dyn_cast_or_null<Function>(Op<-InstTy::ArgOffset>());
   }
 
   /// Determine whether this call has the given attribute.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D52537.167728.patch
Type: text/x-patch
Size: 1695 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20181001/6db03b54/attachment.bin>


More information about the llvm-commits mailing list