xref: /llvm-project/llvm/test/CodeGen/Hexagon/store1.ll (revision 2208c97c1bec2512d4e47b6223db6d95a7037956)
1; RUN: llc -mtriple=hexagon < %s | FileCheck %s
2;
3; Check that the immediate form for the store instructions are generated.
4;
5; CHECK: memw(r{{[0-9]+}}+#156) = #0
6; CHECK: memw(r{{[0-9]+}}+#160) = ##g0+144
7; CHECK: memw(r{{[0-9]+}}+#172) = ##f3
8
9%s.0 = type { [156 x i8], ptr, ptr, i8, ptr, ptr, i8 }
10
11@g0 = common global %s.0 zeroinitializer, align 4
12
13; Function Attrs: nounwind
14define void @f0(ptr %a0) #0 {
15b0:
16  %v0 = getelementptr inbounds %s.0, ptr %a0, i32 0, i32 1
17  store ptr null, ptr %v0, align 4
18  ret void
19}
20
21; Function Attrs: nounwind
22define void @f1(ptr %a0) #0 {
23b0:
24  %v0 = getelementptr inbounds %s.0, ptr %a0, i32 0, i32 2
25  store ptr getelementptr inbounds (%s.0, ptr @g0, i32 0, i32 0, i32 144), ptr %v0, align 4
26  ret void
27}
28
29; Function Attrs: nounwind
30define void @f2(ptr %a0) #0 {
31b0:
32  %v0 = getelementptr inbounds %s.0, ptr %a0, i32 0, i32 5
33  store ptr @f3, ptr %v0, align 4
34  ret void
35}
36
37declare void @f3(ptr)
38
39attributes #0 = { nounwind }
40