[PATCH] D24023: AMDGPU/SI: Handle aliases in AMDGPUAlwaysInlinePass

Nikolay Haustov via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 31 04:26:54 PDT 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL280221: AMDGPU/SI: Handle aliases in AMDGPUAlwaysInlinePass (authored by nhaustov).

Changed prior to commit:
  https://reviews.llvm.org/D24023?vs=69660&id=69825#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D24023

Files:
  llvm/trunk/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
  llvm/trunk/test/CodeGen/AMDGPU/inline-calls.ll

Index: llvm/trunk/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
===================================================================
--- llvm/trunk/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
+++ llvm/trunk/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
@@ -35,8 +35,20 @@
 char AMDGPUAlwaysInline::ID = 0;
 
 bool AMDGPUAlwaysInline::runOnModule(Module &M) {
+  std::vector<GlobalAlias*> AliasesToRemove;
   std::vector<Function *> FuncsToClone;
 
+  for (GlobalAlias &A : M.aliases()) {
+    if (Function* F = dyn_cast<Function>(A.getAliasee())) {
+      A.replaceAllUsesWith(F);
+      AliasesToRemove.push_back(&A);
+    }
+  }
+
+  for (GlobalAlias* A : AliasesToRemove) {
+    A->eraseFromParent();
+  }
+
   for (Function &F : M) {
     if (!F.hasLocalLinkage() && !F.isDeclaration() && !F.use_empty() &&
         !F.hasFnAttribute(Attribute::NoInline))
Index: llvm/trunk/test/CodeGen/AMDGPU/inline-calls.ll
===================================================================
--- llvm/trunk/test/CodeGen/AMDGPU/inline-calls.ll
+++ llvm/trunk/test/CodeGen/AMDGPU/inline-calls.ll
@@ -10,16 +10,41 @@
 }
 
 ; CHECK: {{^}}kernel:
+; CHECK-NOT: call
 define void @kernel(i32 addrspace(1)* %out) {
 entry:
   %tmp0 = call i32 @func(i32 1)
   store i32 %tmp0, i32 addrspace(1)* %out
   ret void
 }
 
 ; CHECK: {{^}}kernel2:
+; CHECK-NOT: call
 define void @kernel2(i32 addrspace(1)* %out) {
 entry:
   call void @kernel(i32 addrspace(1)* %out)
   ret void
 }
+
+; CHECK-NOT: func_alias
+ at func_alias = alias i32 (i32), i32 (i32)* @func
+
+; CHECK: {{^}}kernel3:
+; CHECK-NOT: call
+define void @kernel3(i32 addrspace(1)* %out) {
+entry:
+  %tmp0 = call i32 @func_alias(i32 1)
+  store i32 %tmp0, i32 addrspace(1)* %out
+  ret void
+}
+
+; CHECK-NOT: kernel_alias
+ at kernel_alias = alias void (i32 addrspace(1)*), void (i32 addrspace(1)*)* @kernel
+
+; CHECK: {{^}}kernel4:
+; CHECK-NOT: call
+define void @kernel4(i32 addrspace(1)* %out) {
+entry:
+  call void @kernel_alias(i32 addrspace(1)* %out)
+  ret void
+}


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D24023.69825.patch
Type: text/x-patch
Size: 2009 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160831/26832406/attachment.bin>


More information about the llvm-commits mailing list