[llvm] [ADT] Add signed and unsigned mulHi and mulLo to APInt (PR #84719)

Jay Foad via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 12 02:46:23 PDT 2024


================
@@ -3094,3 +3094,19 @@ void llvm::LoadIntFromMemory(APInt &IntVal, const uint8_t *Src,
     memcpy(Dst + sizeof(uint64_t) - LoadBytes, Src, LoadBytes);
   }
 }
+
+APInt APIntOps::mulhs(const APInt &C1, const APInt &C2) {
+  assert(C1.getBitWidth() >= C2.getBitWidth());
----------------
jayfoad wrote:

Yes I'd prefer that. If the bit widths don't match then it is no longer clear (to me) what these functions are supposed to do.

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


More information about the llvm-commits mailing list