| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- // 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
- #ifndef CARBON_TOOLCHAIN_SEM_IR_DIAGNOSTIC_LOC_CONVERTER_H_
- #define CARBON_TOOLCHAIN_SEM_IR_DIAGNOSTIC_LOC_CONVERTER_H_
- #include "llvm/ADT/ArrayRef.h"
- #include "llvm/ADT/SmallVector.h"
- #include "toolchain/diagnostics/emitter.h"
- #include "toolchain/parse/tree_and_subtrees.h"
- #include "toolchain/sem_ir/absolute_node_id.h"
- #include "toolchain/sem_ir/file.h"
- #include "toolchain/sem_ir/ids.h"
- namespace Carbon::SemIR {
- // Converter from compact location information into a diagnostic location
- // describing a filename, line location, and potentially a sequence of imports.
- // Such diagnostics locations are used to render user-facing diagnostics and
- // also locations for stack trace in crash diagnostics.
- class DiagnosticLocConverter {
- public:
- // Information about an import within which the location was found.
- struct ImportLoc {
- enum Kind {
- // A regular Carbon `import`.
- Import,
- // A C++ `#include`.
- CppInclude,
- // A C++ module import.
- CppModuleImport,
- // A C++ macro expansion.
- CppMacroExpansion,
- };
- // The location of the import.
- Diagnostics::Loc loc;
- // The kind of import.
- Kind kind;
- // The name of the imported module for CppInclude, or the complete macro
- // expansion diagnostic message for CppMacroExpansion.
- // TODO: In the latter case, provide just the macro name.
- // TODO: Include the name of the imported library in this information for
- // Import so it can be mentioned in the diagnostic.
- llvm::StringRef imported_name;
- };
- // Information about a location that has been converted from a LocId to a
- // diagnostic location.
- struct LocAndImports {
- llvm::SmallVector<ImportLoc> imports;
- Diagnostics::ConvertedLoc loc;
- };
- // `tree_and_subtrees_getters` and `sem_ir` must not be null.
- explicit DiagnosticLocConverter(
- const Parse::GetTreeAndSubtreesStore* tree_and_subtrees_getters,
- const File* sem_ir)
- : tree_and_subtrees_getters_(tree_and_subtrees_getters),
- sem_ir_(sem_ir) {}
- // Converts the given location into a sequence of import locations and a final
- // diagnostic location.
- auto ConvertWithImports(LocId loc_id, bool token_only) const -> LocAndImports;
- // Converts the given location into a diagnostic location.
- auto Convert(LocId loc_id, bool token_only) const
- -> Diagnostics::ConvertedLoc;
- private:
- // Converts an `absolute_node_id` in either a Carbon file or C++ import to a
- // diagnostic location.
- auto ConvertImpl(AbsoluteNodeId absolute_node_id, bool token_only) const
- -> Diagnostics::ConvertedLoc;
- // Converts a `node_id` corresponding to a specific check IR to a diagnostic
- // location.
- auto ConvertImpl(CheckIRId check_ir_id, Parse::NodeId node_id,
- bool token_only) const -> Diagnostics::ConvertedLoc;
- // Converts a location pointing into C++ code to a diagnostic location.
- auto ConvertImpl(ClangSourceLocId clang_source_loc_id) const
- -> Diagnostics::ConvertedLoc;
- // Converters for each SemIR.
- const Parse::GetTreeAndSubtreesStore* tree_and_subtrees_getters_;
- // The current SemIR being processed.
- const File* sem_ir_;
- };
- } // namespace Carbon::SemIR
- #endif // CARBON_TOOLCHAIN_SEM_IR_DIAGNOSTIC_LOC_CONVERTER_H_
|