LLDB mainline
DumpRegisterValue.cpp
Go to the documentation of this file.
1//===-- DumpRegisterValue.cpp ---------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
13#include "lldb/Utility/Endian.h"
20#include "llvm/ADT/bit.h"
21
22using namespace lldb;
23
24template <typename T>
26 lldb_private::CompilerType &fields_compiler_type,
27 T value,
30 lldb::ByteOrder target_order = exe_scope->CalculateProcess()->GetByteOrder();
31
32 // For the bitfield types we generate, it is expected that the fields are
33 // in what is usually a big endian order. Most significant field first.
34 // This is also clang's internal ordering and the order we want to print
35 // them. On a big endian host this all matches up, for a little endian
36 // host we have to swap the order of the fields before display.
37 if (target_order == lldb::ByteOrder::eByteOrderLittle) {
38 value = flags_type.ReverseFieldOrder(value);
39 }
40
41 // Then we need to match the target's endian on a byte level as well.
42 if (lldb_private::endian::InlHostByteOrder() != target_order)
43 value = llvm::byteswap(value);
44
45 lldb_private::DataExtractor data_extractor{
46 &value, sizeof(T), lldb_private::endian::InlHostByteOrder(), 8};
47
49 exe_scope, fields_compiler_type, lldb_private::ConstString(),
50 data_extractor);
53 [](llvm::StringRef varname) {
54 // Unnamed bit-fields are padding that we don't want to show.
55 return varname.size();
56 };
57 dump_options.SetChildPrintingDecider(decider).SetHideRootType(true);
58
59 if (llvm::Error error = vobj_sp->Dump(strm, dump_options))
60 strm << "error: " << toString(std::move(error));
61}
62
64 const RegisterInfo &reg_info,
65 bool prefix_with_name,
66 bool prefix_with_alt_name, Format format,
67 uint32_t reg_name_right_align_at,
68 ExecutionContextScope *exe_scope,
69 bool print_flags, TargetSP target_sp) {
70 DataExtractor data;
71 if (!reg_val.GetData(data))
72 return;
73
74 bool name_printed = false;
75 // For simplicity, alignment of the register name printing applies only in
76 // the most common case where:
77 //
78 // prefix_with_name^prefix_with_alt_name is true
79 //
80 StreamString format_string;
81 if (reg_name_right_align_at && (prefix_with_name ^ prefix_with_alt_name))
82 format_string.Printf("%%%us", reg_name_right_align_at);
83 else
84 format_string.Printf("%%s");
85 std::string fmt = std::string(format_string.GetString());
86 if (prefix_with_name) {
87 if (reg_info.name) {
88 s.Printf(fmt.c_str(), reg_info.name);
89 name_printed = true;
90 } else if (reg_info.alt_name) {
91 s.Printf(fmt.c_str(), reg_info.alt_name);
92 prefix_with_alt_name = false;
93 name_printed = true;
94 }
95 }
96 if (prefix_with_alt_name) {
97 if (name_printed)
98 s.PutChar('/');
99 if (reg_info.alt_name) {
100 s.Printf(fmt.c_str(), reg_info.alt_name);
101 name_printed = true;
102 } else if (!name_printed) {
103 // No alternate name but we were asked to display a name, so show the
104 // main name
105 s.Printf(fmt.c_str(), reg_info.name);
106 name_printed = true;
107 }
108 }
109 if (name_printed)
110 s.PutCString(" = ");
111
112 if (format == eFormatDefault)
113 format = reg_info.format;
114
115 DumpDataExtractor(data, &s,
116 0, // Offset in "data"
117 format, // Format to use when dumping
118 reg_info.byte_size, // item_byte_size
119 1, // item_count
120 UINT32_MAX, // num_per_line
121 LLDB_INVALID_ADDRESS, // base_addr
122 0, // item_bit_size
123 0, // item_bit_offset
124 exe_scope);
125
126 const RegisterTypeFlags *flags_type =
127 llvm::dyn_cast_if_present<RegisterTypeFlags>(reg_info.register_type);
128 if (!print_flags || !flags_type || !exe_scope || !target_sp ||
129 (reg_info.byte_size != 4 && reg_info.byte_size != 8))
130 return;
131
132 CompilerType register_compiler_type = target_sp->GetRegisterType(reg_info);
133 if (!register_compiler_type.IsValid())
134 return;
135
136 // Use a new stream so we can remove a trailing newline later.
137 StreamString register_type_stream;
138
139 if (reg_info.byte_size == 4) {
140 dump_type_value(*flags_type, register_compiler_type, reg_val.GetAsUInt32(),
141 exe_scope, register_type_stream);
142 } else {
143 dump_type_value(*flags_type, register_compiler_type, reg_val.GetAsUInt64(),
144 exe_scope, register_type_stream);
145 }
146
147 // Registers are indented like:
148 // (lldb) register read foo
149 // foo = 0x12345678
150 // So we need to indent to match that.
151
152 // First drop the extra newline that the value printer added. The register
153 // command will add one itself.
154 llvm::StringRef register_type_str =
155 register_type_stream.GetString().drop_back();
156
157 // End the line that contains " foo = 0x12345678".
158 s.EOL();
159
160 // Then split the value lines and indent each one.
161 bool first = true;
162 while (register_type_str.size()) {
163 std::pair<llvm::StringRef, llvm::StringRef> split =
164 register_type_str.split('\n');
165 register_type_str = split.second;
166 // Indent as much as the stream does.
167 s.Indent();
168 // Indent further to match where the register name finishes.
169 s.Printf(fmt.c_str(), "");
170
171 // Lines after the first won't have " = " so compensate for that.
172 if (!first)
173 s << " ";
174 first = false;
175
176 s << split.first;
177
178 // On the last line we don't want a newline because the command will add
179 // one too.
180 if (register_type_str.size())
181 s.EOL();
182 }
183}
static llvm::raw_ostream & error(Stream &strm)
static void dump_type_value(const lldb_private::RegisterTypeFlags &flags_type, lldb_private::CompilerType &fields_compiler_type, T value, lldb_private::ExecutionContextScope *exe_scope, lldb_private::Stream &strm)
static std::string toString(const Checksum &checksum)
Generic representation of a type in a programming language.
A uniqued constant string class.
Definition ConstString.h:40
An data extractor class.
DumpValueObjectOptions & SetHideRootType(bool hide_root_type=false)
DumpValueObjectOptions & SetChildPrintingDecider(ChildPrintingDecider decider)
std::function< bool(llvm::StringRef)> ChildPrintingDecider
"lldb/Target/ExecutionContextScope.h" Inherit from this if your object can reconstruct its execution ...
virtual lldb::ProcessSP CalculateProcess()=0
bool GetData(DataExtractor &data) const
uint64_t GetAsUInt64(uint64_t fail_value=UINT64_MAX, bool *success_ptr=nullptr) const
uint32_t GetAsUInt32(uint32_t fail_value=UINT32_MAX, bool *success_ptr=nullptr) const
llvm::StringRef GetString() const
A stream class that can stream formatted output to a file.
Definition Stream.h:28
size_t Indent(llvm::StringRef s="")
Indent the current line in the stream.
Definition Stream.cpp:157
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
Definition Stream.cpp:134
size_t PutCString(llvm::StringRef cstr)
Output a C string to the stream.
Definition Stream.cpp:63
size_t PutChar(char ch)
Definition Stream.cpp:131
size_t EOL()
Output and End of Line character to the stream.
Definition Stream.cpp:155
static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, lldb::ByteOrder byte_order, uint32_t addr_byte_size, lldb::addr_t address=LLDB_INVALID_ADDRESS, ValueObjectManager *manager=nullptr)
These routines create ValueObjectConstResult ValueObjects from various data sources.
#define LLDB_INVALID_ADDRESS
#define UINT32_MAX
lldb::ByteOrder InlHostByteOrder()
Definition Endian.h:25
lldb::offset_t DumpDataExtractor(const DataExtractor &DE, Stream *s, lldb::offset_t offset, lldb::Format item_format, size_t item_byte_size, size_t item_count, size_t num_per_line, uint64_t base_addr, uint32_t item_bit_size, uint32_t item_bit_offset, ExecutionContextScope *exe_scope=nullptr, bool show_memory_tags=false)
Dumps item_count objects into the stream s.
void DumpRegisterValue(const RegisterValue &reg_val, Stream &s, const RegisterInfo &reg_info, bool prefix_with_name, bool prefix_with_alt_name, lldb::Format format, uint32_t reg_name_right_align_at=0, ExecutionContextScope *exe_scope=nullptr, bool print_flags=false, lldb::TargetSP target_sp=nullptr)
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
Format
Display format definitions.
ByteOrder
Byte ordering definitions.
std::shared_ptr< lldb_private::Target > TargetSP
Every register is described in detail including its name, alternate name (optional),...
const char * alt_name
Alternate name of this register, can be NULL.
uint32_t byte_size
Size in bytes of the register.
const RegisterType * register_type
If not nullptr, a type defined by XML descriptions.
const char * name
Name of this register, can't be NULL.
lldb::Format format
Default display format.