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
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --function-signature --check-attributes --check-globals
; RUN: opt -aa-pipeline=basic-aa -passes=attributor -attributor-manifest-internal -attributor-max-iterations-verify -attributor-annotate-decl-cs -attributor-max-iterations=3 -S < %s | FileCheck %s --check-prefixes=CHECK,TUNIT
; RUN: opt -aa-pipeline=basic-aa -passes=attributor-cgscc -attributor-manifest-internal -attributor-annotate-decl-cs -S < %s | FileCheck %s --check-prefixes=CHECK,CGSCC
;
target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
define i32 @vec_write_0() {
; CHECK: Function Attrs: nofree norecurse nosync nounwind willreturn memory(none)
; CHECK-LABEL: define {{[^@]+}}@vec_write_0
; CHECK-SAME: () #[[ATTR0:[0-9]+]] {
; CHECK-NEXT: ret i32 0
;
%a = alloca <2 x i32>
store <2 x i32> <i32 0, i32 0>, ptr %a
%l1 = load i32, ptr %a
%g = getelementptr i32, ptr %a, i64 1
%l2 = load i32, ptr %g
%add = add i32 %l1, %l2
ret i32 %add
}
define i32 @vec_write_1() {
; CHECK: Function Attrs: nofree norecurse nosync nounwind willreturn memory(none)
; CHECK-LABEL: define {{[^@]+}}@vec_write_1
; CHECK-SAME: () #[[ATTR0]] {
; CHECK-NEXT: ret i32 10
;
%a = alloca <2 x i32>
store <2 x i32> <i32 5, i32 5>, ptr %a
%l1B = load i32, ptr %a
%g = getelementptr i32, ptr %a, i64 1
%l2B = load i32, ptr %g
%add = add i32 %l1B, %l2B
ret i32 %add
}
; TODO: We should support this.
define i32 @vec_write_2() {
; CHECK: Function Attrs: nofree norecurse nosync nounwind willreturn memory(none)
; CHECK-LABEL: define {{[^@]+}}@vec_write_2
; CHECK-SAME: () #[[ATTR0]] {
; CHECK-NEXT: [[A:%.*]] = alloca <2 x i32>, align 8
; CHECK-NEXT: store <2 x i32> <i32 3, i32 5>, ptr [[A]], align 8
; CHECK-NEXT: [[L1:%.*]] = load i32, ptr [[A]], align 8
; CHECK-NEXT: [[G:%.*]] = getelementptr i32, ptr [[A]], i64 1
; CHECK-NEXT: [[L2:%.*]] = load i32, ptr [[G]], align 4
; CHECK-NEXT: [[ADD:%.*]] = add i32 [[L1]], [[L2]]
; CHECK-NEXT: ret i32 [[ADD]]
;
%a = alloca <2 x i32>
store <2 x i32> <i32 3, i32 5>, ptr %a
%l1 = load i32, ptr %a
%g = getelementptr i32, ptr %a, i64 1
%l2 = load i32, ptr %g
%add = add i32 %l1, %l2
ret i32 %add
}
;.
; CHECK: attributes #[[ATTR0]] = { nofree norecurse nosync nounwind willreturn memory(none) }
;.
;; NOTE: These prefixes are unused and the list is autogenerated. Do not add tests below this line:
; CGSCC: {{.*}}
; TUNIT: {{.*}}
|