Files
carbon-lang/toolchain/parse/parse.cpp
T
Jon Ross-Perkins acbe6530c3 Move diagnostics into a namespace (#5173)
What this really does is avoids shadowing names, so that we can
comfortable have things like `Check::DiagnosticEmitter` or
`Check::DiagnosticLoc` without shadowing being a concern.

Note, down this path I'm also thinking about:

- Renaming misc DiagnosticConsumer/DiagnosticEmitter classes, possibly
just to DiagnosticConsumer/DiagnosticEmitter (so
`Check::DiagnosticEmitter` instead of `SemIRLocDiagnosticEmitter`).
- Dropping `Diagnostic` from `Emitter::DiagnosticBuilder`.
- But not for `Check::DiagnosticBuilder`, because `Check::Builder` would
be ambiguous.
- Renaming diagnostics/diagnostic_* to drop "diagnostic".

[Discussion about SemIRLoc ->
DiagnosticLoc](https://discord.com/channels/655572317891461132/655578254970716160/1353771570463768698)
reminded me of this (in particular the older [Check::DiagnosticBuilder
discussion](https://discord.com/channels/655572317891461132/655578254970716160/1344363562608627763)),
but I'd only do that rename if there's matching consensus about a path
forward where we keep SemIRLoc, and in a way that it's only ever used
for diagnostics (the divergence from which is at the root of current
LocId discussion).

I'm trying to keep that separate from a namespace addition for clarity.
2025-03-26 19:12:10 +00:00

63 lines
2.2 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 "toolchain/parse/parse.h"
#include "common/check.h"
#include "toolchain/base/pretty_stack_trace_function.h"
#include "toolchain/parse/context.h"
#include "toolchain/parse/handle.h"
#include "toolchain/parse/node_kind.h"
namespace Carbon::Parse {
auto HandleInvalid(Context& context) -> void {
CARBON_FATAL("The Invalid state shouldn't be on the stack: {0}",
context.PopState());
}
auto Parse(Lex::TokenizedBuffer& tokens, Diagnostics::Consumer& consumer,
llvm::raw_ostream* vlog_stream) -> Tree {
// Delegate to the parser.
Tree tree(tokens);
Context context(&tree, &tokens, &consumer, vlog_stream);
PrettyStackTraceFunction context_dumper(
[&](llvm::raw_ostream& output) { context.PrintForStackDump(output); });
context.AddLeafNode(NodeKind::FileStart,
context.ConsumeChecked(Lex::TokenKind::FileStart));
context.PushState(State::DeclScopeLoop);
while (!context.state_stack().empty()) {
switch (context.state_stack().back().state) {
#define CARBON_PARSE_STATE(Name) \
case State::Name: \
Handle##Name(context); \
break;
#include "toolchain/parse/state.def"
}
}
context.AddLeafNode(NodeKind::FileEnd, *context.position());
// Mark the tree as potentially having errors if there were errors coming in
// from the tokenized buffer or we diagnosed new errors.
tree.set_has_errors(tokens.has_errors() || context.has_errors());
if (auto verify = tree.Verify(); !verify.ok()) {
// TODO: This is temporarily printing to stderr directly during development.
// If we can, restrict this to a subtree with the error and add it to the
// stack trace (such as with PrettyStackTraceFunction). Otherwise, switch
// back to vlog_stream prior to broader distribution so that end users are
// hopefully comfortable copy-pasting stderr when there are bugs in tree
// construction.
tree.Print(llvm::errs());
CARBON_FATAL("Invalid tree returned by Parse(): {0}", verify.error());
}
return tree;
}
} // namespace Carbon::Parse