llvm/flang/lib/semantics/scope.h
Tim Keith d384116347 [flang] Address review comments.
Use "namespace Fortran::semantics".

Add helper MakeSymbol() functions to ResolveNameVisitor to make a symbol
in the current scope.

Start work on subroutines, similar to what's been done for functions.

Original-commit: flang-compiler/f18@afe84af1c7
Reviewed-on: https://github.com/flang-compiler/f18/pull/30
2018-03-23 12:24:29 -07:00

76 lines
1.9 KiB
C++

#ifndef FORTRAN_SEMANTICS_SCOPE_H_
#define FORTRAN_SEMANTICS_SCOPE_H_
#include "../parser/idioms.h"
#include "../parser/parse-tree.h"
#include "attr.h"
#include "symbol.h"
#include <list>
#include <map>
#include <string>
namespace Fortran::semantics {
class Scope {
public:
// root of the scope tree; contains intrinsics:
static const Scope systemScope;
static Scope globalScope; // contains program-units
enum class Kind {
System,
Global,
Module,
MainProgram,
Subprogram,
};
Scope(const Scope &parent, Kind kind) : parent_{parent}, kind_{kind} {}
const Scope &parent() const {
CHECK(kind_ != Kind::System);
return parent_;
}
Kind kind() const { return kind_; }
/// Make a scope nested in this one
Scope &MakeScope(Kind kind);
/// If there is a symbol with this name already in the scope, return it.
/// Otherwise make a new one and return that.
Symbol &GetOrMakeSymbol(const parser::Name &name);
/// Make a Symbol with unknown details.
Symbol &MakeSymbol(
const parser::Name &name, const Attrs &attrs = Attrs::EMPTY);
/// Make a Symbol with provided details.
template<typename D>
Symbol &MakeSymbol(const parser::Name &name, D &&details) {
const auto &result =
symbols_.try_emplace(name, *this, name, Attrs::EMPTY, details);
return result.first->second;
}
template<typename D>
Symbol &MakeSymbol(
const parser::Name &name, const Attrs &attrs, D &&details) {
const auto &result =
symbols_.try_emplace(name, *this, name, attrs, details);
return result.first->second;
}
void EraseSymbol(const parser::Name &name) {
symbols_.erase(name);
}
private:
const Scope &parent_;
const Kind kind_;
std::list<Scope> children_;
std::map<parser::Name, Symbol> symbols_;
friend std::ostream &operator<<(std::ostream &, const Scope &);
};
} // namespace Fortran::semantics
#endif // FORTRAN_SEMANTICS_SCOPE_H_