forked from carbon-language/carbon-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
exec_program.h
30 lines (22 loc) · 1.12 KB
/
exec_program.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// 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/base/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_