mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:00:12 +01:00
Adds support to the `dump` debugger command for named constraint ids,
which are printed as `constraint<number>`. While doing so, we print
whether the `constraint` is complete or not, and add the same to
`interface` to match.
And we noticed that the printing of name and name scope ids, which are
not tagged, are very verbose by adding 7 `0`s to them for no reason. So
make the dump output easier to read by dropping 0 prefixes.
Before:
```
name_scope00000000: {inst: inst0000000E, parent_scope: name_scope<none>, has_error: false, extended_scopes: [], names: {name00000000: inst6000000F, name00000001: inst60000011}} {kind: Namespace, arg0: name_scope00000000, arg1: inst<none>, type: type(inst(NamespaceType))} `package`
```
After:
```
name_scope0: {inst: instE, parent_scope: name_scope<none>, has_error: false, extended_scopes: [], names: {name0: inst6000000F, name1: inst60000011}} {kind: Namespace, arg0: name_scope0, arg1: inst<none>, type: type(inst(NamespaceType))} `package`
```
52 lines
2.1 KiB
C++
52 lines
2.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
|
|
|
|
// This library contains functions to assist dumping objects to stderr during
|
|
// interactive debugging. Functions named `Dump` are intended for direct use by
|
|
// developers, and should use overload resolution to determine which will be
|
|
// invoked. The debugger should do namespace resolution automatically. For
|
|
// example:
|
|
//
|
|
// - lldb: `expr Dump(tokens, id)`
|
|
// - gdb: `call Dump(tokens, id)`
|
|
|
|
#ifndef CARBON_TOOLCHAIN_SEM_IR_DUMP_H_
|
|
#define CARBON_TOOLCHAIN_SEM_IR_DUMP_H_
|
|
|
|
#ifndef NDEBUG
|
|
|
|
#include "toolchain/sem_ir/file.h"
|
|
|
|
namespace Carbon::SemIR {
|
|
|
|
auto Dump(const File& file, ClassId class_id) -> std::string;
|
|
auto Dump(const File& file, ConstantId const_id) -> std::string;
|
|
auto Dump(const File& file, EntityNameId entity_name_id) -> std::string;
|
|
auto Dump(const File& file, FacetTypeId facet_type_id) -> std::string;
|
|
auto Dump(const File& file, FunctionId function_id) -> std::string;
|
|
auto Dump(const File& file, GenericId generic_id) -> std::string;
|
|
auto Dump(const File& file, IdentifiedFacetTypeId identified_facet_type_id)
|
|
-> std::string;
|
|
auto Dump(const File& file, ImplId impl_id) -> std::string;
|
|
auto Dump(const File& file, InstBlockId inst_block_id) -> std::string;
|
|
auto Dump(const File& file, InstId inst_id) -> std::string;
|
|
auto Dump(const File& file, InterfaceId interface_id) -> std::string;
|
|
auto Dump(const File& file, LocId loc_id) -> std::string;
|
|
auto Dump(const File& file, NameId name_id) -> std::string;
|
|
auto Dump(const File& file, NameScopeId name_scope_id) -> std::string;
|
|
auto Dump(const File& file, NamedConstraintId named_constraint_id)
|
|
-> std::string;
|
|
auto Dump(const File& file, SpecificId specific_id) -> std::string;
|
|
auto Dump(const File& file, SpecificInterfaceId specific_interface_id)
|
|
-> std::string;
|
|
auto Dump(const File& file, StructTypeFieldsId struct_type_fields_id)
|
|
-> std::string;
|
|
auto Dump(const File& file, TypeId type_id) -> std::string;
|
|
|
|
} // namespace Carbon::SemIR
|
|
|
|
#endif // NDEBUG
|
|
|
|
#endif // CARBON_TOOLCHAIN_SEM_IR_DUMP_H_
|