[Statepoints] Check for the "gc-leaf-function" attribute on call sites as well.
authorManuel Jacob <me@manueljacob.de>
Tue, 5 Jan 2016 23:59:08 +0000 (23:59 +0000)
committerManuel Jacob <me@manueljacob.de>
Tue, 5 Jan 2016 23:59:08 +0000 (23:59 +0000)
Reviewers: sanjoy, reames

Subscribers: sanjoy, llvm-commits

Differential Revision: http://reviews.llvm.org/D15900

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256875 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/Local.cpp
test/Transforms/PlaceSafepoints/leaf-function.ll

index 3f46c5ebf4508082a65ba5ac57a94bb8958cc210..0e386ac83e9e3f5d9495acbb1b73ac47b5dcccf9 100644 (file)
@@ -1553,8 +1553,8 @@ bool llvm::callsGCLeafFunction(ImmutableCallSite CS) {
     return true;
 
   // Check if the function is specifically marked as a gc leaf function.
-  //
-  // TODO: we should be checking the attributes on the call site as well.
+  if (CS.hasFnAttr("gc-leaf-function"))
+    return true;
   if (const Function *F = CS.getCalledFunction())
     return F->hasFnAttribute("gc-leaf-function");
 
index 5054ad8e118b73f2625e91314804e5c96c3d20b9..2f4193827ae705c48a1fa38caa7a405b77f49674 100644 (file)
@@ -1,6 +1,7 @@
 ; RUN: opt %s -S -place-safepoints | FileCheck %s
 
 declare void @foo() "gc-leaf-function"
+declare void @bar()
 
 ; Calls of functions with the "gc-leaf-function" attribute shouldn't be turned
 ; into a safepoint.  An entry safepoint should get inserted, though.
@@ -14,6 +15,16 @@ entry:
   ret void
 }
 
+define void @test_leaf_function_call() gc "statepoint-example" {
+; CHECK-LABEL: test_leaf_function_call
+; CHECK: gc.statepoint.p0f_isVoidf
+; CHECK-NOT: statepoint
+; CHECK-NOT: gc.result
+entry:
+  call void @bar() "gc-leaf-function"
+  ret void
+}
+
 ; This function is inlined when inserting a poll.
 declare void @do_safepoint()
 define void @gc.safepoint_poll() {