[llvm-branch-commits] [flang] 0775131 - [flang] Fix crash in folding (#48437)
peter klausler via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Dec 16 08:36:34 PST 2020
Author: peter klausler
Date: 2020-12-16T07:55:44-08:00
New Revision: 07751310580fa5b7b94b6efa85d7964af0f699a6
URL: https://github.com/llvm/llvm-project/commit/07751310580fa5b7b94b6efa85d7964af0f699a6
DIFF: https://github.com/llvm/llvm-project/commit/07751310580fa5b7b94b6efa85d7964af0f699a6.diff
LOG: [flang] Fix crash in folding (#48437)
Elemental intrinsic function folding was not taking the lower
bounds of constant array arguments into account; these lower bounds
can be distinct from 1 when named constants appear as arguments.
LLVM bugzilla #48437.
Differential Revision: https://reviews.llvm.org/D93321
Added:
flang/test/Evaluate/folding16.f90
Modified:
flang/include/flang/Evaluate/constant.h
flang/lib/Evaluate/fold-implementation.h
Removed:
################################################################################
diff --git a/flang/include/flang/Evaluate/constant.h b/flang/include/flang/Evaluate/constant.h
index a9f6e87c9db0..89a5867722f7 100644
--- a/flang/include/flang/Evaluate/constant.h
+++ b/flang/include/flang/Evaluate/constant.h
@@ -140,7 +140,8 @@ template <typename T> class Constant : public ConstantBase<T> {
}
}
- // Apply subscripts.
+ // Apply subscripts. An empty subscript list is allowed for
+ // a scalar constant.
Element At(const ConstantSubscripts &) const;
Constant Reshape(ConstantSubscripts &&) const;
@@ -177,7 +178,7 @@ class Constant<Type<TypeCategory::Character, KIND>> : public ConstantBounds {
}
}
- // Apply subscripts
+ // Apply subscripts, if any.
Scalar<Result> At(const ConstantSubscripts &) const;
Constant Reshape(ConstantSubscripts &&) const;
diff --git a/flang/lib/Evaluate/fold-implementation.h b/flang/lib/Evaluate/fold-implementation.h
index 4fa5f6a4c883..7232715600fd 100644
--- a/flang/lib/Evaluate/fold-implementation.h
+++ b/flang/lib/Evaluate/fold-implementation.h
@@ -443,9 +443,8 @@ Expr<TR> FoldElementalIntrinsicHelper(FoldingContext &context,
// Compute the shape of the result based on shapes of arguments
ConstantSubscripts shape;
int rank{0};
- const ConstantSubscripts *shapes[sizeof...(TA)]{
- &std::get<I>(*args)->shape()...};
- const int ranks[sizeof...(TA)]{std::get<I>(*args)->Rank()...};
+ const ConstantSubscripts *shapes[]{&std::get<I>(*args)->shape()...};
+ const int ranks[]{std::get<I>(*args)->Rank()...};
for (unsigned int i{0}; i < sizeof...(TA); ++i) {
if (ranks[i] > 0) {
if (rank == 0) {
@@ -470,20 +469,19 @@ Expr<TR> FoldElementalIntrinsicHelper(FoldingContext &context,
std::vector<Scalar<TR>> results;
if (TotalElementCount(shape) > 0) {
ConstantBounds bounds{shape};
- ConstantSubscripts index(rank, 1);
+ ConstantSubscripts resultIndex(rank, 1);
+ ConstantSubscripts argIndex[]{std::get<I>(*args)->lbounds()...};
do {
if constexpr (std::is_same_v<WrapperType<TR, TA...>,
ScalarFuncWithContext<TR, TA...>>) {
- results.emplace_back(func(context,
- (ranks[I] ? std::get<I>(*args)->At(index)
- : std::get<I>(*args)->GetScalarValue().value())...));
+ results.emplace_back(
+ func(context, std::get<I>(*args)->At(argIndex[I])...));
} else if constexpr (std::is_same_v<WrapperType<TR, TA...>,
ScalarFunc<TR, TA...>>) {
- results.emplace_back(func(
- (ranks[I] ? std::get<I>(*args)->At(index)
- : std::get<I>(*args)->GetScalarValue().value())...));
+ results.emplace_back(func(std::get<I>(*args)->At(argIndex[I])...));
}
- } while (bounds.IncrementSubscripts(index));
+ (std::get<I>(*args)->IncrementSubscripts(argIndex[I]), ...);
+ } while (bounds.IncrementSubscripts(resultIndex));
}
// Build and return constant result
if constexpr (TR::category == TypeCategory::Character) {
@@ -732,17 +730,11 @@ template <typename T> class ArrayConstructorFolder {
Expr<T> folded{Fold(context_, common::Clone(expr.value()))};
if (const auto *c{UnwrapConstantValue<T>(folded)}) {
// Copy elements in Fortran array element order
- ConstantSubscripts shape{c->shape()};
- int rank{c->Rank()};
- ConstantSubscripts index(GetRank(shape), 1);
- for (std::size_t n{c->size()}; n-- > 0;) {
- elements_.emplace_back(c->At(index));
- for (int d{0}; d < rank; ++d) {
- if (++index[d] <= shape[d]) {
- break;
- }
- index[d] = 1;
- }
+ if (c->size() > 0) {
+ ConstantSubscripts index{c->lbounds()};
+ do {
+ elements_.emplace_back(c->At(index));
+ } while (c->IncrementSubscripts(index));
}
return true;
} else {
diff --git a/flang/test/Evaluate/folding16.f90 b/flang/test/Evaluate/folding16.f90
new file mode 100644
index 000000000000..0918381040bf
--- /dev/null
+++ b/flang/test/Evaluate/folding16.f90
@@ -0,0 +1,8 @@
+! RUN: %S/test_folding.sh %s %t %f18
+! Ensure that lower bounds are accounted for in intrinsic folding;
+! this is a regression test for a bug in which they were not
+real, parameter :: a(-1:-1) = 1.
+real, parameter :: b(-1:-1) = log(a)
+logical, parameter :: test = lbound(a,1)==-1 .and. lbound(b,1)==-1 .and. &
+ lbound(log(a),1)==1 .and. all(b==0)
+end
More information about the llvm-branch-commits
mailing list