[PATCH] D24641: Fix NameAnonFunctions pass: for ThinLTO we need to rename global variables as well
Mehdi AMINI via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 15 18:02:56 PDT 2016
mehdi_amini updated this revision to Diff 71582.
mehdi_amini added a comment.
Handle unnamed aliases as well
https://reviews.llvm.org/D24641
Files:
lib/Transforms/Utils/NameAnonFunctions.cpp
test/Transforms/NameAnonFunctions/rename.ll
Index: test/Transforms/NameAnonFunctions/rename.ll
===================================================================
--- test/Transforms/NameAnonFunctions/rename.ll
+++ test/Transforms/NameAnonFunctions/rename.ll
@@ -11,6 +11,8 @@
ret void
}
+; CHECK: @anon.acbd18db4cc2f85cedef654fccc4a4d8.3 = global i8 0
+; CHECK: @anon.acbd18db4cc2f85cedef654fccc4a4d8.4 = alias i8, i8* @anon.acbd18db4cc2f85cedef654fccc4a4d8.3
; CHECK: define void @anon.acbd18db4cc2f85cedef654fccc4a4d8.0()
; CHECK: define void @anon.acbd18db4cc2f85cedef654fccc4a4d8.1()
; CHECK: define void @anon.acbd18db4cc2f85cedef654fccc4a4d8.2()
@@ -25,3 +27,7 @@
ret void
}
+
+ at 3 = global i8 0
+
+ at 4 = alias i8, i8 *@3
\ No newline at end of file
Index: lib/Transforms/Utils/NameAnonFunctions.cpp
===================================================================
--- lib/Transforms/Utils/NameAnonFunctions.cpp
+++ lib/Transforms/Utils/NameAnonFunctions.cpp
@@ -67,12 +67,17 @@
bool Changed = false;
ModuleHasher ModuleHash(M);
int count = 0;
- for (auto &F : M) {
- if (F.hasName())
- continue;
- F.setName(Twine("anon.") + ModuleHash.get() + "." + Twine(count++));
+ auto RenameIfNeed = [&] (GlobalValue &GV) {
+ if (GV.hasName())
+ return;
+ GV.setName(Twine("anon.") + ModuleHash.get() + "." + Twine(count++));
Changed = true;
- }
+ };
+ for (auto &GO : M.global_objects())
+ RenameIfNeed(GO);
+ for (auto &GA : M.aliases())
+ RenameIfNeed(GA);
+
return Changed;
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D24641.71582.patch
Type: text/x-patch
Size: 1507 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160916/6ac06141/attachment.bin>
More information about the llvm-commits
mailing list