2020-07-20 03:55:43 +08:00
|
|
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --function-signature --scrub-attributes --check-attributes
|
2020-07-29 08:57:21 +08:00
|
|
|
; RUN: opt -attributor -enable-new-pm=0 -attributor-manifest-internal -attributor-max-iterations-verify -attributor-annotate-decl-cs -attributor-max-iterations=3 -S < %s | FileCheck %s --check-prefixes=CHECK,NOT_CGSCC_NPM,NOT_CGSCC_OPM,NOT_TUNIT_NPM,IS__TUNIT____,IS________OPM,IS__TUNIT_OPM
|
2020-05-12 01:20:27 +08:00
|
|
|
; 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,NOT_CGSCC_OPM,NOT_CGSCC_NPM,NOT_TUNIT_OPM,IS__TUNIT____,IS________NPM,IS__TUNIT_NPM
|
2020-07-29 08:57:21 +08:00
|
|
|
; RUN: opt -attributor-cgscc -enable-new-pm=0 -attributor-manifest-internal -attributor-annotate-decl-cs -S < %s | FileCheck %s --check-prefixes=CHECK,NOT_TUNIT_NPM,NOT_TUNIT_OPM,NOT_CGSCC_NPM,IS__CGSCC____,IS________OPM,IS__CGSCC_OPM
|
2020-04-18 10:09:16 +08:00
|
|
|
; RUN: opt -aa-pipeline=basic-aa -passes=attributor-cgscc -attributor-manifest-internal -attributor-annotate-decl-cs -S < %s | FileCheck %s --check-prefixes=CHECK,NOT_TUNIT_NPM,NOT_TUNIT_OPM,NOT_CGSCC_OPM,IS__CGSCC____,IS________NPM,IS__CGSCC_NPM
|
2019-11-02 12:37:04 +08:00
|
|
|
; PR36485
|
|
|
|
; musttail call result can't be replaced with a constant, unless the call can be removed
|
|
|
|
|
|
|
|
declare i32 @external()
|
|
|
|
|
|
|
|
define i8* @start(i8 %v) {
|
[Attributor] Unify testing (=updates,prefixes,run configurations,...)
When the Attributor was created the test update scripts were not well
suited to deal with the challenges of IR attribute checking. This
partially improved.
Since then we also added three additional configurations that need
testing; in total we now have the following four:
{ TUNIT, CGSCC } x { old pass manager (OPM), new pass manager (NPM) }
Finally, the number of developers and tests grew rapidly (partially due
to the addition of ArgumentPromotion and IPConstantProp tests), which
resulted in tests only being run in some configurations, different
prefixes being used, and different "styles" of checks being used.
Due to the above reasons I believed we needed to take another look at
the test update scripts. While we started to use them, via UTC_ARGS:
--enable/disable, the other problems remained. To improve the testing
situation for *all* configurations, to simplify future updates to the
test, and to help identify subtle effects of future changes, we now use
the test update scripts for (almost) all Attributor tests.
An exhaustive prefix list minimizes the number of check lines and makes
it easy to identify and compare configurations.
Tests have been adjusted in the process but we tried to keep their
intend unchanged.
Reviewed By: sstefan1
Differential Revision: https://reviews.llvm.org/D76588
2020-04-09 08:04:57 +08:00
|
|
|
; IS__TUNIT____-LABEL: define {{[^@]+}}@start
|
|
|
|
; IS__TUNIT____-SAME: (i8 [[V:%.*]])
|
|
|
|
; IS__TUNIT____-NEXT: [[C1:%.*]] = icmp eq i8 [[V]], 0
|
|
|
|
; IS__TUNIT____-NEXT: br i1 [[C1]], label [[TRUE:%.*]], label [[FALSE:%.*]]
|
|
|
|
; IS__TUNIT____: true:
|
|
|
|
; IS__TUNIT____-NEXT: [[CA:%.*]] = musttail call i8* @side_effects(i8 [[V]])
|
|
|
|
; IS__TUNIT____-NEXT: ret i8* [[CA]]
|
|
|
|
; IS__TUNIT____: false:
|
|
|
|
; IS__TUNIT____-NEXT: [[C2:%.*]] = icmp eq i8 [[V]], 1
|
|
|
|
; IS__TUNIT____-NEXT: br i1 [[C2]], label [[C2_TRUE:%.*]], label [[C2_FALSE:%.*]]
|
|
|
|
; IS__TUNIT____: c2_true:
|
|
|
|
; IS__TUNIT____-NEXT: ret i8* null
|
|
|
|
; IS__TUNIT____: c2_false:
|
|
|
|
; IS__TUNIT____-NEXT: [[CA2:%.*]] = musttail call i8* @dont_zap_me(i8 undef)
|
|
|
|
; IS__TUNIT____-NEXT: ret i8* [[CA2]]
|
|
|
|
;
|
|
|
|
; IS__CGSCC____-LABEL: define {{[^@]+}}@start
|
|
|
|
; IS__CGSCC____-SAME: (i8 [[V:%.*]])
|
|
|
|
; IS__CGSCC____-NEXT: [[C1:%.*]] = icmp eq i8 [[V]], 0
|
|
|
|
; IS__CGSCC____-NEXT: br i1 [[C1]], label [[TRUE:%.*]], label [[FALSE:%.*]]
|
|
|
|
; IS__CGSCC____: true:
|
|
|
|
; IS__CGSCC____-NEXT: [[CA:%.*]] = musttail call noalias align 536870912 i8* @side_effects(i8 [[V]])
|
|
|
|
; IS__CGSCC____-NEXT: ret i8* [[CA]]
|
|
|
|
; IS__CGSCC____: false:
|
|
|
|
; IS__CGSCC____-NEXT: [[C2:%.*]] = icmp eq i8 [[V]], 1
|
|
|
|
; IS__CGSCC____-NEXT: br i1 [[C2]], label [[C2_TRUE:%.*]], label [[C2_FALSE:%.*]]
|
|
|
|
; IS__CGSCC____: c2_true:
|
|
|
|
; IS__CGSCC____-NEXT: [[CA1:%.*]] = musttail call noalias align 536870912 i8* @no_side_effects(i8 [[V]])
|
|
|
|
; IS__CGSCC____-NEXT: ret i8* [[CA1]]
|
|
|
|
; IS__CGSCC____: c2_false:
|
|
|
|
; IS__CGSCC____-NEXT: [[CA2:%.*]] = musttail call noalias align 536870912 i8* @dont_zap_me(i8 [[V]])
|
|
|
|
; IS__CGSCC____-NEXT: ret i8* [[CA2]]
|
2019-11-02 12:37:04 +08:00
|
|
|
;
|
|
|
|
%c1 = icmp eq i8 %v, 0
|
|
|
|
br i1 %c1, label %true, label %false
|
|
|
|
true:
|
|
|
|
; FIXME: propagate the value information for %v
|
|
|
|
%ca = musttail call i8* @side_effects(i8 %v)
|
|
|
|
ret i8* %ca
|
|
|
|
false:
|
|
|
|
%c2 = icmp eq i8 %v, 1
|
|
|
|
br i1 %c2, label %c2_true, label %c2_false
|
|
|
|
c2_true:
|
|
|
|
%ca1 = musttail call i8* @no_side_effects(i8 %v)
|
|
|
|
; FIXME: zap this call
|
|
|
|
ret i8* %ca1
|
|
|
|
c2_false:
|
|
|
|
%ca2 = musttail call i8* @dont_zap_me(i8 %v)
|
|
|
|
ret i8* %ca2
|
|
|
|
}
|
|
|
|
|
|
|
|
define internal i8* @side_effects(i8 %v) {
|
[Attributor] Unify testing (=updates,prefixes,run configurations,...)
When the Attributor was created the test update scripts were not well
suited to deal with the challenges of IR attribute checking. This
partially improved.
Since then we also added three additional configurations that need
testing; in total we now have the following four:
{ TUNIT, CGSCC } x { old pass manager (OPM), new pass manager (NPM) }
Finally, the number of developers and tests grew rapidly (partially due
to the addition of ArgumentPromotion and IPConstantProp tests), which
resulted in tests only being run in some configurations, different
prefixes being used, and different "styles" of checks being used.
Due to the above reasons I believed we needed to take another look at
the test update scripts. While we started to use them, via UTC_ARGS:
--enable/disable, the other problems remained. To improve the testing
situation for *all* configurations, to simplify future updates to the
test, and to help identify subtle effects of future changes, we now use
the test update scripts for (almost) all Attributor tests.
An exhaustive prefix list minimizes the number of check lines and makes
it easy to identify and compare configurations.
Tests have been adjusted in the process but we tried to keep their
intend unchanged.
Reviewed By: sstefan1
Differential Revision: https://reviews.llvm.org/D76588
2020-04-09 08:04:57 +08:00
|
|
|
; IS__TUNIT____-LABEL: define {{[^@]+}}@side_effects
|
|
|
|
; IS__TUNIT____-SAME: (i8 [[V:%.*]])
|
|
|
|
; IS__TUNIT____-NEXT: [[I1:%.*]] = call i32 @external()
|
|
|
|
; IS__TUNIT____-NEXT: [[CA:%.*]] = musttail call i8* @start(i8 [[V]])
|
|
|
|
; IS__TUNIT____-NEXT: ret i8* [[CA]]
|
|
|
|
;
|
|
|
|
; IS__CGSCC____-LABEL: define {{[^@]+}}@side_effects
|
|
|
|
; IS__CGSCC____-SAME: (i8 [[V:%.*]])
|
|
|
|
; IS__CGSCC____-NEXT: [[I1:%.*]] = call i32 @external()
|
|
|
|
; IS__CGSCC____-NEXT: [[CA:%.*]] = musttail call noalias align 536870912 i8* @start(i8 [[V]])
|
|
|
|
; IS__CGSCC____-NEXT: ret i8* [[CA]]
|
2019-11-02 12:37:04 +08:00
|
|
|
;
|
|
|
|
%i1 = call i32 @external()
|
|
|
|
|
|
|
|
; since this goes back to `start` the SCPP should be see that the return value
|
|
|
|
; is always `null`.
|
|
|
|
; The call can't be removed due to `external` call above, though.
|
|
|
|
|
|
|
|
%ca = musttail call i8* @start(i8 %v)
|
|
|
|
|
|
|
|
; Thus the result must be returned anyway
|
|
|
|
ret i8* %ca
|
|
|
|
}
|
|
|
|
|
|
|
|
define internal i8* @no_side_effects(i8 %v) readonly nounwind {
|
2020-07-20 03:55:43 +08:00
|
|
|
; IS__CGSCC____: Function Attrs: nofree norecurse nosync nounwind readnone willreturn
|
[Attributor] Unify testing (=updates,prefixes,run configurations,...)
When the Attributor was created the test update scripts were not well
suited to deal with the challenges of IR attribute checking. This
partially improved.
Since then we also added three additional configurations that need
testing; in total we now have the following four:
{ TUNIT, CGSCC } x { old pass manager (OPM), new pass manager (NPM) }
Finally, the number of developers and tests grew rapidly (partially due
to the addition of ArgumentPromotion and IPConstantProp tests), which
resulted in tests only being run in some configurations, different
prefixes being used, and different "styles" of checks being used.
Due to the above reasons I believed we needed to take another look at
the test update scripts. While we started to use them, via UTC_ARGS:
--enable/disable, the other problems remained. To improve the testing
situation for *all* configurations, to simplify future updates to the
test, and to help identify subtle effects of future changes, we now use
the test update scripts for (almost) all Attributor tests.
An exhaustive prefix list minimizes the number of check lines and makes
it easy to identify and compare configurations.
Tests have been adjusted in the process but we tried to keep their
intend unchanged.
Reviewed By: sstefan1
Differential Revision: https://reviews.llvm.org/D76588
2020-04-09 08:04:57 +08:00
|
|
|
; IS__CGSCC____-LABEL: define {{[^@]+}}@no_side_effects
|
|
|
|
; IS__CGSCC____-SAME: (i8 [[V:%.*]])
|
|
|
|
; IS__CGSCC____-NEXT: ret i8* null
|
|
|
|
;
|
2019-11-02 12:37:04 +08:00
|
|
|
ret i8* null
|
|
|
|
}
|
|
|
|
|
|
|
|
define internal i8* @dont_zap_me(i8 %v) {
|
[Attributor] Unify testing (=updates,prefixes,run configurations,...)
When the Attributor was created the test update scripts were not well
suited to deal with the challenges of IR attribute checking. This
partially improved.
Since then we also added three additional configurations that need
testing; in total we now have the following four:
{ TUNIT, CGSCC } x { old pass manager (OPM), new pass manager (NPM) }
Finally, the number of developers and tests grew rapidly (partially due
to the addition of ArgumentPromotion and IPConstantProp tests), which
resulted in tests only being run in some configurations, different
prefixes being used, and different "styles" of checks being used.
Due to the above reasons I believed we needed to take another look at
the test update scripts. While we started to use them, via UTC_ARGS:
--enable/disable, the other problems remained. To improve the testing
situation for *all* configurations, to simplify future updates to the
test, and to help identify subtle effects of future changes, we now use
the test update scripts for (almost) all Attributor tests.
An exhaustive prefix list minimizes the number of check lines and makes
it easy to identify and compare configurations.
Tests have been adjusted in the process but we tried to keep their
intend unchanged.
Reviewed By: sstefan1
Differential Revision: https://reviews.llvm.org/D76588
2020-04-09 08:04:57 +08:00
|
|
|
; IS__TUNIT____-LABEL: define {{[^@]+}}@dont_zap_me
|
|
|
|
; IS__TUNIT____-SAME: (i8 [[V:%.*]])
|
|
|
|
; IS__TUNIT____-NEXT: [[I1:%.*]] = call i32 @external()
|
|
|
|
; IS__TUNIT____-NEXT: ret i8* undef
|
|
|
|
;
|
|
|
|
; IS__CGSCC____-LABEL: define {{[^@]+}}@dont_zap_me
|
|
|
|
; IS__CGSCC____-SAME: (i8 [[V:%.*]])
|
|
|
|
; IS__CGSCC____-NEXT: [[I1:%.*]] = call i32 @external()
|
|
|
|
; IS__CGSCC____-NEXT: ret i8* null
|
2019-11-02 12:37:04 +08:00
|
|
|
;
|
|
|
|
%i1 = call i32 @external()
|
|
|
|
ret i8* null
|
|
|
|
}
|