[llvm] Clean up external users of GlobalValue::getGUID(StringRef) (PR #129644)

Teresa Johnson via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 31 09:25:18 PDT 2025


================
@@ -461,8 +461,11 @@ bool SPIRVCallLowering::lowerFormalArguments(MachineIRBuilder &MIRBuilder,
                            SPIRV::Extension::SPV_KHR_linkonce_odr)
                    ? SPIRV::LinkageType::LinkOnceODR
                    : SPIRV::LinkageType::Export);
-    buildOpDecorate(FuncVReg, MIRBuilder, SPIRV::Decoration::LinkageAttributes,
-                    {static_cast<uint32_t>(LnkTy)}, F.getGlobalIdentifier());
+    buildOpDecorate(
+        FuncVReg, MIRBuilder, SPIRV::Decoration::LinkageAttributes,
+        {static_cast<uint32_t>(LnkTy)},
+        Function::getGlobalIdentifier(F.getName(), F.getLinkage(),
----------------
teresajohnson wrote:

Can this just use F.getName() ? Not clear why they would need the global identifier with the file name. Also, I found this was added in https://reviews.llvm.org/D116464, which also added a call to getGlobalIdentifier from SPIRVInstructionSelector::selectGlobalValue, and that has since been changed to use getName().

https://github.com/llvm/llvm-project/pull/129644


More information about the llvm-commits mailing list