[PATCH] D121125: [flang] Accommodate arrays with a zero-extent dimension in location folding
Peter Klausler via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 7 10:44:29 PST 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG4133a85c867f: [flang] Accommodate arrays with a zero-extent dimension in location folding (authored by klausler).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D121125/new/
https://reviews.llvm.org/D121125
Files:
flang/lib/Evaluate/constant.cpp
flang/lib/Evaluate/fold-implementation.h
flang/lib/Evaluate/fold-integer.cpp
flang/test/Evaluate/fold-findloc.f90
Index: flang/test/Evaluate/fold-findloc.f90
===================================================================
--- flang/test/Evaluate/fold-findloc.f90
+++ flang/test/Evaluate/fold-findloc.f90
@@ -3,6 +3,7 @@
module m1
integer, parameter :: ia1(2:6) = [1, 2, 3, 2, 1]
integer, parameter :: ia2(2:3,2:4) = reshape([1, 2, 3, 3, 2, 1], shape(ia2))
+ integer, parameter :: ia3(2,0,2) = 0 ! middle dimension has zero extent
logical, parameter :: test_fi1a = all(findloc(ia1, 1) == 1)
logical, parameter :: test_fi1ar = rank(findloc(ia1, 1)) == 1
@@ -54,4 +55,9 @@
logical, parameter :: test_ni2e = all(minloc(ia2, dim=1) == [1, 1, 2])
logical, parameter :: test_ni2f = all(minloc(ia2, dim=1, back=.true.) == [1, 2, 2])
logical, parameter :: test_ni2g = all(minloc(ia2, dim=2) == [1, 3])
+
+ logical, parameter :: test_xi3a = all(maxloc(ia3) == [0,0,0])
+ logical, parameter :: test_xi3b = all(maxloc(ia3, back=.true.) == [0,0,0])
+ logical, parameter :: test_xi3c = all(maxloc(ia3, dim=2) == reshape([0,0,0,0],shape=[2,2]))
+ logical, parameter :: test_xi3d = all(maxloc(ia3, dim=2, back=.true.) == reshape([0,0,0,0],shape=[2,2]))
end module
Index: flang/lib/Evaluate/fold-integer.cpp
===================================================================
--- flang/lib/Evaluate/fold-integer.cpp
+++ flang/lib/Evaluate/fold-integer.cpp
@@ -284,11 +284,12 @@
}
}
resultIndices.emplace_back(hit);
- at[zbDim] = dimLength;
+ at[zbDim] = std::max<ConstantSubscript>(dimLength, 1);
array->IncrementSubscripts(at);
at[zbDim] = 1;
if (mask) {
- maskAt[zbDim] = mask->lbounds()[zbDim] + dimLength - 1;
+ maskAt[zbDim] = mask->lbounds()[zbDim] +
+ std::max<ConstantSubscript>(dimLength, 1) - 1;
mask->IncrementSubscripts(maskAt);
maskAt[zbDim] = mask->lbounds()[zbDim];
}
Index: flang/lib/Evaluate/fold-implementation.h
===================================================================
--- flang/lib/Evaluate/fold-implementation.h
+++ flang/lib/Evaluate/fold-implementation.h
@@ -612,7 +612,7 @@
zbDimIndex = 0;
}
}
- arrayAt[zbDim] = dimLB + dimExtent - 1;
+ arrayAt[zbDim] = dimLB + std::max<ConstantSubscript>(dimExtent, 1) - 1;
array->IncrementSubscripts(arrayAt);
shift->IncrementSubscripts(shiftAt);
}
@@ -726,7 +726,7 @@
DIE("no derived type boundary");
}
}
- arrayAt[zbDim] = dimLB + dimExtent - 1;
+ arrayAt[zbDim] = dimLB + std::max<ConstantSubscript>(dimExtent, 1) - 1;
array->IncrementSubscripts(arrayAt);
shift->IncrementSubscripts(shiftAt);
if (boundary) {
Index: flang/lib/Evaluate/constant.cpp
===================================================================
--- flang/lib/Evaluate/constant.cpp
+++ flang/lib/Evaluate/constant.cpp
@@ -68,7 +68,7 @@
if (++indices[k] < lb + shape_[k]) {
return true;
} else {
- CHECK(indices[k] == lb + shape_[k]);
+ CHECK(indices[k] == lb + std::max<ConstantSubscript>(shape_[k], 1));
indices[k] = lb;
}
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D121125.413558.patch
Type: text/x-patch
Size: 3194 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220307/564601be/attachment.bin>
More information about the llvm-commits
mailing list