The infrastructure in semantics that is used to check that the left-hand sides of normal assignment statements are really definable variables was not being used to check whether the LHSs of pointer assignments are modifiable, and so most cases of unmodifiable pointers are left undiagnosed. Rework the semantics checking for pointer assignments, NULLIFY statements, pointer dummy arguments, &c. so that cases of unmodifiable pointers are properly caught. This has been done by extracting all the various definability checking code that has been implemented for different contexts in Fortran into one new facility. The new consolidated definability checking code returns messages meant to be attached as "because: " explanations to context-dependent errors like "left-hand side of assignment is not definable". These new error message texts and their attached explanations affect many existing tests, which have been updated. The testing infrastructure was extended by another patch to properly compare warnings and explanatory messages, which had been ignored until recently. Differential Revision: https://reviews.llvm.org/D136979
48 lines
1.6 KiB
C++
48 lines
1.6 KiB
C++
//===-- lib/Semantics/pointer-assignment.h --------------------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef FORTRAN_SEMANTICS_POINTER_ASSIGNMENT_H_
|
|
#define FORTRAN_SEMANTICS_POINTER_ASSIGNMENT_H_
|
|
|
|
#include "flang/Evaluate/expression.h"
|
|
#include "flang/Parser/char-block.h"
|
|
#include "flang/Semantics/type.h"
|
|
#include <string>
|
|
|
|
namespace Fortran::evaluate::characteristics {
|
|
struct DummyDataObject;
|
|
}
|
|
|
|
namespace Fortran::evaluate {
|
|
class FoldingContext;
|
|
}
|
|
|
|
namespace Fortran::semantics {
|
|
|
|
class Symbol;
|
|
|
|
bool CheckPointerAssignment(
|
|
evaluate::FoldingContext &, const evaluate::Assignment &, const Scope &);
|
|
bool CheckPointerAssignment(evaluate::FoldingContext &, const SomeExpr &lhs,
|
|
const SomeExpr &rhs, const Scope &, bool isBoundsRemapping = false);
|
|
bool CheckStructConstructorPointerComponent(evaluate::FoldingContext &,
|
|
const Symbol &lhs, const SomeExpr &rhs, const Scope &);
|
|
bool CheckPointerAssignment(evaluate::FoldingContext &,
|
|
parser::CharBlock source, const std::string &description,
|
|
const evaluate::characteristics::DummyDataObject &, const SomeExpr &rhs,
|
|
const Scope &);
|
|
|
|
// Checks whether an expression is a valid static initializer for a
|
|
// particular pointer designator.
|
|
bool CheckInitialTarget(evaluate::FoldingContext &, const SomeExpr &pointer,
|
|
const SomeExpr &init, const Scope &);
|
|
|
|
} // namespace Fortran::semantics
|
|
|
|
#endif // FORTRAN_SEMANTICS_POINTER_ASSIGNMENT_H_
|