mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
I'm doing this to avoid macro name conflicts, following https://google.github.io/styleguide/cppguide.html#Preprocessor_Macros: "If you do export a macro from a header, it must have a globally unique name. To achieve this, it must be named with a prefix consisting of your project's namespace name (but upper case)." Commands run: ``` sed -i 's/\(DCHECK\|CHECK\|FATAL\|MAKE_UNIQUE_NAME\|MAKE_UNIQUE_NAME_IMPL\|RAW_EXITING_STREAM\|RETURN_IF_ERROR\|RETURN_IF_ERROR_IMPL\|ASSIGN_OR_RETURN\|ASSIGN_OR_RETURN_IMPL\|DIAGNOSTIC_KIND\|RETURN_IF_STACK_LIMITED\)(/CARBON_\1(/g' $(git ls-files *.cpp *.h *.lpp *.ypp *.def ':!third_party') sed -i 's/#undef DIAGNOSTIC_KIND/#undef CARBON_DIAGNOSTIC_KIND/' toolchain/diagnostics/diagnostic_registry.def ``` Note this isn't *quite* everything, but it's intended to be a large pass at everything: ``` ╚╡git grep '#define ' *.cpp *.h *.lpp *.ypp *.def ':!third_party' | grep -v '#define CARBON' | grep -v _H_ explorer/syntax/lexer.lpp: #define YY_USER_ACTION \ explorer/syntax/lexer.lpp: #define SIMPLE_TOKEN(name) \ explorer/syntax/lexer.lpp: #define ARG_TOKEN(name, arg) \ explorer/syntax/parse_and_lex_context.h:#define YY_DECL \ migrate_cpp/cpp_refactoring/var_decl.cpp:#define ABSTRACT_TYPE(Class, Base) migrate_cpp/cpp_refactoring/var_decl.cpp:#define TYPE(Class, Base) \ ``` We may in particular want to do a pass to clean up #ifdef guards and make them be CARBON_ rooted.
59 lines
2.0 KiB
C++
59 lines
2.0 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
|
|
|
|
#include "explorer/interpreter/exec_program.h"
|
|
|
|
#include <variant>
|
|
|
|
#include "common/check.h"
|
|
#include "common/ostream.h"
|
|
#include "explorer/common/arena.h"
|
|
#include "explorer/interpreter/interpreter.h"
|
|
#include "explorer/interpreter/resolve_control_flow.h"
|
|
#include "explorer/interpreter/resolve_names.h"
|
|
#include "explorer/interpreter/type_checker.h"
|
|
#include "llvm/Support/Error.h"
|
|
|
|
namespace Carbon {
|
|
|
|
auto ExecProgram(Nonnull<Arena*> arena, AST ast,
|
|
std::optional<Nonnull<llvm::raw_ostream*>> trace_stream)
|
|
-> ErrorOr<int> {
|
|
if (trace_stream) {
|
|
**trace_stream << "********** source program **********\n";
|
|
for (const auto decl : ast.declarations) {
|
|
**trace_stream << *decl;
|
|
}
|
|
}
|
|
SourceLocation source_loc("<Main()>", 0);
|
|
ast.main_call = arena->New<CallExpression>(
|
|
source_loc, arena->New<IdentifierExpression>(source_loc, "Main"),
|
|
arena->New<TupleLiteral>(source_loc));
|
|
// Although name resolution is currently done once, generic programming
|
|
// (particularly templates) may require more passes.
|
|
if (trace_stream) {
|
|
**trace_stream << "********** resolving names **********\n";
|
|
}
|
|
CARBON_RETURN_IF_ERROR(ResolveNames(ast));
|
|
if (trace_stream) {
|
|
**trace_stream << "********** resolving control flow **********\n";
|
|
}
|
|
CARBON_RETURN_IF_ERROR(ResolveControlFlow(ast));
|
|
if (trace_stream) {
|
|
**trace_stream << "********** type checking **********\n";
|
|
}
|
|
CARBON_RETURN_IF_ERROR(TypeChecker(arena, trace_stream).TypeCheck(ast));
|
|
if (trace_stream) {
|
|
**trace_stream << "\n";
|
|
**trace_stream << "********** type checking complete **********\n";
|
|
for (const auto decl : ast.declarations) {
|
|
**trace_stream << *decl;
|
|
}
|
|
**trace_stream << "********** starting execution **********\n";
|
|
}
|
|
return InterpProgram(ast, arena, trace_stream);
|
|
}
|
|
|
|
} // namespace Carbon
|