[llvm] [LLVM][InstCombine][SVE] Refactor sve.mul/fmul combines. (PR #134116)
Sander de Smalen via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 3 00:23:02 PDT 2025
================
@@ -1112,6 +1112,19 @@ struct SVEIntrinsicInfo {
return *this;
}
+ bool hasMatchingIROpode() const { return IROpcode != 0; }
+
+ unsigned getMatchingIROpode() const {
+ assert(hasMatchingIROpode() && "Propery not set!");
+ return IROpcode;
+ }
+
+ SVEIntrinsicInfo &setMatchingIROpcode(unsigned Opcode) {
+ assert(!hasMatchingIROpode() && "Cannot set property twice!");
----------------
sdesmalen-arm wrote:
nit: I'm not sure I see the value of this assert, as I could imagine a use-case for someone wanting override a previously set opcode?
https://github.com/llvm/llvm-project/pull/134116
More information about the llvm-commits
mailing list