forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[lanai] Add areMemAccessesTriviallyDisjoint, getMemOpBaseRegImmOfs an…
…d getMemOpBaseRegImmOfsWidth. Summary: Add getMemOpBaseRegImmOfsWidth to enable determining independence during MiSched. Reviewers: eliben, majnemer Subscribers: mcrosier, llvm-commits Differential Revision: http://reviews.llvm.org/D18903 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@266338 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Showing
3 changed files
with
158 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
; RUN: llc %s -mtriple=lanai-unknown-unknown -debug-only=misched -o /dev/null 2>&1 | FileCheck %s | ||
|
||
; Make sure there are no control dependencies between memory operations that | ||
; are trivially disjoint. | ||
|
||
; Function Attrs: norecurse nounwind uwtable | ||
define i32 @foo(i8* inreg nocapture %x) { | ||
entry: | ||
%0 = bitcast i8* %x to i32* | ||
store i32 1, i32* %0, align 4 | ||
%arrayidx1 = getelementptr inbounds i8, i8* %x, i32 4 | ||
%1 = bitcast i8* %arrayidx1 to i32* | ||
store i32 2, i32* %1, align 4 | ||
%arrayidx2 = getelementptr inbounds i8, i8* %x, i32 12 | ||
%2 = bitcast i8* %arrayidx2 to i32* | ||
%3 = load i32, i32* %2, align 4 | ||
%arrayidx3 = getelementptr inbounds i8, i8* %x, i32 10 | ||
%4 = bitcast i8* %arrayidx3 to i16* | ||
store i16 3, i16* %4, align 2 | ||
%5 = bitcast i8* %arrayidx2 to i16* | ||
store i16 4, i16* %5, align 2 | ||
%arrayidx5 = getelementptr inbounds i8, i8* %x, i32 14 | ||
store i8 5, i8* %arrayidx5, align 1 | ||
%arrayidx6 = getelementptr inbounds i8, i8* %x, i32 15 | ||
store i8 6, i8* %arrayidx6, align 1 | ||
%arrayidx7 = getelementptr inbounds i8, i8* %x, i32 16 | ||
store i8 7, i8* %arrayidx7, align 1 | ||
ret i32 %3 | ||
} | ||
|
||
; CHECK-LABEL: foo | ||
; CHECK-LABEL: SU({{.*}}): SW_RI{{.*}}, 0, | ||
; CHECK: # preds left : 2 | ||
; CHECK: # succs left : 0 | ||
; CHECK-LABEL: SU({{.*}}): SW_RI{{.*}}, 4, | ||
; CHECK: # preds left : 2 | ||
; CHECK: # succs left : 0 | ||
; CHECK-LABEL: SU({{.*}}): %vreg{{.*}}<def> = LDW_RI{{.*}}, 12, | ||
; CHECK: # preds left : 1 | ||
; CHECK: # succs left : 4 | ||
; CHECK-LABEL: SU({{.*}}): STH_RI{{.*}}, 10, | ||
; CHECK: # preds left : 2 | ||
; CHECK: # succs left : 0 | ||
; CHECK-LABEL: SU({{.*}}): STH_RI{{.*}}, 12, | ||
; CHECK: # preds left : 3 | ||
; CHECK: # succs left : 0 | ||
; CHECK-LABEL: SU({{.*}}): STB_RI{{.*}}, 14, | ||
; CHECK: # preds left : 3 | ||
; CHECK: # succs left : 0 | ||
; CHECK-LABEL: SU({{.*}}): STB_RI{{.*}}, 15, | ||
; CHECK: # preds left : 3 | ||
; CHECK: # succs left : 0 | ||
; CHECK-LABEL: SU({{.*}}): STB_RI{{.*}}, 16, | ||
; CHECK: # preds left : 2 | ||
; CHECK: # succs left : 0 |