[LLVM][IR] Use splat syntax when printing ConstantExpr based splats. (#116856)
[llvm-project.git] / clang / test / CodeGenHIP / spirv-amdgcn-dpp-const-fold.hip
blob71270bc1c68d8a72f43feae08de6456dda250fea
1 // RUN: %clang_cc1 -triple spirv64-amd-amdhsa -x hip -fcuda-is-device -emit-llvm %s \
2 // RUN:   -o - | FileCheck %s
4 constexpr static int OpCtrl()
6     return 15 + 1;
9 constexpr static int RowMask()
11     return 3 + 1;
14 constexpr static int BankMask()
16     return 2 + 1;
19 constexpr static bool BountCtrl()
21     return true & false;
24 // CHECK: call{{.*}} i32 @llvm.amdgcn.update.dpp.i32(i32 %0, i32 %1, i32 16, i32 0, i32 0, i1 false)
25 __attribute__((global)) void test_update_dpp_const_fold_imm_operand_2(int* out, int a, int b)
27   *out = __builtin_amdgcn_update_dpp(a, b, OpCtrl(), 0, 0, false);
30 // CHECK: call{{.*}} i32 @llvm.amdgcn.update.dpp.i32(i32 %0, i32 %1, i32 0, i32 4, i32 0, i1 false)
31 __attribute__((global)) void test_update_dpp_const_fold_imm_operand_3(int* out, int a, int b)
33   *out = __builtin_amdgcn_update_dpp(a, b, 0, RowMask(), 0, false);
36 // CHECK: call{{.*}} i32 @llvm.amdgcn.update.dpp.i32(i32 %0, i32 %1, i32 0, i32 0, i32 3, i1 false)
37 __attribute__((global)) void test_update_dpp_const_fold_imm_operand_4(int* out, int a, int b)
39   *out = __builtin_amdgcn_update_dpp(a, b, 0, 0, BankMask(), false);
42 // CHECK: call{{.*}} i32 @llvm.amdgcn.update.dpp.i32(i32 %0, i32 %1, i32 0, i32 0, i32 0, i1 false)
43 __attribute__((global)) void test_update_dpp_const_fold_imm_operand_5(int* out, int a, int b)
45   *out = __builtin_amdgcn_update_dpp(a, b, 0, 0, 0, BountCtrl());