[PATCH] D145282: [LLParser] Error out if a name is too long and gets renamed
Arthur Eubanks via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 6 15:44:14 PST 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG24a08593b946: [LLParser] Error out if a name is too long and gets renamed (authored by aeubanks).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D145282/new/
https://reviews.llvm.org/D145282
Files:
llvm/lib/AsmParser/LLParser.cpp
llvm/test/Assembler/non-global-value-max-name-size.ll
Index: llvm/test/Assembler/non-global-value-max-name-size.ll
===================================================================
--- llvm/test/Assembler/non-global-value-max-name-size.ll
+++ llvm/test/Assembler/non-global-value-max-name-size.ll
@@ -1,10 +1,15 @@
-; RUN: opt < %s -S -non-global-value-max-name-size=4
-; Test that local value name lookup works if the name is capped
+; RUN: opt < %s -S -non-global-value-max-name-size=5
+; RUN: not opt < %s -S -non-global-value-max-name-size=4 2>&1 | FileCheck %s
+
+; CHECK: name is too long
define void @f() {
bb0:
br label %testz
testz:
+ br label %testa
+
+testa:
br label %testz
}
Index: llvm/lib/AsmParser/LLParser.cpp
===================================================================
--- llvm/lib/AsmParser/LLParser.cpp
+++ llvm/lib/AsmParser/LLParser.cpp
@@ -3330,6 +3330,12 @@
} else {
FwdVal = new Argument(Ty, Name);
}
+ if (FwdVal->getName() != Name) {
+ P.error(Loc, "name is too long which can result in name collisions, "
+ "consider making the name shorter or "
+ "increasing -non-global-value-max-name-size");
+ return nullptr;
+ }
ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
return FwdVal;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D145282.502838.patch
Type: text/x-patch
Size: 1242 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230306/dfc03d1f/attachment.bin>
More information about the llvm-commits
mailing list