[MemProf] Templatize CallStackRadixTreeBuilder (NFC) (#117014)
[llvm-project.git] / flang / lib / Semantics / definable.h
blob709bbba494d10dd7342cd756d140461118db7a57
1 //===-- lib/Semantics/definable.h -------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef FORTRAN_SEMANTICS_DEFINABLE_H_
10 #define FORTRAN_SEMANTICS_DEFINABLE_H_
12 // Utilities for checking the definability of variables and pointers in context,
13 // including checks for attempted definitions in PURE subprograms.
14 // Fortran 2018 C1101, C1158, C1594, &c.
16 #include "flang/Common/enum-set.h"
17 #include "flang/Common/idioms.h"
18 #include "flang/Evaluate/expression.h"
19 #include "flang/Parser/char-block.h"
20 #include "flang/Parser/message.h"
21 #include <optional>
23 namespace Fortran::semantics {
25 class Symbol;
26 class Scope;
28 ENUM_CLASS(DefinabilityFlag,
29 VectorSubscriptIsOk, // a vector subscript may appear (i.e., assignment)
30 DuplicatesAreOk, // vector subscript may have duplicates
31 PointerDefinition, // a pointer is being defined, not its target
32 AcceptAllocatable, // treat allocatable as if it were a pointer
33 SourcedAllocation, // ALLOCATE(a,SOURCE=)
34 PolymorphicOkInPure, // don't check for polymorphic type in pure subprogram
35 DoNotNoteDefinition) // context does not imply definition
37 using DefinabilityFlags =
38 common::EnumSet<DefinabilityFlag, DefinabilityFlag_enumSize>;
40 // Tests a symbol or LHS variable or pointer for definability in a given scope.
41 // When the entity is not definable, returns a Message suitable for attachment
42 // to an error or warning message (as a "because: addendum) to explain why the
43 // entity cannot be defined.
44 // When the entity can be defined in that context, returns std::nullopt.
45 std::optional<parser::Message> WhyNotDefinable(
46 parser::CharBlock, const Scope &, DefinabilityFlags, const Symbol &);
47 std::optional<parser::Message> WhyNotDefinable(parser::CharBlock, const Scope &,
48 DefinabilityFlags, const evaluate::Expr<evaluate::SomeType> &);
50 // If a symbol would not be definable in a pure scope, or not be usable as the
51 // target of a pointer assignment in a pure scope, return a constant string
52 // describing why.
53 const char *WhyBaseObjectIsSuspicious(const Symbol &, const Scope &);
55 } // namespace Fortran::semantics
56 #endif // FORTRAN_SEMANTICS_DEFINABLE_H_