2020-02-25 23:11:52 +08:00
|
|
|
//===-- lib/Evaluate/fold-logical.cpp -------------------------------------===//
|
2020-01-01 04:20:42 +08:00
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
2020-01-11 04:12:03 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2020-01-01 04:20:42 +08:00
|
|
|
|
|
|
|
#include "fold-implementation.h"
|
2021-06-19 02:24:32 +08:00
|
|
|
#include "fold-reduction.h"
|
2020-02-25 23:11:52 +08:00
|
|
|
#include "flang/Evaluate/check-expression.h"
|
2020-01-01 04:20:42 +08:00
|
|
|
|
|
|
|
namespace Fortran::evaluate {
|
|
|
|
|
2021-06-19 02:24:32 +08:00
|
|
|
// for ALL & ANY
|
|
|
|
template <typename T>
|
|
|
|
static Expr<T> FoldAllAny(FoldingContext &context, FunctionRef<T> &&ref,
|
|
|
|
Scalar<T> (Scalar<T>::*operation)(const Scalar<T> &) const,
|
|
|
|
Scalar<T> identity) {
|
|
|
|
static_assert(T::category == TypeCategory::Logical);
|
|
|
|
using Element = Scalar<T>;
|
2021-09-29 00:56:38 +08:00
|
|
|
std::optional<int> dim;
|
2021-06-19 02:24:32 +08:00
|
|
|
if (std::optional<Constant<T>> array{
|
|
|
|
ProcessReductionArgs<T>(context, ref.arguments(), dim, identity,
|
|
|
|
/*ARRAY(MASK)=*/0, /*DIM=*/1)}) {
|
|
|
|
auto accumulator{[&](Element &element, const ConstantSubscripts &at) {
|
|
|
|
element = (element.*operation)(array->At(at));
|
|
|
|
}};
|
2021-09-11 06:55:55 +08:00
|
|
|
return Expr<T>{DoReduction<T>(*array, dim, identity, accumulator)};
|
2021-06-19 02:24:32 +08:00
|
|
|
}
|
|
|
|
return Expr<T>{std::move(ref)};
|
|
|
|
}
|
|
|
|
|
2020-03-29 12:00:16 +08:00
|
|
|
template <int KIND>
|
2020-01-01 04:20:42 +08:00
|
|
|
Expr<Type<TypeCategory::Logical, KIND>> FoldIntrinsicFunction(
|
|
|
|
FoldingContext &context,
|
|
|
|
FunctionRef<Type<TypeCategory::Logical, KIND>> &&funcRef) {
|
|
|
|
using T = Type<TypeCategory::Logical, KIND>;
|
|
|
|
ActualArguments &args{funcRef.arguments()};
|
|
|
|
auto *intrinsic{std::get_if<SpecificIntrinsic>(&funcRef.proc().u)};
|
|
|
|
CHECK(intrinsic);
|
|
|
|
std::string name{intrinsic->name};
|
|
|
|
if (name == "all") {
|
2021-06-19 02:24:32 +08:00
|
|
|
return FoldAllAny(
|
|
|
|
context, std::move(funcRef), &Scalar<T>::AND, Scalar<T>{true});
|
2020-01-01 04:20:42 +08:00
|
|
|
} else if (name == "any") {
|
2021-06-19 02:24:32 +08:00
|
|
|
return FoldAllAny(
|
|
|
|
context, std::move(funcRef), &Scalar<T>::OR, Scalar<T>{false});
|
2020-09-26 00:03:17 +08:00
|
|
|
} else if (name == "associated") {
|
|
|
|
bool gotConstant{true};
|
|
|
|
const Expr<SomeType> *firstArgExpr{args[0]->UnwrapExpr()};
|
|
|
|
if (!firstArgExpr || !IsNullPointer(*firstArgExpr)) {
|
|
|
|
gotConstant = false;
|
|
|
|
} else if (args[1]) { // There's a second argument
|
|
|
|
const Expr<SomeType> *secondArgExpr{args[1]->UnwrapExpr()};
|
|
|
|
if (!secondArgExpr || !IsNullPointer(*secondArgExpr)) {
|
|
|
|
gotConstant = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return gotConstant ? Expr<T>{false} : Expr<T>{std::move(funcRef)};
|
2020-01-01 04:20:42 +08:00
|
|
|
} else if (name == "bge" || name == "bgt" || name == "ble" || name == "blt") {
|
|
|
|
using LargestInt = Type<TypeCategory::Integer, 16>;
|
|
|
|
static_assert(std::is_same_v<Scalar<LargestInt>, BOZLiteralConstant>);
|
|
|
|
// Arguments do not have to be of the same integer type. Convert all
|
|
|
|
// arguments to the biggest integer type before comparing them to
|
|
|
|
// simplify.
|
|
|
|
for (int i{0}; i <= 1; ++i) {
|
|
|
|
if (auto *x{UnwrapExpr<Expr<SomeInteger>>(args[i])}) {
|
|
|
|
*args[i] = AsGenericExpr(
|
|
|
|
Fold(context, ConvertToType<LargestInt>(std::move(*x))));
|
|
|
|
} else if (auto *x{UnwrapExpr<BOZLiteralConstant>(args[i])}) {
|
|
|
|
*args[i] = AsGenericExpr(Constant<LargestInt>{std::move(*x)});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
auto fptr{&Scalar<LargestInt>::BGE};
|
2020-03-29 12:00:16 +08:00
|
|
|
if (name == "bge") { // done in fptr declaration
|
2020-01-01 04:20:42 +08:00
|
|
|
} else if (name == "bgt") {
|
|
|
|
fptr = &Scalar<LargestInt>::BGT;
|
|
|
|
} else if (name == "ble") {
|
|
|
|
fptr = &Scalar<LargestInt>::BLE;
|
|
|
|
} else if (name == "blt") {
|
|
|
|
fptr = &Scalar<LargestInt>::BLT;
|
|
|
|
} else {
|
|
|
|
common::die("missing case to fold intrinsic function %s", name.c_str());
|
|
|
|
}
|
|
|
|
return FoldElementalIntrinsic<T, LargestInt, LargestInt>(context,
|
|
|
|
std::move(funcRef),
|
|
|
|
ScalarFunc<T, LargestInt, LargestInt>(
|
|
|
|
[&fptr](const Scalar<LargestInt> &i, const Scalar<LargestInt> &j) {
|
|
|
|
return Scalar<T>{std::invoke(fptr, i, j)};
|
|
|
|
}));
|
2021-04-16 05:11:47 +08:00
|
|
|
} else if (name == "isnan" || name == "__builtin_ieee_is_nan") {
|
2020-11-11 07:07:53 +08:00
|
|
|
// A warning about an invalid argument is discarded from converting
|
2021-04-16 05:11:47 +08:00
|
|
|
// the argument of isnan() / IEEE_IS_NAN().
|
2020-11-11 07:07:53 +08:00
|
|
|
auto restorer{context.messages().DiscardMessages()};
|
|
|
|
using DefaultReal = Type<TypeCategory::Real, 4>;
|
|
|
|
return FoldElementalIntrinsic<T, DefaultReal>(context, std::move(funcRef),
|
|
|
|
ScalarFunc<T, DefaultReal>([](const Scalar<DefaultReal> &x) {
|
|
|
|
return Scalar<T>{x.IsNotANumber()};
|
|
|
|
}));
|
2020-01-08 05:39:42 +08:00
|
|
|
} else if (name == "is_contiguous") {
|
|
|
|
if (args.at(0)) {
|
|
|
|
if (auto *expr{args[0]->UnwrapExpr()}) {
|
[flang] Improve initializer semantics, esp. for component default values
This patch plugs many holes in static initializer semantics, improves error
messages for default initial values and other component properties in
parameterized derived type instantiations, and cleans up several small
issues noticed during development. We now do proper scalar expansion,
folding, and type, rank, and shape conformance checking for component
default initializers in derived types and PDT instantiations.
The initial values of named constants are now guaranteed to have been folded
when installed in the symbol table, and are no longer folded or
scalar-expanded at each use in expression folding. Semantics documentation
was extended with information about the various kinds of initializations
in Fortran and when each of them are processed in the compiler.
Some necessary concomitant changes have bulked this patch out a bit:
* contextual messages attachments, which are now produced for parameterized
derived type instantiations so that the user can figure out which
instance caused a problem with a component, have been added as part
of ContextualMessages, and their implementation was debugged
* several APIs in evaluate::characteristics was changed so that a FoldingContext
is passed as an argument rather than just its intrinsic procedure table;
this affected client call sites in many files
* new tools in Evaluate/check-expression.cpp to determine when an Expr
actually is a single constant value and to validate a non-pointer
variable initializer or object component default value
* shape conformance checking has additional arguments that control
whether scalar expansion is allowed
* several now-unused functions and data members noticed and removed
* several crashes and bogus errors exposed by testing this new code
were fixed
* a -fdebug-stack-trace option to enable LLVM's stack tracing on
a crash, which might be useful in the future
TL;DR: Initialization processing does more and takes place at the right
times for all of the various kinds of things that can be initialized.
Differential Review: https://reviews.llvm.org/D92783
2020-12-08 04:08:58 +08:00
|
|
|
if (IsSimplyContiguous(*expr, context)) {
|
2020-01-08 05:39:42 +08:00
|
|
|
return Expr<T>{true};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-10-14 05:42:21 +08:00
|
|
|
} else if (name == "lge" || name == "lgt" || name == "lle" || name == "llt") {
|
|
|
|
// Rewrite LGE/LGT/LLE/LLT into ASCII character relations
|
|
|
|
auto *cx0{UnwrapExpr<Expr<SomeCharacter>>(args[0])};
|
|
|
|
auto *cx1{UnwrapExpr<Expr<SomeCharacter>>(args[1])};
|
|
|
|
if (cx0 && cx1) {
|
|
|
|
return Fold(context,
|
|
|
|
ConvertToType<T>(
|
|
|
|
PackageRelation(name == "lge" ? RelationalOperator::GE
|
|
|
|
: name == "lgt" ? RelationalOperator::GT
|
|
|
|
: name == "lle" ? RelationalOperator::LE
|
|
|
|
: RelationalOperator::LT,
|
|
|
|
ConvertToType<Ascii>(std::move(*cx0)),
|
|
|
|
ConvertToType<Ascii>(std::move(*cx1)))));
|
|
|
|
}
|
2021-03-26 01:36:06 +08:00
|
|
|
} else if (name == "logical") {
|
|
|
|
if (auto *expr{UnwrapExpr<Expr<SomeLogical>>(args[0])}) {
|
|
|
|
return Fold(context, ConvertToType<T>(std::move(*expr)));
|
|
|
|
}
|
2020-01-01 04:20:42 +08:00
|
|
|
} else if (name == "merge") {
|
|
|
|
return FoldMerge<T>(context, std::move(funcRef));
|
2021-02-02 07:23:58 +08:00
|
|
|
} else if (name == "__builtin_ieee_support_datatype" ||
|
|
|
|
name == "__builtin_ieee_support_denormal" ||
|
|
|
|
name == "__builtin_ieee_support_divide" ||
|
|
|
|
name == "__builtin_ieee_support_divide" ||
|
|
|
|
name == "__builtin_ieee_support_inf" ||
|
|
|
|
name == "__builtin_ieee_support_io" ||
|
|
|
|
name == "__builtin_ieee_support_nan" ||
|
|
|
|
name == "__builtin_ieee_support_sqrt" ||
|
|
|
|
name == "__builtin_ieee_support_standard" ||
|
|
|
|
name == "__builtin_ieee_support_subnormal" ||
|
|
|
|
name == "__builtin_ieee_support_underflow_control") {
|
|
|
|
return Expr<T>{true};
|
2020-01-01 04:20:42 +08:00
|
|
|
}
|
2021-08-25 07:51:44 +08:00
|
|
|
// TODO: btest, dot_product, is_iostat_end,
|
2021-10-14 05:42:21 +08:00
|
|
|
// is_iostat_eor, logical, matmul, out_of_range,
|
2021-07-08 01:52:09 +08:00
|
|
|
// parity, transfer
|
2020-01-01 04:20:42 +08:00
|
|
|
return Expr<T>{std::move(funcRef)};
|
|
|
|
}
|
|
|
|
|
2020-03-29 12:00:16 +08:00
|
|
|
template <typename T>
|
2020-01-01 04:20:42 +08:00
|
|
|
Expr<LogicalResult> FoldOperation(
|
|
|
|
FoldingContext &context, Relational<T> &&relation) {
|
|
|
|
if (auto array{ApplyElementwise(context, relation,
|
|
|
|
std::function<Expr<LogicalResult>(Expr<T> &&, Expr<T> &&)>{
|
|
|
|
[=](Expr<T> &&x, Expr<T> &&y) {
|
|
|
|
return Expr<LogicalResult>{Relational<SomeType>{
|
|
|
|
Relational<T>{relation.opr, std::move(x), std::move(y)}}};
|
|
|
|
}})}) {
|
|
|
|
return *array;
|
|
|
|
}
|
|
|
|
if (auto folded{OperandsAreConstants(relation)}) {
|
|
|
|
bool result{};
|
|
|
|
if constexpr (T::category == TypeCategory::Integer) {
|
|
|
|
result =
|
|
|
|
Satisfies(relation.opr, folded->first.CompareSigned(folded->second));
|
|
|
|
} else if constexpr (T::category == TypeCategory::Real) {
|
|
|
|
result = Satisfies(relation.opr, folded->first.Compare(folded->second));
|
2020-11-14 01:40:59 +08:00
|
|
|
} else if constexpr (T::category == TypeCategory::Complex) {
|
|
|
|
result = (relation.opr == RelationalOperator::EQ) ==
|
|
|
|
folded->first.Equals(folded->second);
|
2020-01-01 04:20:42 +08:00
|
|
|
} else if constexpr (T::category == TypeCategory::Character) {
|
|
|
|
result = Satisfies(relation.opr, Compare(folded->first, folded->second));
|
|
|
|
} else {
|
2020-11-14 01:40:59 +08:00
|
|
|
static_assert(T::category != TypeCategory::Logical);
|
2020-01-01 04:20:42 +08:00
|
|
|
}
|
|
|
|
return Expr<LogicalResult>{Constant<LogicalResult>{result}};
|
|
|
|
}
|
|
|
|
return Expr<LogicalResult>{Relational<SomeType>{std::move(relation)}};
|
|
|
|
}
|
|
|
|
|
|
|
|
Expr<LogicalResult> FoldOperation(
|
|
|
|
FoldingContext &context, Relational<SomeType> &&relation) {
|
|
|
|
return std::visit(
|
|
|
|
[&](auto &&x) {
|
|
|
|
return Expr<LogicalResult>{FoldOperation(context, std::move(x))};
|
|
|
|
},
|
|
|
|
std::move(relation.u));
|
|
|
|
}
|
|
|
|
|
2020-03-29 12:00:16 +08:00
|
|
|
template <int KIND>
|
2020-01-01 04:20:42 +08:00
|
|
|
Expr<Type<TypeCategory::Logical, KIND>> FoldOperation(
|
|
|
|
FoldingContext &context, Not<KIND> &&x) {
|
|
|
|
if (auto array{ApplyElementwise(context, x)}) {
|
|
|
|
return *array;
|
|
|
|
}
|
|
|
|
using Ty = Type<TypeCategory::Logical, KIND>;
|
|
|
|
auto &operand{x.left()};
|
|
|
|
if (auto value{GetScalarConstantValue<Ty>(operand)}) {
|
|
|
|
return Expr<Ty>{Constant<Ty>{!value->IsTrue()}};
|
|
|
|
}
|
|
|
|
return Expr<Ty>{x};
|
|
|
|
}
|
|
|
|
|
2020-03-29 12:00:16 +08:00
|
|
|
template <int KIND>
|
2020-01-01 04:20:42 +08:00
|
|
|
Expr<Type<TypeCategory::Logical, KIND>> FoldOperation(
|
|
|
|
FoldingContext &context, LogicalOperation<KIND> &&operation) {
|
|
|
|
using LOGICAL = Type<TypeCategory::Logical, KIND>;
|
|
|
|
if (auto array{ApplyElementwise(context, operation,
|
|
|
|
std::function<Expr<LOGICAL>(Expr<LOGICAL> &&, Expr<LOGICAL> &&)>{
|
|
|
|
[=](Expr<LOGICAL> &&x, Expr<LOGICAL> &&y) {
|
|
|
|
return Expr<LOGICAL>{LogicalOperation<KIND>{
|
|
|
|
operation.logicalOperator, std::move(x), std::move(y)}};
|
|
|
|
}})}) {
|
|
|
|
return *array;
|
|
|
|
}
|
|
|
|
if (auto folded{OperandsAreConstants(operation)}) {
|
|
|
|
bool xt{folded->first.IsTrue()}, yt{folded->second.IsTrue()}, result{};
|
|
|
|
switch (operation.logicalOperator) {
|
2020-03-29 12:00:16 +08:00
|
|
|
case LogicalOperator::And:
|
|
|
|
result = xt && yt;
|
|
|
|
break;
|
|
|
|
case LogicalOperator::Or:
|
|
|
|
result = xt || yt;
|
|
|
|
break;
|
|
|
|
case LogicalOperator::Eqv:
|
|
|
|
result = xt == yt;
|
|
|
|
break;
|
|
|
|
case LogicalOperator::Neqv:
|
|
|
|
result = xt != yt;
|
|
|
|
break;
|
|
|
|
case LogicalOperator::Not:
|
|
|
|
DIE("not a binary operator");
|
2020-01-01 04:20:42 +08:00
|
|
|
}
|
|
|
|
return Expr<LOGICAL>{Constant<LOGICAL>{result}};
|
|
|
|
}
|
|
|
|
return Expr<LOGICAL>{std::move(operation)};
|
|
|
|
}
|
|
|
|
|
|
|
|
FOR_EACH_LOGICAL_KIND(template class ExpressionBase, )
|
|
|
|
template class ExpressionBase<SomeLogical>;
|
2020-03-29 12:00:16 +08:00
|
|
|
} // namespace Fortran::evaluate
|