[llvm] [AMDGPU] MCExpr printing helper with KnownBits support (PR #95951)

Janek van Oirschot via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 13 11:04:35 PDT 2024


================
@@ -303,3 +305,360 @@ const AMDGPUMCExpr *AMDGPUMCExpr::createOccupancy(unsigned InitOcc,
                  CreateExpr(InitOcc), NumSGPRs, NumVGPRs},
                 Ctx);
 }
+
+static KnownBits fromOptionalToKnownBits(std::optional<bool> CompareResult) {
+  const unsigned BitWidth = 64;
+  const APInt True(BitWidth, 1, /*isSigned=*/false);
+  const APInt False(BitWidth, 0, /*isSigned=*/false);
+  if (CompareResult) {
+    return *CompareResult ? KnownBits::makeConstant(True)
+                          : KnownBits::makeConstant(False);
----------------
JanekvO wrote:

`KnownBits::makeConstant` doesn't support direct boolean values as arguments, unfortunately

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


More information about the llvm-commits mailing list