LLDB mainline
ValueObjectVariable.cpp
Go to the documentation of this file.
1//===-- ValueObjectVariable.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
10
11#include "lldb/Core/Address.h"
14#include "lldb/Core/Module.h"
15#include "lldb/Core/Value.h"
21#include "lldb/Symbol/Type.h"
24#include "lldb/Target/Process.h"
26#include "lldb/Target/Target.h"
29#include "lldb/Utility/Scalar.h"
30#include "lldb/Utility/Status.h"
32#include "lldb/lldb-types.h"
33
34#include "llvm/ADT/StringRef.h"
35
36#include <cassert>
37#include <memory>
38#include <optional>
39
40namespace lldb_private {
42}
43namespace lldb_private {
44class StackFrame;
45}
46namespace lldb_private {
47struct RegisterInfo;
48}
49using namespace lldb_private;
50
53 const lldb::VariableSP &var_sp) {
54 auto manager_sp = ValueObjectManager::Create();
55 return (new ValueObjectVariable(exe_scope, *manager_sp, var_sp))->GetSP();
56}
57
59 ValueObjectManager &manager,
60 const lldb::VariableSP &var_sp)
61 : ValueObject(exe_scope, manager), m_variable_sp(var_sp) {
62 // Do not attempt to construct one of these objects with no variable!
63 assert(m_variable_sp.get() != nullptr);
64 m_name = var_sp->GetName();
65}
66
68
70 Type *var_type = m_variable_sp->GetType();
71 if (var_type)
72 return var_type->GetForwardCompilerType();
73 return CompilerType();
74}
75
77 Type *var_type = m_variable_sp->GetType();
78 if (var_type)
79 return var_type->GetName();
80 return ConstString();
81}
82
84 Type *var_type = m_variable_sp->GetType();
85 if (var_type)
86 return var_type->GetForwardCompilerType().GetDisplayTypeName();
87 return ConstString();
88}
89
91 Type *var_type = m_variable_sp->GetType();
92 if (var_type)
93 return var_type->GetQualifiedName();
94 return ConstString();
95}
96
97llvm::Expected<uint32_t>
100
101 if (!type.IsValid())
102 return llvm::make_error<llvm::StringError>("invalid type",
103 llvm::inconvertibleErrorCode());
104
106 const bool omit_empty_base_classes = true;
107 auto child_count = type.GetNumChildren(omit_empty_base_classes, &exe_ctx);
108 if (!child_count)
109 return child_count;
110 return *child_count <= max ? *child_count : max;
111}
112
113std::optional<uint64_t> ValueObjectVariable::GetByteSize() {
115
117
118 if (!type.IsValid())
119 return {};
120
121 return type.GetByteSize(exe_ctx.GetBestExecutionContextScope());
122}
123
125 if (m_variable_sp)
126 return m_variable_sp->GetScope();
128}
129
131 SetValueIsValid(false);
132 m_error.Clear();
133
134 Variable *variable = m_variable_sp.get();
135 DWARFExpressionList &expr_list = variable->LocationExpressionList();
136
137 if (variable->GetLocationIsConstantValueData()) {
138 // expr doesn't contain DWARF bytes, it contains the constant variable
139 // value bytes themselves...
140 if (expr_list.GetExpressionData(m_data)) {
144 } else
145 m_error.SetErrorString("empty constant data");
146 // constant bytes can't be edited - sorry
148 } else {
149 lldb::addr_t loclist_base_load_addr = LLDB_INVALID_ADDRESS;
151
152 Target *target = exe_ctx.GetTargetPtr();
153 if (target) {
156 }
157
158 if (!expr_list.IsAlwaysValidSingleExpr()) {
159 SymbolContext sc;
160 variable->CalculateSymbolContext(&sc);
161 if (sc.function)
162 loclist_base_load_addr =
164 target);
165 }
166 Value old_value(m_value);
167 llvm::Expected<Value> maybe_value = expr_list.Evaluate(
168 &exe_ctx, nullptr, loclist_base_load_addr, nullptr, nullptr);
169
170 if (maybe_value) {
171 m_value = *maybe_value;
174
175 CompilerType compiler_type = GetCompilerType();
176 if (compiler_type.IsValid())
177 m_value.SetCompilerType(compiler_type);
178
180
181 // The size of the buffer within m_value can be less than the size
182 // prescribed by its type. E.g. this can happen when an expression only
183 // partially describes an object (say, because it contains DW_OP_piece).
184 //
185 // In this case, grow m_value to the expected size. An alternative way to
186 // handle this is to teach Value::GetValueAsData() and ValueObjectChild
187 // not to read past the end of a host buffer, but this gets impractically
188 // complicated as a Value's host buffer may be shared with a distant
189 // ancestor or sibling in the ValueObject hierarchy.
190 //
191 // FIXME: When we grow m_value, we should represent the added bits as
192 // undefined somehow instead of as 0's.
193 if (value_type == Value::ValueType::HostAddress &&
194 compiler_type.IsValid()) {
195 if (size_t value_buf_size = m_value.GetBuffer().GetByteSize()) {
196 size_t value_size = m_value.GetValueByteSize(&m_error, &exe_ctx);
197 if (m_error.Success() && value_buf_size < value_size)
198 m_value.ResizeData(value_size);
199 }
200 }
201
202 Process *process = exe_ctx.GetProcessPtr();
203 const bool process_is_alive = process && process->IsAlive();
204
205 switch (value_type) {
207 m_error.SetErrorString("invalid value");
208 break;
210 // The variable value is in the Scalar value inside the m_value. We can
211 // point our m_data right to it.
212 m_error =
213 m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
214 break;
215
219 // The DWARF expression result was an address in the inferior process.
220 // If this variable is an aggregate type, we just need the address as
221 // the main value as all child variable objects will rely upon this
222 // location and add an offset and then read their own values as needed.
223 // If this variable is a simple type, we read all data for it into
224 // m_data. Make sure this type has a value before we try and read it
225
226 // If we have a file address, convert it to a load address if we can.
227 if (value_type == Value::ValueType::FileAddress && process_is_alive)
228 m_value.ConvertToLoadAddress(GetModule().get(), target);
229
230 if (!CanProvideValue()) {
231 // this value object represents an aggregate type whose children have
232 // values, but this object does not. So we say we are changed if our
233 // location has changed.
234 SetValueDidChange(value_type != old_value.GetValueType() ||
235 m_value.GetScalar() != old_value.GetScalar());
236 } else {
237 // Copy the Value and set the context to use our Variable so it can
238 // extract read its value into m_data appropriately
239 Value value(m_value);
241 m_error =
242 value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
243
244 SetValueDidChange(value_type != old_value.GetValueType() ||
245 m_value.GetScalar() != old_value.GetScalar());
246 }
247 break;
248 }
249
251 } else {
252 m_error = maybe_value.takeError();
253 // could not find location, won't allow editing
255 }
256 }
257
258 return m_error.Success();
259}
260
262 Value::ValueType value_type = valobj.GetValue().GetValueType();
264 Process *process = exe_ctx.GetProcessPtr();
265 const bool process_is_alive = process && process->IsAlive();
266 const uint32_t type_info = valobj.GetCompilerType().GetTypeInfo();
267 const bool is_pointer_or_ref =
268 (type_info & (lldb::eTypeIsPointer | lldb::eTypeIsReference)) != 0;
269
270 switch (value_type) {
272 break;
274 // If this type is a pointer, then its children will be considered load
275 // addresses if the pointer or reference is dereferenced, but only if
276 // the process is alive.
277 //
278 // There could be global variables like in the following code:
279 // struct LinkedListNode { Foo* foo; LinkedListNode* next; };
280 // Foo g_foo1;
281 // Foo g_foo2;
282 // LinkedListNode g_second_node = { &g_foo2, NULL };
283 // LinkedListNode g_first_node = { &g_foo1, &g_second_node };
284 //
285 // When we aren't running, we should be able to look at these variables
286 // using the "target variable" command. Children of the "g_first_node"
287 // always will be of the same address type as the parent. But children
288 // of the "next" member of LinkedListNode will become load addresses if
289 // we have a live process, or remain a file address if it was a file
290 // address.
291 if (process_is_alive && is_pointer_or_ref)
293 else
295 break;
297 // Same as above for load addresses, except children of pointer or refs
298 // are always load addresses. Host addresses are used to store freeze
299 // dried variables. If this type is a struct, the entire struct
300 // contents will be copied into the heap of the
301 // LLDB process, but we do not currently follow any pointers.
302 if (is_pointer_or_ref)
304 else
306 break;
310 break;
311 }
312}
313
314
315
317 const ExecutionContextRef &exe_ctx_ref = GetExecutionContextRef();
318 if (exe_ctx_ref.HasFrameRef()) {
319 ExecutionContext exe_ctx(exe_ctx_ref);
320 StackFrame *frame = exe_ctx.GetFramePtr();
321 if (frame) {
322 return m_variable_sp->IsInScope(frame);
323 } else {
324 // This ValueObject had a frame at one time, but now we can't locate it,
325 // so return false since we probably aren't in scope.
326 return false;
327 }
328 }
329 // We have a variable that wasn't tied to a frame, which means it is a global
330 // and is always in scope.
331 return true;
332}
333
335 if (m_variable_sp) {
336 SymbolContextScope *sc_scope = m_variable_sp->GetSymbolContextScope();
337 if (sc_scope) {
338 return sc_scope->CalculateSymbolContextModule();
339 }
340 }
341 return lldb::ModuleSP();
342}
343
345 if (m_variable_sp)
346 return m_variable_sp->GetSymbolContextScope();
347 return nullptr;
348}
349
351 if (m_variable_sp) {
352 decl = m_variable_sp->GetDeclaration();
353 return true;
354 }
355 return false;
356}
357
361 else
363}
364
366 Status &error) {
367 if (!UpdateValueIfNeeded()) {
368 error.SetErrorString("unable to update value before writing");
369 return false;
370 }
371
375 RegisterContext *reg_ctx = exe_ctx.GetRegisterContext();
376 RegisterValue reg_value;
377 if (!reg_info || !reg_ctx) {
378 error.SetErrorString("unable to retrieve register info");
379 return false;
380 }
381 error = reg_value.SetValueFromString(reg_info, llvm::StringRef(value_str));
382 if (error.Fail())
383 return false;
384 if (reg_ctx->WriteRegister(reg_info, reg_value)) {
386 return true;
387 } else {
388 error.SetErrorString("unable to write back to register");
389 return false;
390 }
391 } else
392 return ValueObject::SetValueFromCString(value_str, error);
393}
394
396 if (!UpdateValueIfNeeded()) {
397 error.SetErrorString("unable to update value before writing");
398 return false;
399 }
400
404 RegisterContext *reg_ctx = exe_ctx.GetRegisterContext();
405 RegisterValue reg_value;
406 if (!reg_info || !reg_ctx) {
407 error.SetErrorString("unable to retrieve register info");
408 return false;
409 }
410 error = reg_value.SetValueFromData(*reg_info, data, 0, true);
411 if (error.Fail())
412 return false;
413 if (reg_ctx->WriteRegister(reg_info, reg_value)) {
415 return true;
416 } else {
417 error.SetErrorString("unable to write back to register");
418 return false;
419 }
420 } else
421 return ValueObject::SetData(data, error);
422}
static llvm::raw_ostream & error(Stream &strm)
Address & GetBaseAddress()
Get accessor for the base address of the range.
Definition: AddressRange.h:211
lldb::addr_t GetLoadAddress(Target *target) const
Get the load address.
Definition: Address.cpp:313
uint32_t GetAddressByteSize() const
Returns the size in bytes of an address of the current architecture.
Definition: ArchSpec.cpp:691
lldb::ByteOrder GetByteOrder() const
Returns the byte order for the architecture specification.
Definition: ArchSpec.cpp:738
static std::shared_ptr< ClusterManager > Create()
Definition: SharedCluster.h:24
Generic representation of a type in a programming language.
Definition: CompilerType.h:36
std::optional< uint64_t > GetByteSize(ExecutionContextScope *exe_scope) const
Return the size of the type in bytes.
ConstString GetDisplayTypeName() const
uint32_t GetTypeInfo(CompilerType *pointee_or_element_compiler_type=nullptr) const
llvm::Expected< uint32_t > GetNumChildren(bool omit_empty_base_classes, const ExecutionContext *exe_ctx) const
A uniqued constant string class.
Definition: ConstString.h:40
"lldb/Expression/DWARFExpressionList.h" Encapsulates a range map from file address range to a single ...
llvm::Expected< Value > Evaluate(ExecutionContext *exe_ctx, RegisterContext *reg_ctx, lldb::addr_t func_load_addr, const Value *initial_value_ptr, const Value *object_address_ptr) const
bool GetExpressionData(DataExtractor &data, lldb::addr_t func_load_addr=LLDB_INVALID_ADDRESS, lldb::addr_t file_addr=0) const
Get the expression data at the file address.
lldb::offset_t GetByteSize() const override
Get the number of bytes in the data buffer.
An data extractor class.
Definition: DataExtractor.h:48
void SetByteOrder(lldb::ByteOrder byte_order)
Set the byte_order value.
uint64_t GetByteSize() const
Get the number of bytes contained in this object.
const uint8_t * GetDataStart() const
Get the data start pointer.
void SetAddressByteSize(uint32_t addr_size)
Set the address byte size.
A class that describes the declaration location of a lldb object.
Definition: Declaration.h:24
Execution context objects refer to objects in the execution of the program that is being debugged.
bool HasFrameRef() const
Returns true if this object has a weak reference to a frame.
"lldb/Target/ExecutionContextScope.h" Inherit from this if your object can reconstruct its execution ...
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
ExecutionContextScope * GetBestExecutionContextScope() const
StackFrame * GetFramePtr() const
Returns a pointer to the frame object.
Target * GetTargetPtr() const
Returns a pointer to the target object.
Process * GetProcessPtr() const
Returns a pointer to the process object.
RegisterContext * GetRegisterContext() const
const AddressRange & GetAddressRange()
Definition: Function.h:447
A plug-in interface definition class for debugging a process.
Definition: Process.h:341
virtual bool IsAlive()
Check if a process is still alive.
Definition: Process.cpp:1124
virtual bool WriteRegister(const RegisterInfo *reg_info, const RegisterValue &reg_value)=0
Status SetValueFromString(const RegisterInfo *reg_info, llvm::StringRef value_str)
Status SetValueFromData(const RegisterInfo &reg_info, DataExtractor &data, lldb::offset_t offset, bool partial_data_ok)
This base class provides an interface to stack frames.
Definition: StackFrame.h:43
An error handling class.
Definition: Status.h:44
void Clear()
Clear the object state.
Definition: Status.cpp:166
void SetErrorString(llvm::StringRef err_str)
Set the current error string to err_str.
Definition: Status.cpp:232
bool Success() const
Test for success condition.
Definition: Status.cpp:278
"lldb/Symbol/SymbolContextScope.h" Inherit from this if your object is part of a symbol context and c...
virtual lldb::ModuleSP CalculateSymbolContextModule()
Defines a symbol context baton that can be handed other debug core functions.
Definition: SymbolContext.h:34
Function * function
The Function for a given query.
const ArchSpec & GetArchitecture() const
Definition: Target.h:1023
CompilerType GetForwardCompilerType()
Definition: Type.cpp:766
ConstString GetName()
Definition: Type.cpp:432
ConstString GetQualifiedName()
Definition: Type.cpp:771
A ValueObject that contains a root variable that may or may not have children.
ValueObjectVariable(ExecutionContextScope *exe_scope, ValueObjectManager &manager, const lldb::VariableSP &var_sp)
lldb::ValueType GetValueType() const override
SymbolContextScope * GetSymbolContextScope() override
lldb::ModuleSP GetModule() override
Return the module associated with this value object in case the value is from an executable file and ...
void DoUpdateChildrenAddressType(ValueObject &valobj) override
ConstString GetDisplayTypeName() override
bool SetData(DataExtractor &data, Status &error) override
const char * GetLocationAsCString() override
static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, const lldb::VariableSP &var_sp)
std::optional< uint64_t > GetByteSize() override
ConstString GetQualifiedTypeName() override
bool SetValueFromCString(const char *value_str, Status &error) override
lldb::VariableSP m_variable_sp
The variable that this value object is based upon.
llvm::Expected< uint32_t > CalculateNumChildren(uint32_t max) override
Should only be called by ValueObject::GetNumChildren().
bool GetDeclaration(Declaration &decl) override
CompilerType GetCompilerTypeImpl() override
void SetValueIsValid(bool valid)
Definition: ValueObject.h:1059
CompilerType GetCompilerType()
Definition: ValueObject.h:352
Status m_error
An error object that can describe any errors that occur when updating values.
Definition: ValueObject.h:930
DataExtractor m_data
A data extractor that can be used to extract the value.
Definition: ValueObject.h:926
void SetValueDidChange(bool value_changed)
Definition: ValueObject.h:1055
bool UpdateValueIfNeeded(bool update_format=true)
virtual const char * GetLocationAsCString()
Definition: ValueObject.h:522
virtual bool SetValueFromCString(const char *value_str, Status &error)
virtual bool SetData(DataExtractor &data, Status &error)
ConstString m_name
The name of this object.
Definition: ValueObject.h:924
const char * GetLocationAsCStringImpl(const Value &value, const DataExtractor &data)
const ExecutionContextRef & GetExecutionContextRef() const
Definition: ValueObject.h:330
virtual bool CanProvideValue()
const Value & GetValue() const
Definition: ValueObject.h:511
void SetAddressTypeOfChildren(AddressType at)
Definition: ValueObject.h:834
const Scalar & GetScalar() const
Definition: Value.h:112
Status GetValueAsData(ExecutionContext *exe_ctx, DataExtractor &data, Module *module)
Definition: Value.cpp:315
RegisterInfo * GetRegisterInfo() const
Definition: Value.cpp:140
ValueType
Type that describes Value::m_value.
Definition: Value.h:41
@ HostAddress
A host address value (for memory in the process that < A is using liblldb).
@ FileAddress
A file address value.
@ LoadAddress
A load address value.
@ Scalar
A raw scalar value.
ValueType GetValueType() const
Definition: Value.cpp:109
void SetCompilerType(const CompilerType &compiler_type)
Definition: Value.cpp:268
void SetContext(ContextType context_type, void *p)
Definition: Value.h:96
DataBufferHeap & GetBuffer()
Definition: Value.h:120
uint64_t GetValueByteSize(Status *error_ptr, ExecutionContext *exe_ctx)
Definition: Value.cpp:211
@ Variable
lldb_private::Variable *.
@ RegisterInfo
RegisterInfo * (can be a scalar or a vector register).
ContextType GetContextType() const
Definition: Value.h:87
void ConvertToLoadAddress(Module *module, Target *target)
Convert this value's file address to a load address, if possible.
Definition: Value.cpp:663
size_t ResizeData(size_t len)
Definition: Value.cpp:190
void SetBytes(const void *bytes, int len)
Definition: Value.cpp:88
DWARFExpressionList & LocationExpressionList()
Definition: Variable.h:76
void CalculateSymbolContext(SymbolContext *sc)
Definition: Variable.cpp:208
bool GetLocationIsConstantValueData() const
Definition: Variable.h:96
#define LLDB_INVALID_ADDRESS
Definition: lldb-defines.h:82
A class that represents a running process on the host machine.
@ eAddressTypeFile
Address is an address as found in an object or symbol file.
@ eAddressTypeLoad
Address is an address as in the current target inferior process.
@ eAddressTypeHost
Address is an address in the process that is running this code.
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
Definition: lldb-forward.h:479
std::shared_ptr< lldb_private::Variable > VariableSP
Definition: lldb-forward.h:481
uint64_t addr_t
Definition: lldb-types.h:80
std::shared_ptr< lldb_private::Module > ModuleSP
Definition: lldb-forward.h:370
@ eValueTypeInvalid
Every register is described in detail including its name, alternate name (optional),...