Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / PowerPC / lower-globaladdr32-aix-asm.ll
blob206c9b1346cbd98d76575262b663e745dd86559a
1 ; RUN: llc -verify-machineinstrs -mcpu=pwr7 -mattr=-altivec -mtriple powerpc-ibm-aix-xcoff \
2 ; RUN: -code-model=small < %s | FileCheck %s --check-prefix=SMALL
4 ; RUN: llc -verify-machineinstrs -mcpu=pwr7 -mattr=-altivec -mtriple powerpc-ibm-aix-xcoff \
5 ; RUN: -code-model=large < %s | FileCheck %s --check-prefix=LARGE
7 @a = common global i32 0
9 define i32 @test_load() {
10 entry:
11   %0 = load i32, ptr @a
12   ret i32 %0
15 ; SMALL-LABEL: .test_load:{{$}}
16 ; SMALL: lwz [[REG1:[0-9]+]], L..C0(2)
17 ; SMALL: lwz [[REG2:[0-9]+]], 0([[REG1]])
18 ; SMALL: blr
20 ; LARGE-LABEL: .test_load:{{$}}
21 ; LARGE: addis [[REG1:[0-9]+]], L..C0@u(2)
22 ; LARGE: lwz [[REG2:[0-9]+]], L..C0@l([[REG1]])
23 ; LARGE: lwz [[REG3:[0-9]+]], 0([[REG2]])
24 ; LARGE: blr
26 @b = common global i32 0
28 define void @test_store(i32 %0) {
29   store i32 %0, ptr @b
30   ret void
33 ; SMALL-LABEL: .test_store:{{$}}
34 ; SMALL: lwz [[REG1:[0-9]+]], L..C1(2)
35 ; SMALL: stw [[REG2:[0-9]+]], 0([[REG1]])
36 ; SMALL: blr
38 ; LARGE-LABEL: .test_store:{{$}}
39 ; LARGE: addis [[REG1:[0-9]+]], L..C1@u(2)
40 ; LARGE: lwz [[REG2:[0-9]+]], L..C1@l([[REG1]])
41 ; LARGE: stw [[REG3:[0-9]+]], 0([[REG2]])
42 ; LARGE: blr
44 ; SMALL: .tc a[TC],a
45 ; SMALL: .tc b[TC],b
47 ; LARGE: .tc a[TE],a
48 ; LARGE: .tc b[TE],b