mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-25 19:30:12 +01:00
* Replaced std::exit() with return llvm::Expected/llvm::Error<T> for expected errors like invalid syntax. * Use llvm::formatv() for formatting lexer error messages. x * Addresed merge errors. * Fixed impl scope. * Made ErrorBuilder::operator<< nodiscard, to catch code forgetting 'return' in 'return FATAL_COMPILATION_ERROR()'. * FatalComplationError() -> ParseAndLexContext::RecordLexerError(). Other usages of ERROR_TOKEN in lexer.lpp were actually supposed to be END_OF_FILE. * Update executable_semantics/syntax/parse_and_lex_context.h Co-authored-by: Jon Meow <jperkins@google.com> * Code review fixes. * Update executable_semantics/syntax/parser.ypp Co-authored-by: Jon Meow <jperkins@google.com> * More code review fixes. * Update executable_semantics/interpreter/type_checker.h Co-authored-by: Jon Meow <jperkins@google.com> * Yet more code review fixes... * Update executable_semantics/syntax/lexer.lpp Co-authored-by: Jon Meow <jperkins@google.com> * code review comments * Update executable_semantics/interpreter/interpreter.cpp Co-authored-by: Geoff Romer <gromer@google.com> * Apply suggestions from code review Co-authored-by: Jon Meow <jperkins@google.com> * Update executable_semantics/syntax/lexer.lpp Co-authored-by: Jon Meow <jperkins@google.com> * code review * code review * Apply suggestions from code review Co-authored-by: Jon Meow <jperkins@google.com> * formatted code * review comments * Switched to the new ErrorOr<V> error implementation * code review comments * fixed comment * restored ostream.h as #976 makes the change unnecesary * review comments Co-authored-by: Jon Meow <jperkins@google.com> Co-authored-by: Geoff Romer <gromer@google.com>
81 lines
2.8 KiB
C++
81 lines
2.8 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 <unistd.h>
|
|
|
|
#include <cstdio>
|
|
#include <cstring>
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "common/error.h"
|
|
#include "executable_semantics/common/arena.h"
|
|
#include "executable_semantics/common/nonnull.h"
|
|
#include "executable_semantics/interpreter/exec_program.h"
|
|
#include "executable_semantics/syntax/parse.h"
|
|
#include "llvm/Support/CommandLine.h"
|
|
#include "llvm/Support/InitLLVM.h"
|
|
|
|
// Adds the Carbon prelude to `declarations`.
|
|
static void AddPrelude(
|
|
std::string_view prelude_file_name, Carbon::Nonnull<Carbon::Arena*> arena,
|
|
std::vector<Carbon::Nonnull<Carbon::Declaration*>>* declarations) {
|
|
Carbon::ErrorOr<Carbon::AST> parse_result =
|
|
Carbon::Parse(arena, prelude_file_name, false);
|
|
if (!parse_result.ok()) {
|
|
// Try again with tracing, to help diagnose the problem.
|
|
Carbon::ErrorOr<Carbon::AST> trace_parse_result =
|
|
Carbon::Parse(arena, prelude_file_name, true);
|
|
FATAL() << "Failed to parse prelude: "
|
|
<< trace_parse_result.error().message();
|
|
}
|
|
const auto& prelude = *parse_result;
|
|
declarations->insert(declarations->begin(), prelude.declarations.begin(),
|
|
prelude.declarations.end());
|
|
}
|
|
|
|
// Prints an error message and returns error code value.
|
|
auto PrintError(const Carbon::Error& error) -> int {
|
|
llvm::errs() << error.message() << "\n";
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
auto main(int argc, char* argv[]) -> int {
|
|
llvm::setBugReportMsg(
|
|
"Please report issues to "
|
|
"https://github.com/carbon-language/carbon-lang/issues and include the "
|
|
"crash backtrace.\n");
|
|
llvm::InitLLVM init_llvm(argc, argv);
|
|
|
|
// Printing to stderr should flush stdout. This is most noticeable when stderr
|
|
// is piped to stdout.
|
|
llvm::errs().tie(&llvm::outs());
|
|
|
|
using llvm::cl::desc;
|
|
using llvm::cl::opt;
|
|
opt<bool> trace_option("trace", desc("Enable tracing"));
|
|
opt<std::string> input_file_name(llvm::cl::Positional, desc("<input file>"),
|
|
llvm::cl::Required);
|
|
opt<std::string> prelude_file_name(
|
|
"prelude", desc("<prelude file>"),
|
|
llvm::cl::init("executable_semantics/data/prelude.carbon"));
|
|
|
|
llvm::cl::ParseCommandLineOptions(argc, argv);
|
|
|
|
Carbon::Arena arena;
|
|
Carbon::ErrorOr<Carbon::AST> ast =
|
|
Carbon::Parse(&arena, input_file_name, trace_option);
|
|
if (!ast.ok()) {
|
|
return PrintError(ast.error());
|
|
}
|
|
AddPrelude(prelude_file_name, &arena, &ast->declarations);
|
|
|
|
// Typecheck and run the parsed program.
|
|
Carbon::ErrorOr<int> result = Carbon::ExecProgram(&arena, *ast, trace_option);
|
|
if (!result.ok()) {
|
|
return PrintError(result.error());
|
|
}
|
|
}
|