Files
carbon-lang/executable_semantics/ast/declaration.h
T
Jon Meow 8fccecadeb Refactor output to be more streaming-focused. (#666)
- Switch code to llvm::raw_ostream as part of standardizing output forms.
    - Preferring llvm::raw_ostream over std::ostream because other tooling code should be expected to rely on llvm more closely, and an overall preference towards library consistency.
    - There are a couple spots in syntax/ that still use std streams, but I'd prefer to take a separate PR to see how best to address those.
    - std::boolalpha doesn't work with llvm, so I've implemented equivalent in a couple places (not enough that it felt like worth making a helper function).
- Implement Print(ostream) as consistently as we can, as an instance member.
    - This facilitates the use of the common/ostream.h template to provide operators.
    - Preferring this approach so that Print is easily accessible via gdb, per suggestion on #executable-semantics.
- Switch code currently calling `type->Print(ostream)` to instead do `ostream << *type`.
- Remove the unused `PrintTypeEnv`, nothing used it and the declaration didn't match the definition.
2021-07-20 13:16:48 -07:00

101 lines
3.1 KiB
C++

// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#ifndef EXECUTABLE_SEMANTICS_AST_DECLARATION_H_
#define EXECUTABLE_SEMANTICS_AST_DECLARATION_H_
#include <list>
#include <string>
#include "common/ostream.h"
#include "executable_semantics/ast/function_definition.h"
#include "executable_semantics/ast/member.h"
#include "executable_semantics/ast/struct_definition.h"
#include "executable_semantics/interpreter/address.h"
#include "executable_semantics/interpreter/dictionary.h"
namespace Carbon {
struct Value;
using TypeEnv = Dictionary<std::string, const Value*>;
using Env = Dictionary<std::string, Address>;
struct TypeCheckContext {
// Symbol table mapping names of runtime entities to their type.
TypeEnv types;
// Symbol table mapping names of compile time entities to their value.
Env values;
};
enum class DeclarationKind {
FunctionDeclaration,
StructDeclaration,
ChoiceDeclaration,
VariableDeclaration,
};
struct FunctionDeclaration {
static constexpr DeclarationKind Kind = DeclarationKind::FunctionDeclaration;
FunctionDefinition definition;
};
struct StructDeclaration {
static constexpr DeclarationKind Kind = DeclarationKind::StructDeclaration;
StructDefinition definition;
};
struct ChoiceDeclaration {
static constexpr DeclarationKind Kind = DeclarationKind::ChoiceDeclaration;
int line_num;
std::string name;
std::list<std::pair<std::string, const Expression*>> alternatives;
};
// Global variable definition implements the Declaration concept.
struct VariableDeclaration {
static constexpr DeclarationKind Kind = DeclarationKind::VariableDeclaration;
int source_location;
std::string name;
const Expression* type;
const Expression* initializer;
};
class Declaration {
public:
static auto MakeFunctionDeclaration(FunctionDefinition definition)
-> const Declaration;
static auto MakeStructDeclaration(int line_num, std::string name,
std::list<Member*> members)
-> const Declaration;
static auto MakeChoiceDeclaration(
int line_num, std::string name,
std::list<std::pair<std::string, const Expression*>> alternatives)
-> const Declaration;
static auto MakeVariableDeclaration(int source_location, std::string name,
const Expression* type,
const Expression* initializer)
-> const Declaration;
auto GetFunctionDeclaration() const -> const FunctionDeclaration&;
auto GetStructDeclaration() const -> const StructDeclaration&;
auto GetChoiceDeclaration() const -> const ChoiceDeclaration&;
auto GetVariableDeclaration() const -> const VariableDeclaration&;
void Print(llvm::raw_ostream& out) const;
inline auto tag() const -> DeclarationKind {
return std::visit([](const auto& t) { return t.Kind; }, value);
}
private:
std::variant<FunctionDeclaration, StructDeclaration, ChoiceDeclaration,
VariableDeclaration>
value;
};
} // namespace Carbon
#endif // EXECUTABLE_SEMANTICS_AST_DECLARATION_H_