[llvm] [NVPTX] Improve NVVMReflect Efficiency (PR #134416)
Artem Belevich via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 4 15:59:41 PDT 2025
================
@@ -78,27 +91,51 @@ INITIALIZE_PASS(NVVMReflect, "nvvm-reflect",
"Replace occurrences of __nvvm_reflect() calls with 0/1", false,
false)
-static bool runNVVMReflect(Function &F, unsigned SmVersion) {
- if (!NVVMReflectEnabled)
- return false;
+static cl::list<std::string>
+ ReflectList("nvvm-reflect-list", cl::value_desc("name=<int>"), cl::Hidden,
+ cl::desc("A list of string=num assignments"),
+ cl::ValueRequired);
- if (F.getName() == NVVM_REFLECT_FUNCTION ||
- F.getName() == NVVM_REFLECT_OCL_FUNCTION) {
- assert(F.isDeclaration() && "_reflect function should not have a body");
- assert(F.getReturnType()->isIntegerTy() &&
- "_reflect's return type should be integer");
- return false;
+/// The command line can look as follows :
+/// -nvvm-reflect-list a=1,b=2 -nvvm-reflect-list c=3,d=0 -R e=2
+/// The strings "a=1,b=2", "c=3,d=0", "e=2" are available in the
+/// ReflectList vector. First, each of ReflectList[i] is 'split'
+/// using "," as the delimiter. Then each of this part is split
+/// using "=" as the delimiter.
----------------
Artem-B wrote:
I'd rephrase it in terms of what the option does.
E.g. "Allow users to specify additional key/value pairs to reflect. Accepts a comma-separated list of <string>=<int> pairs."
Elaborate on what happens when the user-specified value overrides the "standard" ones.
Skip the details of how the option is processed. If it's needed it should be documented in the comments next to the implementation..
https://github.com/llvm/llvm-project/pull/134416
More information about the llvm-commits
mailing list