[llvm] [InstSimplify] Add constant folding support for `ucmp`/`scmp` intrinsics (PR #93730)
Thorsten Schütt via llvm-commits
llvm-commits at lists.llvm.org
Wed May 29 13:11:57 PDT 2024
================
@@ -2764,6 +2766,33 @@ static Constant *ConstantFoldIntrinsicCall2(Intrinsic::ID IntrinsicID, Type *Ty,
? *C0
: *C1);
+ case Intrinsic::scmp:
+ case Intrinsic::ucmp:
+ if (isa<PoisonValue>(Operands[0]) || isa<PoisonValue>(Operands[1]))
+ return PoisonValue::get(Ty);
+
+ if (!C0 || !C1)
+ return UndefValue::get(Ty);
+
+ if (ICmpInst::compare(*C0, *C1,
+ IntrinsicID == Intrinsic::scmp
+ ? ICmpInst::ICMP_SLT
+ : ICmpInst::ICMP_ULT)) {
+ return ConstantInt::get(Ty, -1, true);
+ }
+ if (ICmpInst::compare(*C0, *C1, ICmpInst::ICMP_EQ)) {
+ return ConstantInt::get(Ty, 0);
----------------
tschuett wrote:
No curly braces around single statements. They are not necessary.
https://github.com/llvm/llvm-project/pull/93730
More information about the llvm-commits
mailing list