-
Notifications
You must be signed in to change notification settings - Fork 13.5k
[flang] Handle procedure pointer and dummy procecure in REDUCE intrinsic calls #95843
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or 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
@llvm/pr-subscribers-flang-fir-hlfir Author: Valentin Clement (バレンタイン クレメン) (clementval) ChangesAdd handling for procedure pointer and dummy procedure in REDUCE intrinsic call lowering. Full diff: https://github.com/llvm/llvm-project/pull/95843.diff 2 Files Affected:
diff --git a/flang/lib/Optimizer/Builder/IntrinsicCall.cpp b/flang/lib/Optimizer/Builder/IntrinsicCall.cpp
index c929d05038462..388e4e1132898 100644
--- a/flang/lib/Optimizer/Builder/IntrinsicCall.cpp
+++ b/flang/lib/Optimizer/Builder/IntrinsicCall.cpp
@@ -5751,6 +5751,12 @@ IntrinsicLibrary::genReduce(mlir::Type resultType,
mlir::dyn_cast_or_null<fir::EmboxProcOp>(operation.getDefiningOp())) {
auto fctTy = mlir::dyn_cast<mlir::FunctionType>(embox.getFunc().getType());
argByRef = mlir::isa<fir::ReferenceType>(fctTy.getInput(0));
+ } else if (auto load = mlir::dyn_cast_or_null<fir::LoadOp>(
+ operation.getDefiningOp())) {
+ auto boxProcTy = mlir::dyn_cast_or_null<fir::BoxProcType>(load.getType());
+ assert(boxProcTy && "expect BoxProcType");
+ auto fctTy = mlir::dyn_cast<mlir::FunctionType>(boxProcTy.getEleTy());
+ argByRef = mlir::isa<fir::ReferenceType>(fctTy.getInput(0));
}
mlir::Type ty = array.getType();
diff --git a/flang/test/Lower/Intrinsics/reduce.f90 b/flang/test/Lower/Intrinsics/reduce.f90
index 358897b05adce..3533091b84577 100644
--- a/flang/test/Lower/Intrinsics/reduce.f90
+++ b/flang/test/Lower/Intrinsics/reduce.f90
@@ -6,6 +6,17 @@ module reduce_mod
integer :: a
end type
+ abstract interface
+ pure function red_int1_interface(a, b)
+ integer(1), intent(in) :: a, b
+ integer(1) :: red_int1_interface
+ end function
+ pure function red_int1_interface_value(a, b)
+ integer(1), value, intent(in) :: a, b
+ integer(1) :: red_int1_interface_value
+ end function
+ end interface
+
contains
pure function red_int1(a,b)
@@ -20,9 +31,13 @@ pure function red_int1_value(a,b)
red_int1_value = a + b
end function
-subroutine integer1(a, id)
+subroutine integer1(a, id, d1, d2)
integer(1), intent(in) :: a(:)
integer(1) :: res, id
+ procedure(red_int1_interface), pointer :: fptr
+ procedure(red_int1_interface_value), pointer :: fptr_value
+ procedure(red_int1_interface) :: d1
+ procedure(red_int1_interface_value) :: d2
res = reduce(a, red_int1)
@@ -33,10 +48,19 @@ subroutine integer1(a, id)
res = reduce(a, red_int1, [.true., .true., .false.])
res = reduce(a, red_int1_value)
+
+ fptr => red_int1
+ res = reduce(a, fptr)
+
+ fptr_value => red_int1_value
+ res = reduce(a, fptr_value)
+
+ res = reduce(a, d1)
+ res = reduce(a, d2)
end subroutine
! CHECK-LABEL: func.func @_QMreduce_modPinteger1(
-! CHECK-SAME: %[[ARG0:.*]]: !fir.box<!fir.array<?xi8>> {fir.bindc_name = "a"}, %[[ARG1:.*]]: !fir.ref<i8> {fir.bindc_name = "id"})
+! CHECK-SAME: %[[ARG0:.*]]: !fir.box<!fir.array<?xi8>> {fir.bindc_name = "a"}, %[[ARG1:.*]]: !fir.ref<i8> {fir.bindc_name = "id"}
! CHECK: %[[A:.*]]:2 = hlfir.declare %[[ARG0]] dummy_scope %{{.*}} {fortran_attrs = #fir.var_attrs<intent_in>, uniq_name = "_QMreduce_modFinteger1Ea"} : (!fir.box<!fir.array<?xi8>>, !fir.dscope) -> (!fir.box<!fir.array<?xi8>>, !fir.box<!fir.array<?xi8>>)
! CHECK: %[[ID:.*]]:2 = hlfir.declare %[[ARG1]] dummy_scope %{{.*}} {uniq_name = "_QMreduce_modFinteger1Eid"} : (!fir.ref<i8>, !fir.dscope) -> (!fir.ref<i8>, !fir.ref<i8>)
! CHECK: %[[ALLOC_RES:.*]] = fir.alloca i8 {bindc_name = "res", uniq_name = "_QMreduce_modFinteger1Eres"}
@@ -64,6 +88,10 @@ subroutine integer1(a, id)
! CHECK: %[[CONV_MASK:.*]] = fir.convert %[[BOXED_MASK]] : (!fir.box<!fir.array<3x!fir.logical<4>>>) -> !fir.box<none>
! CHECK: fir.call @_FortranAReduceInteger1Ref(%{{.*}}, %{{.*}}, %{{.*}}, %{{.*}}, %{{.*}}, %[[CONV_MASK]], %{{.*}}, %false{{.*}})
! CHECK: fir.call @_FortranAReduceInteger1Value
+! CHECK: fir.call @_FortranAReduceInteger1Ref
+! CHECK: fir.call @_FortranAReduceInteger1Value
+! CHECK: fir.call @_FortranAReduceInteger1Ref
+! STILL NEED SOME WORK HERE fir.call @_FortranAReduceInteger1Value
pure function red_int2(a,b)
integer(2), intent(in) :: a, b
|
clementval
commented
Jun 17, 2024
jeanPerier
approved these changes
Jun 18, 2024
AlexisPerry
pushed a commit
to llvm-project-tlp/llvm-project
that referenced
this pull request
Jul 9, 2024
…sic calls (llvm#95843) Add handling for procedure pointer and dummy procedure in REDUCE intrinsic call lowering.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add handling for procedure pointer and dummy procedure in REDUCE intrinsic call lowering.