Files
carbon-lang/explorer/interpreter/exec_program.h
T
Jon Ross-Perkins 62ee4a5c7a Suppress Print intrinsic output in the fuzzer. (#2784)
Related to #2780, but mostly an issue when running over the committed corpus since we use Print a lot.
2023-04-19 16:56:02 -07:00

31 lines
1.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
// Helpers should be added here when logic in syntax.ypp is more than a single
// statement. The intent is to minimize the amount of C++ in the .ypp file, to
// improve ease of maintenance.
#ifndef CARBON_EXPLORER_INTERPRETER_EXEC_PROGRAM_H_
#define CARBON_EXPLORER_INTERPRETER_EXEC_PROGRAM_H_
#include "explorer/ast/ast.h"
#include "explorer/interpreter/trace_stream.h"
#include "llvm/Support/raw_ostream.h"
namespace Carbon {
// Perform semantic analysis on the AST.
auto AnalyzeProgram(Nonnull<Arena*> arena, AST ast,
Nonnull<TraceStream*> trace_stream,
Nonnull<llvm::raw_ostream*> print_stream) -> ErrorOr<AST>;
// Run the program's `Main` function.
auto ExecProgram(Nonnull<Arena*> arena, AST ast,
Nonnull<TraceStream*> trace_stream,
Nonnull<llvm::raw_ostream*> print_stream) -> ErrorOr<int>;
} // namespace Carbon
#endif // CARBON_EXPLORER_INTERPRETER_EXEC_PROGRAM_H_