diff options
author | Chad Rosier <mcrosier@codeaurora.org> | 2014-09-08 14:43:48 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@codeaurora.org> | 2014-09-08 14:43:48 +0000 |
commit | 3528c1e4c66d9f4bb090a263392129b711d3a3fa (patch) | |
tree | b0c681b71b42f9051f05dc0212328606fd154004 /llvm/test/CodeGen/AArch64/arm64-triv-disjoint-mem-access.ll | |
parent | c9f947744df63449c170def213e32c29edae3206 (diff) | |
download | bcm5719-llvm-3528c1e4c66d9f4bb090a263392129b711d3a3fa.tar.gz bcm5719-llvm-3528c1e4c66d9f4bb090a263392129b711d3a3fa.zip |
[AArch64] Improve AA to remove unneeded edges in the AA MI scheduling graph.
Patch by Sanjin Sijaric <ssijaric@codeaurora.org>!
Phabricator Review: http://reviews.llvm.org/D5103
llvm-svn: 217371
Diffstat (limited to 'llvm/test/CodeGen/AArch64/arm64-triv-disjoint-mem-access.ll')
-rw-r--r-- | llvm/test/CodeGen/AArch64/arm64-triv-disjoint-mem-access.ll | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/AArch64/arm64-triv-disjoint-mem-access.ll b/llvm/test/CodeGen/AArch64/arm64-triv-disjoint-mem-access.ll new file mode 100644 index 00000000000..a7f52159e51 --- /dev/null +++ b/llvm/test/CodeGen/AArch64/arm64-triv-disjoint-mem-access.ll @@ -0,0 +1,31 @@ +; RUN: llc < %s -mtriple=arm64-linux-gnu -mcpu=cortex-a53 -enable-aa-sched-mi | FileCheck %s +; Check that the scheduler moves the load from a[1] past the store into a[2]. +@a = common global i32* null, align 8 +@m = common global i32 0, align 4 + +; Function Attrs: nounwind +define i32 @func(i32 %i, i32 %j, i32 %k) #0 { +entry: +; CHECK: ldr {{w[0-9]+}}, [x[[REG:[0-9]+]], #4] +; CHECK: str {{w[0-9]+}}, [x[[REG]], #8] + %0 = load i32** @a, align 8, !tbaa !1 + %arrayidx = getelementptr inbounds i32* %0, i64 2 + store i32 %i, i32* %arrayidx, align 4, !tbaa !5 + %arrayidx1 = getelementptr inbounds i32* %0, i64 1 + %1 = load i32* %arrayidx1, align 4, !tbaa !5 + %add = add nsw i32 %k, %i + store i32 %add, i32* @m, align 4, !tbaa !5 + ret i32 %1 +} + +attributes #0 = { nounwind "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="true" "no-nans-fp-math"="true" "stack-protector-buffer-size"="8" "unsafe-fp-math"="true" "use-soft-float"="false" } + +!llvm.ident = !{!0} + +!0 = metadata !{metadata !"clang version 3.6.0 "} +!1 = metadata !{metadata !2, metadata !2, i64 0} +!2 = metadata !{metadata !"any pointer", metadata !3, i64 0} +!3 = metadata !{metadata !"omnipotent char", metadata !4, i64 0} +!4 = metadata !{metadata !"Simple C/C++ TBAA"} +!5 = metadata !{metadata !6, metadata !6, i64 0} +!6 = metadata !{metadata !"int", metadata !3, i64 0} |