Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / SystemZ / cmpxchg-05.ll
blobe9bf119d61590d7d941d9cda7b8aa315eebb2918
1 ; Test proper extension of 8-bit/16-bit cmpxchg.
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
5 ; CHECK-LABEL: f1
6 ; CHECK: crjlh
7 ; CHECK-NOT: llcr
8 ; CHECK-NOT: cr
9 ; CHECK: llgfr %r2, [[RES:%r[0-9]+]]
10 ; CHECK-NOT: llcr
11 ; CHECK-NOT: cr
12 define zeroext i8 @f1(ptr nocapture, i8 zeroext, i8 zeroext) {
13   %cx = cmpxchg ptr %0, i8 %1, i8 %2 seq_cst seq_cst
14   %res = extractvalue { i8, i1 } %cx, 0
15   ret i8 %res
18 ; CHECK-LABEL: f2
19 ; CHECK: crjlh
20 ; CHECK-NOT: llhr
21 ; CHECK-NOT: cr
22 ; CHECK: llgfr %r2, [[RES:%r[0-9]+]]
23 ; CHECK-NOT: llhr
24 ; CHECK-NOT: cr
25 define zeroext i16 @f2(ptr nocapture, i16 zeroext, i16 zeroext) {
26   %cx = cmpxchg ptr %0, i16 %1, i16 %2 seq_cst seq_cst
27   %res = extractvalue { i16, i1 } %cx, 0
28   ret i16 %res
31 ; CHECK-LABEL: f3
32 ; CHECK: crjlh
33 ; CHECK-NOT: llcr
34 ; CHECK-NOT: cr
35 ; CHECK: lgbr %r2, [[RES:%r[0-9]+]]
36 ; CHECK-NOT: llcr
37 ; CHECK-NOT: cr
38 define signext i8 @f3(ptr nocapture, i8 signext, i8 signext) {
39   %cx = cmpxchg ptr %0, i8 %1, i8 %2 seq_cst seq_cst
40   %res = extractvalue { i8, i1 } %cx, 0
41   ret i8 %res
44 ; CHECK-LABEL: f4
45 ; CHECK: crjlh
46 ; CHECK-NOT: llhr
47 ; CHECK-NOT: cr
48 ; CHECK: lghr %r2, [[RES:%r[0-9]+]]
49 ; CHECK-NOT: llhr
50 ; CHECK-NOT: cr
51 define signext i16 @f4(ptr nocapture, i16 signext, i16 signext) {
52   %cx = cmpxchg ptr %0, i16 %1, i16 %2 seq_cst seq_cst
53   %res = extractvalue { i16, i1 } %cx, 0
54   ret i16 %res