1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
; RUN: llc -march=hexagon < %s | FileCheck %s
target datalayout = "e-m:e-p:32:32:32-a:0-n16:32-i64:64:64-i32:32:32-i16:16:16-i1:8:8-f32:32:32-f64:64:64-v32:32:32-v64:64:64-v512:512:512-v1024:1024:1024-v2048:2048:2048"
target triple = "hexagon"
; CHECK-LABEL: test0
; CHECK: memw(r29+#{{[0-9]+}}) += #1
define void @test0() #0 {
entry:
%x = alloca i32, align 4
call void @llvm.lifetime.start.p0(i64 4, ptr %x) #3
call void @foo(ptr nonnull %x) #3
%0 = load i32, ptr %x, align 4, !tbaa !1
%inc = add nsw i32 %0, 1
store i32 %inc, ptr %x, align 4, !tbaa !1
call void @foo(ptr nonnull %x) #3
call void @llvm.lifetime.end.p0(i64 4, ptr %x) #3
ret void
}
; CHECK-LABEL: test1
; CHECK: memw(r29+#{{[0-9]+}}) -= #1
define void @test1() #0 {
entry:
%x = alloca i32, align 4
call void @llvm.lifetime.start.p0(i64 4, ptr %x) #3
call void @foo(ptr nonnull %x) #3
%0 = load i32, ptr %x, align 4, !tbaa !1
%inc = sub nsw i32 %0, 1
store i32 %inc, ptr %x, align 4, !tbaa !1
call void @foo(ptr nonnull %x) #3
call void @llvm.lifetime.end.p0(i64 4, ptr %x) #3
ret void
}
; CHECK-LABEL: test2
; CHECK: memw(r29+#{{[0-9]+}}) = setbit(#0)
define void @test2() #0 {
entry:
%x = alloca i32, align 4
call void @llvm.lifetime.start.p0(i64 4, ptr %x) #3
call void @foo(ptr nonnull %x) #3
%0 = load i32, ptr %x, align 4, !tbaa !1
%inc = or i32 %0, 1
store i32 %inc, ptr %x, align 4, !tbaa !1
call void @foo(ptr nonnull %x) #3
call void @llvm.lifetime.end.p0(i64 4, ptr %x) #3
ret void
}
; CHECK-LABEL: test3
; CHECK: memw(r29+#{{[0-9]+}}) = clrbit(#0)
define void @test3() #0 {
entry:
%x = alloca i32, align 4
call void @llvm.lifetime.start.p0(i64 4, ptr %x) #3
call void @foo(ptr nonnull %x) #3
%0 = load i32, ptr %x, align 4, !tbaa !1
%inc = and i32 %0, -2
store i32 %inc, ptr %x, align 4, !tbaa !1
call void @foo(ptr nonnull %x) #3
call void @llvm.lifetime.end.p0(i64 4, ptr %x) #3
ret void
}
; CHECK-LABEL: test4
; CHECK: memw(r29+#{{[0-9]+}}) += r
define void @test4(i32 %a) #0 {
entry:
%x = alloca i32, align 4
call void @llvm.lifetime.start.p0(i64 4, ptr %x) #3
call void @foo(ptr nonnull %x) #3
%0 = load i32, ptr %x, align 4, !tbaa !1
%inc = add nsw i32 %0, %a
store i32 %inc, ptr %x, align 4, !tbaa !1
call void @foo(ptr nonnull %x) #3
call void @llvm.lifetime.end.p0(i64 4, ptr %x) #3
ret void
}
; CHECK-LABEL: test5
; CHECK: memw(r29+#{{[0-9]+}}) -= r
define void @test5(i32 %a) #0 {
entry:
%x = alloca i32, align 4
call void @llvm.lifetime.start.p0(i64 4, ptr %x) #3
call void @foo(ptr nonnull %x) #3
%0 = load i32, ptr %x, align 4, !tbaa !1
%inc = sub nsw i32 %0, %a
store i32 %inc, ptr %x, align 4, !tbaa !1
call void @foo(ptr nonnull %x) #3
call void @llvm.lifetime.end.p0(i64 4, ptr %x) #3
ret void
}
; CHECK-LABEL: test6
; CHECK: memw(r29+#{{[0-9]+}}) |= r
define void @test6(i32 %a) #0 {
entry:
%x = alloca i32, align 4
call void @llvm.lifetime.start.p0(i64 4, ptr %x) #3
call void @foo(ptr nonnull %x) #3
%0 = load i32, ptr %x, align 4, !tbaa !1
%inc = or i32 %0, %a
store i32 %inc, ptr %x, align 4, !tbaa !1
call void @foo(ptr nonnull %x) #3
call void @llvm.lifetime.end.p0(i64 4, ptr %x) #3
ret void
}
; CHECK-LABEL: test7
; CHECK: memw(r29+#{{[0-9]+}}) &= r
define void @test7(i32 %a) #0 {
entry:
%x = alloca i32, align 4
call void @llvm.lifetime.start.p0(i64 4, ptr %x) #3
call void @foo(ptr nonnull %x) #3
%0 = load i32, ptr %x, align 4, !tbaa !1
%inc = and i32 %0, %a
store i32 %inc, ptr %x, align 4, !tbaa !1
call void @foo(ptr nonnull %x) #3
call void @llvm.lifetime.end.p0(i64 4, ptr %x) #3
ret void
}
declare void @foo(ptr) #2
declare void @llvm.lifetime.start.p0(i64, ptr nocapture) #1
declare void @llvm.lifetime.end.p0(i64, ptr nocapture) #1
attributes #0 = { nounwind "disable-tail-calls"="false" "less-precise-fpmad"="false" "frame-pointer"="all" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="hexagonv60" "target-features"="+hvx,+hvx-length64b" "unsafe-fp-math"="false" "use-soft-float"="false" }
attributes #1 = { argmemonly nounwind }
attributes #2 = { "disable-tail-calls"="false" "less-precise-fpmad"="false" "frame-pointer"="all" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="hexagonv60" "target-features"="+hvx,+hvx-length64b" "unsafe-fp-math"="false" "use-soft-float"="false" }
attributes #3 = { nounwind }
!1 = !{!2, !2, i64 0}
!2 = !{!"int", !3, i64 0}
!3 = !{!"omnipotent char", !4, i64 0}
!4 = !{!"Simple C/C++ TBAA"}
|