2019-12-06 22:55:07 +08:00
|
|
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
|
|
|
; RUN: opt < %s -basicaa -dse -enable-dse-memoryssa -S | FileCheck %s
|
|
|
|
|
|
|
|
target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"
|
|
|
|
|
|
|
|
|
|
|
|
define void @test2(i32* noalias %P) {
|
|
|
|
; CHECK-LABEL: @test2(
|
|
|
|
; CHECK-NEXT: br i1 true, label [[BB1:%.*]], label [[BB2:%.*]]
|
|
|
|
; CHECK: bb1:
|
|
|
|
; CHECK-NEXT: br label [[BB3:%.*]]
|
|
|
|
; CHECK: bb2:
|
|
|
|
; CHECK-NEXT: br label [[BB3]]
|
|
|
|
; CHECK: bb3:
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 0, i32* [[P:%.*]], align 4
|
2019-12-06 22:55:07 +08:00
|
|
|
; CHECK-NEXT: ret void
|
|
|
|
;
|
|
|
|
store i32 1, i32* %P
|
|
|
|
br i1 true, label %bb1, label %bb2
|
|
|
|
bb1:
|
|
|
|
br label %bb3
|
|
|
|
bb2:
|
|
|
|
br label %bb3
|
|
|
|
bb3:
|
|
|
|
store i32 0, i32* %P
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test3(i32* noalias %P) {
|
|
|
|
; CHECK-LABEL: @test3(
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 0, i32* [[P:%.*]], align 4
|
2019-12-06 22:55:07 +08:00
|
|
|
; CHECK-NEXT: br i1 true, label [[BB1:%.*]], label [[BB2:%.*]]
|
|
|
|
; CHECK: bb1:
|
|
|
|
; CHECK-NEXT: br label [[BB3:%.*]]
|
|
|
|
; CHECK: bb2:
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 0, i32* [[P]], align 4
|
2019-12-06 22:55:07 +08:00
|
|
|
; CHECK-NEXT: br label [[BB3]]
|
|
|
|
; CHECK: bb3:
|
|
|
|
; CHECK-NEXT: ret void
|
|
|
|
;
|
|
|
|
store i32 0, i32* %P
|
|
|
|
br i1 true, label %bb1, label %bb2
|
|
|
|
bb1:
|
|
|
|
br label %bb3
|
|
|
|
bb2:
|
|
|
|
store i32 0, i32* %P
|
|
|
|
br label %bb3
|
|
|
|
bb3:
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
define void @test7(i32* noalias %P, i32* noalias %Q) {
|
|
|
|
; CHECK-LABEL: @test7(
|
|
|
|
; CHECK-NEXT: br i1 true, label [[BB1:%.*]], label [[BB2:%.*]]
|
|
|
|
; CHECK: bb1:
|
Infer alignment of unmarked loads in IR/bitcode parsing.
For IR generated by a compiler, this is really simple: you just take the
datalayout from the beginning of the file, and apply it to all the IR
later in the file. For optimization testcases that don't care about the
datalayout, this is also really simple: we just use the default
datalayout.
The complexity here comes from the fact that some LLVM tools allow
overriding the datalayout: some tools have an explicit flag for this,
some tools will infer a datalayout based on the code generation target.
Supporting this properly required plumbing through a bunch of new
machinery: we want to allow overriding the datalayout after the
datalayout is parsed from the file, but before we use any information
from it. Therefore, IR/bitcode parsing now has a callback to allow tools
to compute the datalayout at the appropriate time.
Not sure if I covered all the LLVM tools that want to use the callback.
(clang? lli? Misc IR manipulation tools like llvm-link?). But this is at
least enough for all the LLVM regression tests, and IR without a
datalayout is not something frontends should generate.
This change had some sort of weird effects for certain CodeGen
regression tests: if the datalayout is overridden with a datalayout with
a different program or stack address space, we now parse IR based on the
overridden datalayout, instead of the one written in the file (or the
default one, if none is specified). This broke a few AVR tests, and one
AMDGPU test.
Outside the CodeGen tests I mentioned, the test changes are all just
fixing CHECK lines and moving around datalayout lines in weird places.
Differential Revision: https://reviews.llvm.org/D78403
2020-05-15 03:59:45 +08:00
|
|
|
; CHECK-NEXT: [[TMP1:%.*]] = load i32, i32* [[P:%.*]], align 4
|
2019-12-06 22:55:07 +08:00
|
|
|
; CHECK-NEXT: br label [[BB3:%.*]]
|
|
|
|
; CHECK: bb2:
|
|
|
|
; CHECK-NEXT: br label [[BB3]]
|
|
|
|
; CHECK: bb3:
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 0, i32* [[Q:%.*]], align 4
|
|
|
|
; CHECK-NEXT: store i32 0, i32* [[P]], align 4
|
2019-12-06 22:55:07 +08:00
|
|
|
; CHECK-NEXT: ret void
|
|
|
|
;
|
|
|
|
store i32 1, i32* %Q
|
|
|
|
br i1 true, label %bb1, label %bb2
|
|
|
|
bb1:
|
|
|
|
load i32, i32* %P
|
|
|
|
br label %bb3
|
|
|
|
bb2:
|
|
|
|
br label %bb3
|
|
|
|
bb3:
|
|
|
|
store i32 0, i32* %Q
|
|
|
|
store i32 0, i32* %P
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32 @test22(i32* %P, i32* noalias %Q, i32* %R) {
|
|
|
|
; CHECK-LABEL: @test22(
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 2, i32* [[P:%.*]], align 4
|
|
|
|
; CHECK-NEXT: store i32 3, i32* [[Q:%.*]], align 4
|
Infer alignment of unmarked loads in IR/bitcode parsing.
For IR generated by a compiler, this is really simple: you just take the
datalayout from the beginning of the file, and apply it to all the IR
later in the file. For optimization testcases that don't care about the
datalayout, this is also really simple: we just use the default
datalayout.
The complexity here comes from the fact that some LLVM tools allow
overriding the datalayout: some tools have an explicit flag for this,
some tools will infer a datalayout based on the code generation target.
Supporting this properly required plumbing through a bunch of new
machinery: we want to allow overriding the datalayout after the
datalayout is parsed from the file, but before we use any information
from it. Therefore, IR/bitcode parsing now has a callback to allow tools
to compute the datalayout at the appropriate time.
Not sure if I covered all the LLVM tools that want to use the callback.
(clang? lli? Misc IR manipulation tools like llvm-link?). But this is at
least enough for all the LLVM regression tests, and IR without a
datalayout is not something frontends should generate.
This change had some sort of weird effects for certain CodeGen
regression tests: if the datalayout is overridden with a datalayout with
a different program or stack address space, we now parse IR based on the
overridden datalayout, instead of the one written in the file (or the
default one, if none is specified). This broke a few AVR tests, and one
AMDGPU test.
Outside the CodeGen tests I mentioned, the test changes are all just
fixing CHECK lines and moving around datalayout lines in weird places.
Differential Revision: https://reviews.llvm.org/D78403
2020-05-15 03:59:45 +08:00
|
|
|
; CHECK-NEXT: [[L:%.*]] = load i32, i32* [[R:%.*]], align 4
|
2019-12-06 22:55:07 +08:00
|
|
|
; CHECK-NEXT: ret i32 [[L]]
|
|
|
|
;
|
|
|
|
store i32 1, i32* %Q
|
|
|
|
store i32 2, i32* %P
|
|
|
|
store i32 3, i32* %Q
|
|
|
|
%l = load i32, i32* %R
|
|
|
|
ret i32 %l
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @test9(i32* noalias %P) {
|
|
|
|
; CHECK-LABEL: @test9(
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 0, i32* [[P:%.*]], align 4
|
2019-12-06 22:55:07 +08:00
|
|
|
; CHECK-NEXT: br i1 true, label [[BB1:%.*]], label [[BB2:%.*]]
|
|
|
|
; CHECK: bb1:
|
|
|
|
; CHECK-NEXT: br label [[BB3:%.*]]
|
|
|
|
; CHECK: bb2:
|
|
|
|
; CHECK-NEXT: ret void
|
|
|
|
; CHECK: bb3:
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 0, i32* [[P]], align 4
|
2019-12-06 22:55:07 +08:00
|
|
|
; CHECK-NEXT: ret void
|
|
|
|
;
|
|
|
|
store i32 0, i32* %P
|
|
|
|
br i1 true, label %bb1, label %bb2
|
|
|
|
bb1:
|
|
|
|
br label %bb3
|
|
|
|
bb2:
|
|
|
|
ret void
|
|
|
|
bb3:
|
|
|
|
store i32 0, i32* %P
|
|
|
|
ret void
|
|
|
|
}
|
2020-02-12 02:27:41 +08:00
|
|
|
|
|
|
|
; We cannot eliminate `store i32 0, i32* %P`, as it is read by the later load.
|
|
|
|
; Make sure that we check the uses of `store i32 1, i32* %P.1 which does not
|
|
|
|
; alias %P. Note that uses point to the *first* def that may alias.
|
|
|
|
define void @overlapping_read(i32* %P) {
|
|
|
|
; CHECK-LABEL: @overlapping_read(
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 0, i32* [[P:%.*]], align 4
|
2020-02-12 02:27:41 +08:00
|
|
|
; CHECK-NEXT: [[P_1:%.*]] = getelementptr i32, i32* [[P]], i32 1
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 1, i32* [[P_1]], align 4
|
2020-02-12 02:27:41 +08:00
|
|
|
; CHECK-NEXT: [[P_64:%.*]] = bitcast i32* [[P]] to i64*
|
Infer alignment of unmarked loads in IR/bitcode parsing.
For IR generated by a compiler, this is really simple: you just take the
datalayout from the beginning of the file, and apply it to all the IR
later in the file. For optimization testcases that don't care about the
datalayout, this is also really simple: we just use the default
datalayout.
The complexity here comes from the fact that some LLVM tools allow
overriding the datalayout: some tools have an explicit flag for this,
some tools will infer a datalayout based on the code generation target.
Supporting this properly required plumbing through a bunch of new
machinery: we want to allow overriding the datalayout after the
datalayout is parsed from the file, but before we use any information
from it. Therefore, IR/bitcode parsing now has a callback to allow tools
to compute the datalayout at the appropriate time.
Not sure if I covered all the LLVM tools that want to use the callback.
(clang? lli? Misc IR manipulation tools like llvm-link?). But this is at
least enough for all the LLVM regression tests, and IR without a
datalayout is not something frontends should generate.
This change had some sort of weird effects for certain CodeGen
regression tests: if the datalayout is overridden with a datalayout with
a different program or stack address space, we now parse IR based on the
overridden datalayout, instead of the one written in the file (or the
default one, if none is specified). This broke a few AVR tests, and one
AMDGPU test.
Outside the CodeGen tests I mentioned, the test changes are all just
fixing CHECK lines and moving around datalayout lines in weird places.
Differential Revision: https://reviews.llvm.org/D78403
2020-05-15 03:59:45 +08:00
|
|
|
; CHECK-NEXT: [[LV:%.*]] = load i64, i64* [[P_64]], align 8
|
2020-02-12 02:27:41 +08:00
|
|
|
; CHECK-NEXT: br i1 true, label [[BB1:%.*]], label [[BB2:%.*]]
|
|
|
|
; CHECK: bb1:
|
|
|
|
; CHECK-NEXT: br label [[BB3:%.*]]
|
|
|
|
; CHECK: bb2:
|
2020-03-20 15:51:29 +08:00
|
|
|
; CHECK-NEXT: br label [[BB3]]
|
2020-02-12 02:27:41 +08:00
|
|
|
; CHECK: bb3:
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 2, i32* [[P]], align 4
|
2020-02-12 02:27:41 +08:00
|
|
|
; CHECK-NEXT: ret void
|
|
|
|
;
|
|
|
|
store i32 0, i32* %P
|
|
|
|
%P.1 = getelementptr i32, i32* %P, i32 1
|
|
|
|
store i32 1, i32* %P.1
|
|
|
|
|
|
|
|
%P.64 = bitcast i32* %P to i64*
|
|
|
|
%lv = load i64, i64* %P.64
|
|
|
|
br i1 true, label %bb1, label %bb2
|
|
|
|
bb1:
|
|
|
|
br label %bb3
|
|
|
|
bb2:
|
2020-03-20 15:51:29 +08:00
|
|
|
br label %bb3
|
2020-02-12 02:27:41 +08:00
|
|
|
bb3:
|
|
|
|
store i32 2, i32* %P
|
|
|
|
ret void
|
|
|
|
}
|
2020-03-20 15:51:29 +08:00
|
|
|
|
|
|
|
define void @test10(i32* %P) {
|
|
|
|
; CHECK-LABEL: @test10(
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 0, i32* [[P:%.*]], align 4
|
2020-03-20 15:51:29 +08:00
|
|
|
; CHECK-NEXT: br i1 true, label [[BB1:%.*]], label [[BB2:%.*]]
|
|
|
|
; CHECK: bb1:
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 0, i32* [[P]], align 4
|
2020-03-20 15:51:29 +08:00
|
|
|
; CHECK-NEXT: br label [[BB3:%.*]]
|
|
|
|
; CHECK: bb2:
|
|
|
|
; CHECK-NEXT: ret void
|
|
|
|
; CHECK: bb3:
|
|
|
|
; CHECK-NEXT: ret void
|
|
|
|
;
|
|
|
|
store i32 0, i32* %P
|
|
|
|
br i1 true, label %bb1, label %bb2
|
|
|
|
bb1:
|
|
|
|
store i32 0, i32* %P
|
|
|
|
br label %bb3
|
|
|
|
bb2:
|
|
|
|
ret void
|
|
|
|
bb3:
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
define void @test11() {
|
|
|
|
; CHECK-LABEL: @test11(
|
|
|
|
; CHECK-NEXT: [[P:%.*]] = alloca i32
|
|
|
|
; CHECK-NEXT: br i1 true, label [[BB1:%.*]], label [[BB2:%.*]]
|
|
|
|
; CHECK: bb1:
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 0, i32* [[P]], align 4
|
2020-03-20 15:51:29 +08:00
|
|
|
; CHECK-NEXT: br label [[BB3:%.*]]
|
|
|
|
; CHECK: bb2:
|
|
|
|
; CHECK-NEXT: ret void
|
|
|
|
; CHECK: bb3:
|
|
|
|
; CHECK-NEXT: ret void
|
|
|
|
;
|
|
|
|
%P = alloca i32
|
|
|
|
store i32 0, i32* %P
|
|
|
|
br i1 true, label %bb1, label %bb2
|
|
|
|
bb1:
|
|
|
|
store i32 0, i32* %P
|
|
|
|
br label %bb3
|
|
|
|
bb2:
|
|
|
|
ret void
|
|
|
|
bb3:
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
define void @test12(i32* %P) {
|
|
|
|
; CHECK-LABEL: @test12(
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 0, i32* [[P:%.*]], align 4
|
2020-03-20 15:51:29 +08:00
|
|
|
; CHECK-NEXT: br i1 true, label [[BB1:%.*]], label [[BB2:%.*]]
|
|
|
|
; CHECK: bb1:
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 1, i32* [[P]], align 4
|
2020-03-20 15:51:29 +08:00
|
|
|
; CHECK-NEXT: br label [[BB3:%.*]]
|
|
|
|
; CHECK: bb2:
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 1, i32* [[P]], align 4
|
2020-03-20 15:51:29 +08:00
|
|
|
; CHECK-NEXT: ret void
|
|
|
|
; CHECK: bb3:
|
|
|
|
; CHECK-NEXT: ret void
|
|
|
|
;
|
|
|
|
store i32 0, i32* %P
|
|
|
|
br i1 true, label %bb1, label %bb2
|
|
|
|
bb1:
|
|
|
|
store i32 1, i32* %P
|
|
|
|
br label %bb3
|
|
|
|
bb2:
|
|
|
|
store i32 1, i32* %P
|
|
|
|
ret void
|
|
|
|
bb3:
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
define void @test13(i32* %P) {
|
|
|
|
; CHECK-LABEL: @test13(
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 0, i32* [[P:%.*]], align 4
|
2020-03-20 15:51:29 +08:00
|
|
|
; CHECK-NEXT: br i1 true, label [[BB1:%.*]], label [[BB2:%.*]]
|
|
|
|
; CHECK: bb1:
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 1, i32* [[P]], align 4
|
2020-03-20 15:51:29 +08:00
|
|
|
; CHECK-NEXT: br label [[BB3:%.*]]
|
|
|
|
; CHECK: bb2:
|
2020-05-15 05:48:10 +08:00
|
|
|
; CHECK-NEXT: store i32 1, i32* [[P]], align 4
|
2020-03-20 15:51:29 +08:00
|
|
|
; CHECK-NEXT: br label [[BB3]]
|
|
|
|
; CHECK: bb3:
|
|
|
|
; CHECK-NEXT: ret void
|
|
|
|
;
|
|
|
|
store i32 0, i32* %P
|
|
|
|
br i1 true, label %bb1, label %bb2
|
|
|
|
bb1:
|
|
|
|
store i32 1, i32* %P
|
|
|
|
br label %bb3
|
|
|
|
bb2:
|
|
|
|
store i32 1, i32* %P
|
|
|
|
br label %bb3
|
|
|
|
bb3:
|
|
|
|
ret void
|
|
|
|
}
|