[llvm] [CostModel][X86] check all reduction cost kinds using -cost-kind=all (PR #132000)

via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 19 03:37:38 PDT 2025


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {undef deprecator}-->


:warning: undef deprecator found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
git diff -U0 --pickaxe-regex -S '([^a-zA-Z0-9#_-]undef[^a-zA-Z0-9_-]|UndefValue::get)' 6ca1424fc1db255627f27eb6a50c7a837e3fecb3 cc8b52092d0ac372a93b78095102fe3540dce960 llvm/test/Analysis/CostModel/X86/reduce-add.ll llvm/test/Analysis/CostModel/X86/reduce-and.ll llvm/test/Analysis/CostModel/X86/reduce-fadd.ll llvm/test/Analysis/CostModel/X86/reduce-fmax.ll llvm/test/Analysis/CostModel/X86/reduce-fmin.ll llvm/test/Analysis/CostModel/X86/reduce-fmul.ll llvm/test/Analysis/CostModel/X86/reduce-mul.ll llvm/test/Analysis/CostModel/X86/reduce-or.ll llvm/test/Analysis/CostModel/X86/reduce-smax.ll llvm/test/Analysis/CostModel/X86/reduce-smin.ll llvm/test/Analysis/CostModel/X86/reduce-umax.ll llvm/test/Analysis/CostModel/X86/reduce-umin.ll llvm/test/Analysis/CostModel/X86/reduce-xor.ll llvm/test/Analysis/CostModel/X86/reduction.ll
``````````

</details>


The following files introduce new uses of undef:
 - llvm/test/Analysis/CostModel/X86/reduce-add.ll
 - llvm/test/Analysis/CostModel/X86/reduce-and.ll
 - llvm/test/Analysis/CostModel/X86/reduce-fmax.ll
 - llvm/test/Analysis/CostModel/X86/reduce-fmin.ll
 - llvm/test/Analysis/CostModel/X86/reduce-or.ll
 - llvm/test/Analysis/CostModel/X86/reduce-xor.ll
 - llvm/test/Analysis/CostModel/X86/reduction.ll

[Undef](https://llvm.org/docs/LangRef.html#undefined-values) is now deprecated and should only be used in the rare cases where no replacement is possible. For example, a load of uninitialized memory yields `undef`. You should use `poison` values for placeholders instead.

In tests, avoid using `undef` and having tests that trigger undefined behavior. If you need an operand with some unimportant value, you can add a new argument to the function and use that instead.

For example, this is considered a bad practice:
```llvm
define void @fn() {
  ...
  br i1 undef, ...
}
```

Please use the following instead:
```llvm
define void @fn(i1 %cond) {
  ...
  br i1 %cond, ...
}
```

Please refer to the [Undefined Behavior Manual](https://llvm.org/docs/UndefinedBehavior.html) for more information.



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


More information about the llvm-commits mailing list