[llvm] [NVPTX] improve identifier renaming for PTX (PR #79459)
Artem Belevich via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 25 11:41:52 PST 2024
================
@@ -73,10 +74,10 @@ std::string NVPTXAssignValidGlobalNames::cleanUpName(StringRef Name) {
std::string ValidName;
raw_string_ostream ValidNameStream(ValidName);
for (char C : Name) {
- if (C == '.' || C == '@' || C == '<' || C == '>') {
- ValidNameStream << "_$_";
- } else {
+ if (isAlnum(C) || C == '_' || C == '$') {
ValidNameStream << C;
+ } else {
+ ValidNameStream << "_$_";
----------------
Artem-B wrote:
> setName will add a postfix number to avoid collisions
That would make such escaping inconsistent between TUs which may be a problem for public symbols that need to match across TUs.
https://github.com/llvm/llvm-project/pull/79459
More information about the llvm-commits
mailing list