22#include "lldb/Host/Config.h"
54#include "llvm/Support/Compiler.h"
93 m_flags.m_is_synthetic_children_generated =
110 const ArchSpec &arch = target_sp->GetArchitecture();
123 bool did_change_formats =
false;
137 if (update_format && !did_change_formats)
151 m_flags.m_old_value_valid =
false;
153 m_flags.m_old_value_valid =
true;
168 bool need_compare_checksums =
false;
169 llvm::SmallVector<uint8_t, 16> old_checksum;
172 need_compare_checksums =
true;
175 old_checksum.begin());
184 const uint64_t max_checksum_size = 128;
187 need_compare_checksums =
false;
191 assert(!need_compare_checksums ||
196 else if (!
m_flags.m_value_did_change && !success) {
200 }
else if (need_compare_checksums) {
215 "[%s %p] checking for FormatManager revisions. ValueObject "
216 "rev: %d - Global rev: %d",
217 GetName().GetCString(),
static_cast<void *
>(
this),
221 bool any_change =
false;
245 m_flags.m_children_count_valid =
false;
246 m_flags.m_did_calculate_complete_objc_class_type =
false;
257 if (
m_flags.m_did_calculate_complete_objc_class_type) {
261 return compiler_type;
264 m_flags.m_did_calculate_complete_objc_class_type =
true;
270 return compiler_type;
274 if (std::optional<CompilerType> complete_type =
275 runtime->GetRuntimeType(compiler_type)) {
281 return compiler_type;
302 switch (value_type) {
328 sstr.
Printf(
"0x%*.*llx", addr_nibble_size, addr_nibble_size,
347 if (bitfield_bit_size)
358 LazyBool is_logical_true = language->IsLogicalTrue(*
this,
error);
359 switch (is_logical_true) {
362 return (is_logical_true ==
true);
390 "ValueObject: '{0}' not owned by its parent: '{1}'", child->
GetName(),
406 if (can_create && !
m_children.HasChildAtIndex(idx)) {
413 if (child !=
nullptr)
414 return child->
GetSP();
421 if (names.size() == 0)
424 for (llvm::StringRef name : names) {
425 root = root->GetChildMemberWithName(name);
433llvm::Expected<size_t>
435 bool omit_empty_base_classes =
true;
437 omit_empty_base_classes);
449 std::vector<uint32_t> child_indexes;
450 bool omit_empty_base_classes =
true;
455 const size_t num_child_indexes =
457 name, omit_empty_base_classes, child_indexes);
458 if (num_child_indexes == 0)
462 for (uint32_t idx : child_indexes)
464 child_sp = child_sp->GetChildAtIndex(idx, can_create);
472 if (
m_flags.m_children_count_valid) {
473 size_t children_count =
m_children.GetChildrenCount();
474 return children_count <= max ? children_count : max;
479 if (!
m_flags.m_children_count_valid) {
481 if (num_children_or_err)
484 return num_children_or_err;
492 return *value_or_err;
499 bool has_children =
false;
502 if (type_info & (eTypeHasChildren | eTypeIsPointer | eTypeIsReference))
512 m_flags.m_children_count_valid =
true;
517 bool omit_empty_base_classes =
true;
518 bool ignore_array_bounds =
false;
519 std::string child_name;
520 uint32_t child_byte_size = 0;
521 int32_t child_byte_offset = 0;
522 uint32_t child_bitfield_bit_size = 0;
523 uint32_t child_bitfield_bit_offset = 0;
524 bool child_is_base_class =
false;
525 bool child_is_deref_of_parent =
false;
526 uint64_t language_flags = 0;
527 const bool transparent_pointers =
true;
531 auto child_compiler_type_or_err =
533 &exe_ctx, idx, transparent_pointers, omit_empty_base_classes,
534 ignore_array_bounds, child_name, child_byte_size, child_byte_offset,
535 child_bitfield_bit_size, child_bitfield_bit_offset,
536 child_is_base_class, child_is_deref_of_parent,
this, language_flags);
537 if (!child_compiler_type_or_err || !child_compiler_type_or_err->IsValid()) {
539 child_compiler_type_or_err.takeError(),
540 "could not find child: {0}");
545 *
this, *child_compiler_type_or_err,
ConstString(child_name),
546 child_byte_size, child_byte_offset, child_bitfield_bit_size,
547 child_bitfield_bit_offset, child_is_base_class, child_is_deref_of_parent,
552 bool omit_empty_base_classes =
true;
553 bool ignore_array_bounds =
true;
554 std::string child_name;
555 uint32_t child_byte_size = 0;
556 int32_t child_byte_offset = 0;
557 uint32_t child_bitfield_bit_size = 0;
558 uint32_t child_bitfield_bit_offset = 0;
559 bool child_is_base_class =
false;
560 bool child_is_deref_of_parent =
false;
561 uint64_t language_flags = 0;
562 const bool transparent_pointers =
false;
566 auto child_compiler_type_or_err =
568 &exe_ctx, 0, transparent_pointers, omit_empty_base_classes,
569 ignore_array_bounds, child_name, child_byte_size, child_byte_offset,
570 child_bitfield_bit_size, child_bitfield_bit_offset,
571 child_is_base_class, child_is_deref_of_parent,
this, language_flags);
572 if (!child_compiler_type_or_err) {
574 child_compiler_type_or_err.takeError(),
575 "could not find child: {0}");
579 if (child_compiler_type_or_err->IsValid()) {
580 child_byte_offset += child_byte_size * idx;
583 *
this, *child_compiler_type_or_err,
ConstString(child_name),
584 child_byte_size, child_byte_offset, child_bitfield_bit_size,
585 child_bitfield_bit_offset, child_is_base_class,
592 return synth_valobj_sp->GetChildAtIndex(idx,
true).get();
598 std::string &destination,
605 std::string &destination,
613 destination =
"<incomplete type>";
619 if (
m_flags.m_is_getting_summary)
622 m_flags.m_is_getting_summary =
true;
646 target_sp->GetSummaryStatisticsCache()
647 .GetSummaryStatisticsForProvider(*summary_ptr);
651 summary_ptr->
FormatObject(
this, destination, actual_options);
653 summary_ptr->
FormatObject(
this, destination, actual_options);
655 m_flags.m_is_getting_summary =
false;
656 return !destination.empty();
679 bool is_char_arr_ptr(type_flags.
AnySet(eTypeIsArray | eTypeIsPointer) &&
680 pointee_or_element_compiler_type.
IsCharType());
681 if (!is_char_arr_ptr)
685 if (type_flags.
Test(eTypeIsArray))
692 uint32_t item_count) {
694 const uint32_t type_info =
GetTypeInfo(&pointee_or_element_compiler_type);
695 const bool is_pointer_type = type_info & eTypeIsPointer;
696 const bool is_array_type = type_info & eTypeIsArray;
697 if (!(is_pointer_type || is_array_type))
705 std::optional<uint64_t> item_type_size =
706 llvm::expectedToOptional(pointee_or_element_compiler_type.
GetByteSize(
710 const uint64_t bytes = item_count * *item_type_size;
711 const uint64_t offset = item_idx * *item_type_size;
713 if (item_idx == 0 && item_count == 1)
715 if (is_pointer_type) {
718 if (
error.Fail() || pointee_sp.get() ==
nullptr)
720 return pointee_sp->GetData(data,
error);
723 if (child_sp.get() ==
nullptr)
726 return child_sp->GetData(data,
error);
736 auto [addr, addr_type] =
743 addr = addr + offset;
745 module_sp->ResolveFileAddress(addr, so_addr);
752 if (
error.Success()) {
766 target->ReadMemory(target_addr, heap_buf_ptr->
GetBytes(), bytes,
768 if (!
error.Success()) {
773 size_t file_bytes_read =
774 target->ReadMemory(target_addr, heap_buf_ptr->
GetBytes(), bytes,
776 if (file_error.
Success() || file_bytes_read > 0) {
777 bytes_read = file_bytes_read;
778 error = std::move(file_error);
781 if (
error.Success() || bytes_read > 0) {
790 if (max_bytes && *max_bytes > offset) {
791 size_t bytes_read = std::min<uint64_t>(*max_bytes - offset, bytes);
795 heap_buf_ptr->
CopyData((uint8_t *)(addr + offset), bytes_read);
812 if (
m_data.GetByteSize()) {
840 const size_t byte_size = llvm::expectedToOptional(
GetByteSize()).value_or(0);
844 switch (value_type) {
850 m_value.GetScalar().SetValueFromData(data, encoding, byte_size);
854 "unable to set scalar value: %s", set_error.
AsCString());
867 if (!
error.Success())
869 if (bytes_written != byte_size) {
879 m_data.SetData(buffer_sp, 0);
881 const_cast<uint8_t *
>(
m_data.GetDataStart()),
882 byte_size,
m_data.GetByteOrder());
902 if ((uint64_t)
m_data.GetDataStart() == start)
905 if ((uint64_t)
m_value.GetBuffer().GetBytes() == start)
906 return m_value.GetBuffer().GetData();
913 llvm::StringRef src = source.
GetString();
914 src = src.rtrim(
'\0');
915 destination = std::make_shared<DataBufferHeap>(src.size(), 0);
916 memcpy(destination->GetBytes(), src.data(), src.size());
920std::pair<size_t, bool>
923 bool was_capped =
false;
929 s <<
"<no target to read from>";
932 return {0, was_capped};
937 size_t bytes_read = 0;
938 size_t total_bytes_read = 0;
943 if (type_flags.
AnySet(eTypeIsArray | eTypeIsPointer) &&
948 bool capped_data =
false;
949 const bool is_array = type_flags.
Test(eTypeIsArray);
952 uint64_t array_size = 0;
953 if (compiler_type.
IsArrayType(
nullptr, &array_size)) {
954 cstr_len = array_size;
955 if (cstr_len > max_length) {
957 cstr_len = max_length;
966 if (cstr_address.
address == 0 ||
970 if (cstr ==
nullptr) {
971 s <<
"<invalid address>";
974 return {0, was_capped};
976 s << llvm::StringRef(cstr, cstr_len);
978 return {cstr_len, was_capped};
980 s <<
"<invalid address>";
983 return {0, was_capped};
989 if (cstr_len > 0 && honor_array) {
997 total_bytes_read = bytes_read;
998 for (
size_t offset = 0; offset < bytes_read; offset++)
1004 cstr_len = max_length;
1005 const size_t k_max_buf_size = 64;
1009 int cstr_len_displayed = -1;
1010 bool capped_cstr =
false;
1015 while ((bytes_read =
GetPointeeData(data, offset, k_max_buf_size)) > 0) {
1016 total_bytes_read += bytes_read;
1017 const char *cstr = data.
PeekCStr(0);
1018 size_t len = strnlen(cstr, k_max_buf_size);
1019 if (cstr_len_displayed < 0)
1020 cstr_len_displayed = len;
1024 cstr_len_displayed += len;
1025 if (len > bytes_read)
1030 for (
size_t offset = 0; offset < bytes_read; offset++)
1033 if (len < k_max_buf_size)
1036 if (len >= cstr_len) {
1045 if (cstr_len_displayed >= 0) {
1052 s <<
"<not a string object>";
1055 return {total_bytes_read, was_capped};
1060 return llvm::createStringError(
"could not update value");
1069 return llvm::createStringError(
"no process");
1072 auto get_object_description =
1073 [&](
LanguageType language) -> llvm::Expected<std::string> {
1076 if (llvm::Error
error = runtime->GetObjectDescription(s, *
this))
1081 return llvm::createStringError(
"no native language runtime");
1086 llvm::Expected<std::string> desc = get_object_description(native_language);
1094 llvm::consumeError(desc.takeError());
1101 std::string &destination) {
1109 std::string &destination) {
1121 if (
m_flags.m_is_bitfield_for_scalar)
1127 my_format = reg_info->
format;
1137 format_sp = std::make_shared<TypeFormatImpl_Format>(my_format);
1198 return llvm::createStringError(
"type cannot be converted to APSInt");
1206 return llvm::createStringError(
"error occurred; unable to convert to APSInt");
1211 return llvm::createStringError(
"type cannot be converted to APFloat");
1219 return llvm::createStringError(
1220 "error occurred; unable to convert to APFloat");
1229 return value_or_err->getBoolValue();
1232 "GetValueAsAPSInt failed: {0}");
1237 return value_or_err->isNonZero();
1240 "GetValueAsAPFloat failed: {0}");
1247 return llvm::createStringError(
"type cannot be converted to bool");
1251 bool can_update_var) {
1257 return llvm::createStringError(
1258 "Not allowed to change the value of a non-scalar object");
1263 return llvm::createStringError(
1264 "Not allowed to update program variables in this case");
1268 return llvm::createStringError(
1269 "Not allowed to change the value of a constant");
1273 uint64_t byte_size = 0;
1275 if (!val_type.
IsBoolean() || (!value.isOne() && !value.isZero())) {
1276 byte_size = llvm::expectedToOptional(
GetByteSize()).value_or(0);
1278 unsigned dest_bits = byte_size * CHAR_BIT;
1279 unsigned needed_bits = val_type.
IsSigned() ? value.getSignificantBits()
1280 : value.getActiveBits();
1281 if (needed_bits > dest_bits)
1282 return llvm::createStringError(
"Illegal argument: new value is too big");
1291 llvm::APInt sized_value = value;
1292 if (sized_value.getBitWidth() < byte_size * CHAR_BIT)
1293 sized_value = sized_value.sext(byte_size * CHAR_BIT);
1297 reinterpret_cast<const void *
>(sized_value.getRawData()), byte_size,
1298 target->GetArchitecture().GetByteOrder(),
1299 static_cast<uint8_t
>(target->GetArchitecture().GetAddressByteSize()));
1301 return error.takeError();
1305 bool can_update_var) {
1311 return llvm::createStringError(
"Not allowed to update a non-scalar object");
1316 return llvm::createStringError(
1317 "Not allowed to update program variables in this case");
1320 CompilerType new_val_type = new_val_sp->GetCompilerType();
1323 return llvm::createStringError(
1324 "Illegal argument: new value is not a scalar object");
1327 auto value_or_err = new_val_sp->GetValueAsAPSInt();
1331 auto value_or_err = new_val_sp->GetValueAsAPFloat();
1336 bool success =
true;
1337 uint64_t int_val = new_val_sp->GetValueAsUnsigned(0, &success);
1340 uint64_t num_bits = 0;
1341 if (
auto temp = llvm::expectedToOptional(
1342 new_val_sp->GetCompilerType().GetBitSize(target.get())))
1343 num_bits = temp.value();
1347 return llvm::createStringError(
"Error converting new_val_sp to integer");
1349 llvm_unreachable(
"Unrecognized type for RHS of assignment");
1359 if (flags.
AnySet(eTypeIsArray | eTypeIsPointer) &&
1366 if (flags.
Test(eTypeIsArray)) {
1392 bool do_dump_error) {
1405 bool allow_special =
1407 const bool only_special =
false;
1409 if (allow_special) {
1410 if (flags.
AnySet(eTypeIsArray | eTypeIsPointer) &&
1423 std::pair<size_t, bool> read_string =
1427 lldb_private::formatters::StringPrinter::
1428 ReadBufferAndDumpToStreamOptions options(*
this);
1432 options.SetStream(&s);
1433 options.SetPrefixToken(
nullptr);
1434 options.SetQuote(
'"');
1435 options.SetSourceSize(buffer_sp->GetByteSize());
1436 options.SetIsTruncated(read_string.second);
1438 options.SetZeroTermination(
1441 options.SetZeroTermination(
1445 lldb_private::formatters::StringPrinter::StringElementType::ASCII>(
1447 return !
error.Fail();
1455 if (flags.
Test(eTypeIsArray)) {
1461 for (
size_t low = 0; low < count; low++) {
1468 s <<
"<invalid child>";
1471 child->DumpPrintableRepresentation(
1502 for (
size_t low = 0; low < count; low++) {
1509 s <<
"<invalid child>";
1512 child->DumpPrintableRepresentation(
1545 bool var_success =
false;
1548 llvm::StringRef str;
1559 switch (val_obj_display) {
1571 strm <<
"error: " <<
toString(desc.takeError());
1585 strm.
Printf(
"%" PRIu32, *err);
1588 strm <<
"error: " <<
toString(err.takeError());
1636 else if (val_obj_display ==
1638 s.
PutCString(
"<not a valid Objective-C object>");
1643 s.
PutCString(
"<no printable representation>");
1667 switch (
m_value.GetValueType()) {
1671 if (scalar_is_load_address) {
1680 m_value.GetValueAddressType()};
1684 llvm_unreachable(
"Unhandled value type!");
1691 if (
ABISP abi_sp = process->GetABI())
1692 return abi_sp->FixCodeAddress(address);
1694 return std::nullopt;
1701 switch (
m_value.GetValueType()) {
1716 llvm_unreachable(
"Unhandled value type!");
1720 const char *value_str) {
1722 if (
auto boolean = language->GetBooleanFromString(value_str))
1723 return *
boolean ?
"1" :
"0";
1725 return llvm::StringSwitch<const char *>(value_str)
1728 .Default(value_str);
1746 const size_t byte_size = llvm::expectedToOptional(
GetByteSize()).value_or(0);
1752 m_value.GetScalar().SetValueFromCString(value_str, encoding, byte_size);
1753 }
else if (byte_size <= 16) {
1762 if (
error.Success()) {
1763 switch (value_type) {
1774 target_addr, new_scalar, byte_size,
error);
1775 if (!
error.Success())
1777 if (bytes_written != byte_size) {
1790 m_data.SetData(buffer_sp, 0);
1791 bool success = new_scalar.
GetData(new_data);
1794 0, byte_size,
const_cast<uint8_t *
>(
m_data.GetDataStart()),
1795 byte_size,
m_data.GetByteOrder());
1833 std::map<ConstString, ValueObject *>::const_iterator pos =
1836 synthetic_child_sp = pos->second->GetSP();
1837 return synthetic_child_sp;
1860 if (runtime->IsAllowedRuntimeValue(
GetName()))
1868 return language->IsNilReference(*
this);
1875 return language->IsUninitializedReference(*
this);
1893 std::string index_str = llvm::formatv(
"[{0}]", index);
1898 if (!synthetic_child_sp) {
1905 if (synthetic_child) {
1907 synthetic_child_sp = synthetic_child->
GetSP();
1908 synthetic_child_sp->SetName(index_str);
1909 synthetic_child_sp->m_flags.m_is_array_item_for_pointer =
true;
1913 return synthetic_child_sp;
1920 std::string index_str = llvm::formatv(
"[{0}-{1}]", from, to);
1925 if (!synthetic_child_sp) {
1926 uint32_t bit_field_size = to - from + 1;
1927 uint32_t bit_field_offset = from;
1930 llvm::expectedToOptional(
GetByteSize()).value_or(0) * 8 -
1931 bit_field_size - bit_field_offset;
1936 llvm::expectedToOptional(
GetByteSize()).value_or(0), 0,
1941 if (synthetic_child) {
1943 synthetic_child_sp = synthetic_child->
GetSP();
1944 synthetic_child_sp->SetName(index_str);
1945 synthetic_child_sp->m_flags.m_is_bitfield_for_scalar =
true;
1949 return synthetic_child_sp;
1953 uint32_t offset,
const CompilerType &type,
bool can_create,
1958 if (name_const_str.
IsEmpty()) {
1959 name_const_str.
SetString(
"@" + std::to_string(offset));
1966 if (synthetic_child_sp.get())
1967 return synthetic_child_sp;
1973 std::optional<uint64_t> size = llvm::expectedToOptional(
1980 if (synthetic_child) {
1982 synthetic_child_sp = synthetic_child->
GetSP();
1983 synthetic_child_sp->SetName(name_const_str);
1984 synthetic_child_sp->m_flags.m_is_child_at_offset =
true;
1985 synthetic_child_sp->SetSyntheticChildrenGenerated(
true);
1987 return synthetic_child_sp;
1996 if (name_const_str.
IsEmpty()) {
1998 snprintf(name_str,
sizeof(name_str),
"base%s@%i",
2007 if (synthetic_child_sp.get())
2008 return synthetic_child_sp;
2013 const bool is_base_class =
true;
2016 std::optional<uint64_t> size = llvm::expectedToOptional(
2023 if (synthetic_child) {
2025 synthetic_child_sp = synthetic_child->
GetSP();
2026 synthetic_child_sp->SetName(name_const_str);
2028 return synthetic_child_sp;
2036 if (!expression || !expression[0])
2038 if (expression[0] ==
'.')
2039 return expression + 1;
2040 if (expression[0] ==
'-' && expression[1] ==
'>')
2041 return expression + 2;
2053 if (!synthetic_child_sp) {
2057 expression,
nullptr,
nullptr,
2063 if (synthetic_child_sp.get()) {
2067 synthetic_child_sp->SetName(
2071 return synthetic_child_sp;
2076 if (target_sp && !target_sp->GetEnableSyntheticValue()) {
2088 if (curr_synth_sp.get() ==
nullptr)
2160 if (
m_flags.m_is_synthetic_children_generated) {
2169 uint64_t load_addr =
2190 if (is_deref_of_parent &&
2222 if (
m_flags.m_is_array_item_for_pointer &&
2227 if (!is_deref_of_parent) {
2229 if (non_base_class_parent &&
2233 if (non_base_class_parent_compiler_type) {
2238 const uint32_t non_base_class_parent_type_info =
2239 non_base_class_parent_compiler_type.
GetTypeInfo();
2241 if (non_base_class_parent_type_info & eTypeIsPointer) {
2243 }
else if ((non_base_class_parent_type_info & eTypeHasChildren) &&
2244 !(non_base_class_parent_type_info & eTypeIsArray)) {
2257 if (is_deref_of_parent &&
2269 using SynthTraversal =
2273 if (synth_traversal == SynthTraversal::FromSynthetic ||
2274 synth_traversal == SynthTraversal::Both)
2277 if (synth_traversal == SynthTraversal::ToSynthetic ||
2278 synth_traversal == SynthTraversal::Both)
2293 if (!result ||
error.Fail()) {
2296 result = alt_obj->Dereference(
error);
2316 expression, reason_to_stop ? reason_to_stop : &dummy_reason_to_stop,
2317 final_value_type ? final_value_type : &dummy_final_value_type, options,
2318 final_task_on_target ? final_task_on_target
2319 : &dummy_final_task_on_target);
2321 if (!final_task_on_target ||
2325 if (ret_val.get() &&
2326 ((final_value_type ? *final_value_type : dummy_final_value_type) ==
2330 if ((final_task_on_target ? *final_task_on_target
2331 : dummy_final_task_on_target) ==
2336 if (
error.Fail() || !final_value.get()) {
2340 if (final_value_type)
2344 if (final_task_on_target)
2349 if (*final_task_on_target ==
2353 if (
error.Fail() || !final_value.get()) {
2357 if (final_value_type)
2361 if (final_task_on_target)
2381 llvm::StringRef remainder = expression;
2384 llvm::StringRef temp_expression = remainder;
2386 CompilerType root_compiler_type = root->GetCompilerType();
2388 Flags pointee_compiler_type_info;
2390 Flags root_compiler_type_info(
2391 root_compiler_type.
GetTypeInfo(&pointee_compiler_type));
2392 if (pointee_compiler_type)
2395 if (temp_expression.empty()) {
2400 switch (temp_expression.front()) {
2402 temp_expression = temp_expression.drop_front();
2404 root_compiler_type_info.
Test(eTypeIsPointer))
2414 if (root_compiler_type_info.
Test(eTypeIsObjC) &&
2417 root_compiler_type_info.
Test(eTypeIsPointer) &&
2424 if (!temp_expression.starts_with(
">")) {
2435 temp_expression.front() ==
'.' &&
2436 root_compiler_type_info.
Test(eTypeIsPointer))
2446 temp_expression = temp_expression.drop_front();
2448 size_t next_sep_pos = temp_expression.find_first_of(
"-.[", 1);
2449 if (next_sep_pos == llvm::StringRef::npos) {
2451 llvm::StringRef child_name = temp_expression;
2453 root->GetChildMemberWithName(child_name);
2454 if (!child_valobj_sp) {
2457 child_valobj_sp = altroot->GetChildMemberWithName(child_name);
2459 if (child_valobj_sp) {
2463 return child_valobj_sp;
2470 llvm::StringRef next_separator = temp_expression.substr(next_sep_pos);
2471 llvm::StringRef child_name = temp_expression.slice(0, next_sep_pos);
2473 ValueObjectSP child_valobj_sp = root->GetChildMemberWithName(child_name);
2474 if (!child_valobj_sp) {
2477 child_valobj_sp = altroot->GetChildMemberWithName(child_name);
2479 if (child_valobj_sp) {
2480 root = child_valobj_sp;
2481 remainder = next_separator;
2490 if (!root_compiler_type_info.
Test(eTypeIsArray) &&
2491 !root_compiler_type_info.
Test(eTypeIsPointer) &&
2492 !root_compiler_type_info.
Test(
2495 if (!root_compiler_type_info.
Test(
2517 if (temp_expression[1] ==
2520 if (!root_compiler_type_info.
Test(eTypeIsArray)) {
2536 size_t close_bracket_position = temp_expression.find(
']', 1);
2537 if (close_bracket_position ==
2538 llvm::StringRef::npos)
2546 llvm::StringRef bracket_expr =
2547 temp_expression.slice(1, close_bracket_position);
2551 assert(!bracket_expr.empty());
2553 if (!bracket_expr.contains(
'-')) {
2557 unsigned long index = 0;
2558 if (bracket_expr.getAsInteger(0, index)) {
2566 if (root_compiler_type_info.
Test(eTypeIsArray)) {
2567 ValueObjectSP child_valobj_sp = root->GetChildAtIndex(index);
2568 if (!child_valobj_sp)
2569 child_valobj_sp = root->GetSyntheticArrayMember(index,
true);
2570 if (!child_valobj_sp)
2571 if (root->HasSyntheticValue() &&
2572 llvm::expectedToOptional(
2573 root->GetSyntheticValue()->GetNumChildren())
2574 .value_or(0) > index)
2576 root->GetSyntheticValue()->GetChildAtIndex(index);
2577 if (child_valobj_sp) {
2578 root = child_valobj_sp;
2580 temp_expression.substr(close_bracket_position + 1);
2589 }
else if (root_compiler_type_info.
Test(eTypeIsPointer)) {
2601 pointee_compiler_type_info.
Test(eTypeIsScalar)) {
2605 if (
error.Fail() || !root) {
2615 if (root->GetCompilerType().GetMinimumLanguage() ==
2617 pointee_compiler_type_info.
AllClear(eTypeIsPointer) &&
2618 root->HasSyntheticValue() &&
2621 SyntheticChildrenTraversal::ToSynthetic ||
2624 SyntheticChildrenTraversal::Both)) {
2625 root = root->GetSyntheticValue()->GetChildAtIndex(index);
2627 root = root->GetSyntheticArrayMember(index,
true);
2635 temp_expression.substr(close_bracket_position + 1);
2640 }
else if (root_compiler_type_info.
Test(eTypeIsScalar)) {
2641 root = root->GetSyntheticBitFieldChild(index, index,
true);
2650 *reason_to_stop = ValueObject::
2651 eExpressionPathScanEndReasonBitfieldRangeOperatorMet;
2655 }
else if (root_compiler_type_info.
Test(eTypeIsVector)) {
2656 root = root->GetChildAtIndex(index);
2664 temp_expression.substr(close_bracket_position + 1);
2670 SyntheticChildrenTraversal::ToSynthetic ||
2673 SyntheticChildrenTraversal::Both) {
2674 if (root->HasSyntheticValue())
2675 root = root->GetSyntheticValue();
2676 else if (!root->IsSynthetic()) {
2691 root = root->GetChildAtIndex(index);
2699 temp_expression.substr(close_bracket_position + 1);
2711 llvm::StringRef sleft, sright;
2712 unsigned long low_index, high_index;
2713 std::tie(sleft, sright) = bracket_expr.split(
'-');
2714 if (sleft.getAsInteger(0, low_index) ||
2715 sright.getAsInteger(0, high_index)) {
2722 if (low_index > high_index)
2723 std::swap(low_index, high_index);
2725 if (root_compiler_type_info.
Test(
2728 root = root->GetSyntheticBitFieldChild(low_index, high_index,
true);
2735 *reason_to_stop = ValueObject::
2736 eExpressionPathScanEndReasonBitfieldRangeOperatorMet;
2740 }
else if (root_compiler_type_info.
Test(
2747 pointee_compiler_type_info.
Test(eTypeIsScalar)) {
2751 if (
error.Fail() || !root) {
2834 result_sp =
GetSP();
2837 bool is_synthetic = result_sp->IsSynthetic();
2838 if (synthValue && !is_synthetic) {
2839 if (
auto synth_sp = result_sp->GetSyntheticValue())
2842 if (!synthValue && is_synthetic) {
2843 if (
auto non_synth_sp = result_sp->GetNonSyntheticValue())
2844 return non_synth_sp;
2854 std::string deref_name_str;
2855 uint32_t deref_byte_size = 0;
2856 int32_t deref_byte_offset = 0;
2858 uint64_t language_flags = 0;
2864 &exe_ctx, deref_name_str, deref_byte_size, deref_byte_offset,
this,
2867 std::string deref_error;
2868 if (deref_compiler_type_or_err) {
2869 deref_compiler_type = *deref_compiler_type_or_err;
2871 deref_error = llvm::toString(deref_compiler_type_or_err.takeError());
2875 if (deref_compiler_type && deref_byte_size) {
2877 if (!deref_name_str.empty())
2878 deref_name.
SetCString(deref_name_str.c_str());
2882 deref_byte_size, deref_byte_offset, 0, 0,
false,
2895 if (deref_compiler_type) {
2897 if (!deref_name_str.empty())
2898 deref_name.
SetCString(deref_name_str.c_str());
2901 *
this, deref_compiler_type, deref_name, deref_byte_size,
2918 if (deref_error.empty())
2920 "dereference failed: (%s) %s",
2924 "dereference failed: %s: (%s) %s", deref_error.c_str(),
2934 switch (address_type) {
2949 if (compiler_type) {
2950 std::string name(1,
'&');
2951 name.append(
m_name.AsCString(
""));
2970 "'%s' doesn't have a valid address", expr_path_strm.
GetData());
3000 if (llvm::expectedToOptional(compiler_type.
GetByteSize(exe_scope))
3005 return DoCast(compiler_type);
3008 "Can only cast to a type that is equal to or smaller "
3009 "than the orignal type.");
3049 const bool scalar_is_load_address =
true;
3050 auto [addr_value, addr_type] =
GetAddressOf(scalar_is_load_address);
3057 module_sp->ResolveFileAddress(addr_value, tmp_addr);
3069 CompilerType type,
const llvm::ArrayRef<uint32_t> &base_type_indices) {
3074 return llvm::createStringError(
3075 "Invalid target type: should be a pointer or a reference");
3081 auto target_record_type =
3083 auto start_record_type =
3086 if (!target_record_type.IsRecordType() || !start_record_type.IsRecordType())
3087 return llvm::createStringError(
3088 "Underlying start & target types should be record types");
3090 if (target_record_type.CompareTypes(start_record_type))
3091 return llvm::createStringError(
3092 "Underlying start & target types should be different");
3094 if (base_type_indices.empty())
3095 return llvm::createStringError(
"children sequence must be non-empty");
3104 for (
const uint32_t i : base_type_indices)
3107 inner_value->GetChildAtIndex(i,
true);
3111 CompilerType inner_value_type = inner_value->GetCompilerType();
3114 return llvm::createStringError(
3115 "casted value doesn't match the desired type");
3117 uintptr_t addr = inner_value->GetLoadAddress();
3118 llvm::StringRef name =
"";
3126 return llvm::createStringError(
3127 "casted value doesn't match the desired type");
3132llvm::Expected<lldb::ValueObjectSP>
3138 return llvm::createStringError(
3139 "Invalid target type: should be a pointer or a reference");
3145 auto target_record_type =
3147 auto start_record_type =
3150 if (!target_record_type.IsRecordType() || !start_record_type.IsRecordType())
3151 return llvm::createStringError(
3152 "Underlying start & target types should be record types");
3154 if (target_record_type.CompareTypes(start_record_type))
3155 return llvm::createStringError(
3156 "Underlying start & target types should be different");
3159 if (target_record_type.IsVirtualBase(start_record_type, &virtual_base)) {
3161 return llvm::createStringError(
"virtual base should be valid");
3162 return llvm::createStringError(
3179 llvm::StringRef name =
"";
3182 name, addr - offset, exe_ctx, pointer_type,
false);
3190 return value->Dereference(
error);
3207 if (!is_scalar && !is_enum && !is_pointer)
3213 uint64_t type_byte_size = 0;
3214 uint64_t val_byte_size = 0;
3215 if (
auto temp = llvm::expectedToOptional(type.
GetByteSize(target.get())))
3216 type_byte_size = temp.value();
3219 val_byte_size = temp.value();
3226 if (!type.
IsBoolean() && type_byte_size < val_byte_size)
3230 "target type cannot be smaller than the pointer type"));
3234 if (!is_scalar || is_integer)
3238 else if (is_scalar && is_float) {
3240 if (float_value_or_err)
3243 !float_value_or_err->isZero(),
"result");
3248 "cannot get value as APFloat: %s",
3249 llvm::toString(float_value_or_err.takeError()).c_str()));
3254 if (!is_scalar || is_integer) {
3256 if (int_value_or_err) {
3260 int_value_or_err->extOrTrunc(type_byte_size * CHAR_BIT);
3267 "cannot get value as APSInt: %s",
3268 llvm::toString(int_value_or_err.takeError()).c_str()));
3269 }
else if (is_scalar && is_float) {
3273 if (float_value_or_err) {
3274 llvm::APFloatBase::opStatus status =
3275 float_value_or_err->convertToInteger(
3276 integer, llvm::APFloat::rmTowardZero, &is_exact);
3280 if (status & llvm::APFloatBase::opInvalidOp)
3284 "invalid type cast detected: %s",
3285 llvm::toString(float_value_or_err.takeError()).c_str()));
3295 if (int_value_or_err) {
3297 int_value_or_err->extOrTrunc(type_byte_size * CHAR_BIT);
3307 "cannot get value as APSInt: %s",
3308 llvm::toString(int_value_or_err.takeError()).c_str()));
3313 if (int_value_or_err) {
3314 Scalar scalar_int(*int_value_or_err);
3323 "cannot get value as APSInt: %s",
3324 llvm::toString(int_value_or_err.takeError()).c_str()));
3329 if (float_value_or_err) {
3330 Scalar scalar_float(*float_value_or_err);
3339 "cannot get value as APFloat: %s",
3340 llvm::toString(float_value_or_err.takeError()).c_str()));
3357 if (!is_enum && !is_integer && !is_float)
3361 "argument must be an integer, a float, or an enum"));
3369 uint64_t byte_size = 0;
3370 if (
auto temp = llvm::expectedToOptional(type.
GetByteSize(target.get())))
3371 byte_size = temp.value();
3374 llvm::APSInt
integer(byte_size * CHAR_BIT,
3379 llvm::APFloatBase::opStatus status = value_or_err->convertToInteger(
3380 integer, llvm::APFloat::rmTowardZero, &is_exact);
3384 if (status & llvm::APFloatBase::opInvalidOp)
3394 "cannot get value as APFloat: {0}",
3395 llvm::toString(value_or_err.takeError())));
3400 llvm::APSInt ext = value_or_err->extOrTrunc(byte_size * CHAR_BIT);
3407 "cannot get value as APSInt: %s",
3408 llvm::toString(value_or_err.takeError()).c_str()));
3426 process_sp = target_sp->GetProcessSP();
3436 thread_sp = process_sp->GetThreadList().GetSelectedThread();
3469 bool accept_invalid_exe_ctx) {
3472 const bool thread_and_frame_only_if_stopped =
true;
3481 if (process ==
nullptr)
3493 bool changed =
false;
3494 const bool was_valid =
m_mod_id.IsValid();
3512 if (!accept_invalid_exe_ctx) {
3521 changed = was_valid;
3527 changed = was_valid;
3568 if (!
m_parent->IsPointerOrReferenceType())
3569 return m_parent->GetSymbolContextScope();
3575 llvm::StringRef name, llvm::StringRef expression,
3582 llvm::StringRef name, llvm::StringRef expression,
3592 if (expression.empty())
3595 target_sp->EvaluateExpression(expression, exe_ctx.
GetFrameSP().get(),
3596 retval_sp, options);
3597 if (retval_sp && !name.empty())
3598 retval_sp->SetName(name);
3608 pointer_type = type;
3617 if (ptr_result_valobj_sp) {
3619 ptr_result_valobj_sp->GetValue().SetValueType(
3623 ptr_result_valobj_sp = ptr_result_valobj_sp->Dereference(err);
3624 if (ptr_result_valobj_sp && !name.empty())
3625 ptr_result_valobj_sp->SetName(name);
3627 return ptr_result_valobj_sp;
3641 if (new_value_sp && !name.empty())
3642 new_value_sp->SetName(name);
3643 return new_value_sp;
3649 uint64_t byte_size =
3650 llvm::expectedToOptional(
3654 reinterpret_cast<const void *
>(v.getRawData()), byte_size,
3672 nullptr, parent ? parent->
GetManager() :
nullptr);
3680 uint64_t byte_size =
3681 llvm::expectedToOptional(type.
GetByteSize(exe_scope)).value_or(0);
3683 reinterpret_cast<const void *
>(&value), byte_size, exe_ctx.
GetByteOrder(),
3697 uint64_t byte_size = 0;
3698 if (
auto temp = llvm::expectedToOptional(
3700 byte_size = temp.value();
3702 reinterpret_cast<const void *
>(zero), byte_size, exe_ctx.
GetByteOrder(),
3745 while (with_dv_info) {
3748 with_dv_info = with_dv_info->
m_parent;
3755 while (with_fmt_info) {
3758 with_fmt_info = with_fmt_info->
m_parent;
3770 frame_sp->GetSymbolContext(eSymbolContextCompUnit));
3772 type = cu->GetLanguage();
3804 target_sp->GetPersistentExpressionStateForLanguage(
3807 if (!persistent_state)
3817 persistent_var_sp->m_live_sp = persistent_var_sp->m_frozen_sp;
3820 return persistent_var_sp->GetValueObject();
3832 if ((
m_valobj_sp = in_valobj_sp->GetQualifiedRepresentationIfAvailable(
3866 return target_sp && target_sp->IsValid();
3871 std::unique_lock<TargetAPIMutex> &lock,
3880 Target *target = value_sp->GetTargetSP().get();
3882 if (value_sp->GetError().Fail())
3889 lock = std::unique_lock<TargetAPIMutex>(api_mutex);
3891 ProcessSP process_sp(value_sp->GetProcessSP());
3892 if (process_sp && !stop_locker.
TryLock(&process_sp->GetRunLock())) {
3903 value_sp = dynamic_sp;
3909 value_sp = synthetic_sp;
3915 value_sp->SetName(
m_name);
static llvm::raw_ostream & error(Stream &strm)
#define LLDB_LOG(log,...)
The LLDB_LOG* macros defined below are the way to emit log messages.
#define LLDB_LOG_ERRORV(log, error,...)
#define LLDB_LOGF(log,...)
#define LLDB_LOG_ERROR(log, error,...)
static const char * ConvertBoolean(lldb::LanguageType language_type, const char *value_str)
static bool CopyStringDataToBufferSP(const StreamString &source, lldb::WritableDataBufferSP &destination)
static ValueObjectSP DereferenceValueOrAlternate(ValueObject &valobj, ValueObject::GetValueForExpressionPathOptions::SyntheticChildrenTraversal synth_traversal, Status &error)
static bool HasFloatingRepresentation(CompilerType ct)
static ValueObjectSP GetAlternateValue(ValueObject &valobj, ValueObject::GetValueForExpressionPathOptions::SyntheticChildrenTraversal synth_traversal)
static std::atomic< user_id_t > g_value_obj_uid
static const char * SkipLeadingExpressionPathSeparators(const char *expression)
A section + offset based address class.
lldb::addr_t GetLoadAddress(Target *target) const
Get the load address.
bool SetLoadAddress(lldb::addr_t load_addr, Target *target, bool allow_section_end=false)
Set the address to represent load_addr.
An architecture specification class.
uint32_t GetAddressByteSize() const
Returns the size in bytes of an address of the current architecture.
lldb::ByteOrder GetByteOrder() const
Returns the byte order for the architecture specification.
A class that describes a compilation unit.
lldb::TypeSystemSP GetSharedPointer() const
Generic representation of a type in a programming language.
bool IsEnumerationType(bool &is_signed) const
lldb::BasicType GetBasicTypeEnumeration() const
TypeSystemSPWrapper GetTypeSystem() const
Accessors.
bool IsPossibleDynamicType(CompilerType *target_type, bool check_cplusplus, bool check_objc) const
bool IsArrayType(CompilerType *element_type=nullptr, uint64_t *size=nullptr, bool *is_incomplete=nullptr) const
size_t GetIndexOfChildMemberWithName(llvm::StringRef name, bool omit_empty_base_classes, std::vector< uint32_t > &child_indexes) const
Lookup a child member given a name.
CompilerType GetPointerType() const
Return a new CompilerType that is a pointer to this type.
llvm::Expected< uint64_t > GetByteSize(ExecutionContextScope *exe_scope) const
Return the size of the type in bytes.
lldb::Encoding GetEncoding() const
CompilerType GetNonReferenceType() const
If this type is a reference to a type (L value or R value reference), return a new type with the refe...
ConstString GetTypeName(bool BaseOnly=false) const
bool IsEnumerationIntegerTypeSigned() const
bool IsReferenceType(CompilerType *pointee_type=nullptr, bool *is_rvalue=nullptr) const
std::string TypeDescription()
bool IsInteger() const
This is used when you don't care about the signedness of the integer.
llvm::Expected< CompilerType > GetDereferencedType(ExecutionContext *exe_ctx, std::string &deref_name, uint32_t &deref_byte_size, int32_t &deref_byte_offset, ValueObject *valobj, uint64_t &language_flags) const
lldb::Format GetFormat() const
llvm::Expected< CompilerType > GetChildCompilerTypeAtIndex(ExecutionContext *exe_ctx, size_t idx, bool transparent_pointers, bool omit_empty_base_classes, bool ignore_array_bounds, std::string &child_name, uint32_t &child_byte_size, int32_t &child_byte_offset, uint32_t &child_bitfield_bit_size, uint32_t &child_bitfield_bit_offset, bool &child_is_base_class, bool &child_is_deref_of_parent, ValueObject *valobj, uint64_t &language_flags) const
CompilerType GetPointeeType() const
If this type is a pointer type, return the type that the pointer points to, else return an invalid ty...
bool IsUnscopedEnumerationType() const
uint32_t GetTypeInfo(CompilerType *pointee_or_element_compiler_type=nullptr) const
llvm::Expected< uint32_t > GetIndexOfChildWithName(llvm::StringRef name, bool omit_empty_base_classes) const
Lookup a child given a name.
bool CompareTypes(CompilerType rhs) const
bool IsScalarType() const
bool IsNullPtrType() const
bool IsPointerType(CompilerType *pointee_type=nullptr) const
A uniqued constant string class.
void SetCString(const char *cstr)
Set the C string value.
bool IsEmpty() const
Test for empty string.
llvm::StringRef GetStringRef() const
Get the string value as a llvm::StringRef.
void SetString(llvm::StringRef s)
const char * GetCString() const
Get the string value as a C string.
const char * AsCString(const char *value_if_empty) const
Get the string value as a C string.
A subclass of DataBuffer that stores a data buffer on the heap.
lldb::offset_t SetByteSize(lldb::offset_t byte_size)
Set the number of bytes in the data buffer.
void CopyData(const void *src, lldb::offset_t src_len)
Makes a copy of the src_len bytes in src.
static lldb::TypeSummaryImplSP GetSummaryFormat(ValueObject &valobj, lldb::DynamicValueType use_dynamic)
static lldb::TypeFormatImplSP GetFormat(ValueObject &valobj, lldb::DynamicValueType use_dynamic)
static lldb::SyntheticChildrenSP GetSyntheticChildren(ValueObject &valobj, lldb::DynamicValueType use_dynamic)
static uint32_t GetCurrentRevision()
A class that describes the declaration location of a lldb object.
void Clear()
Clear the object's state.
"lldb/Target/ExecutionContextScope.h" Inherit from this if your object can reconstruct its execution ...
virtual lldb::TargetSP CalculateTarget()=0
"lldb/Target/ExecutionContext.h" A class that contains an execution context.
ExecutionContextScope * GetBestExecutionContextScope() const
const lldb::TargetSP & GetTargetSP() const
Get accessor to get the target shared pointer.
uint32_t GetAddressByteSize() const
const lldb::ProcessSP & GetProcessSP() const
Get accessor to get the process shared pointer.
lldb::ByteOrder GetByteOrder() const
const lldb::StackFrameSP & GetFrameSP() const
Get accessor to get the frame shared pointer.
Target * GetTargetPtr() const
Returns a pointer to the target object.
const lldb::ThreadSP & GetThreadSP() const
Get accessor to get the thread shared pointer.
Process * GetProcessPtr() const
Returns a pointer to the process object.
@ EVIsProgramReference
This variable is a reference to a (possibly invalid) area managed by the target program.
bool AllClear(ValueType mask) const
Test if all bits in mask are clear.
void Reset(ValueType flags)
Set accessor for all flags.
bool Test(ValueType bit) const
Test a single flag bit.
bool AnySet(ValueType mask) const
Test one or more flags.
static Language * FindPlugin(lldb::LanguageType language)
static bool LanguageIsCFamily(lldb::LanguageType language)
Equivalent to LanguageIsC||LanguageIsObjC||LanguageIsCPlusPlus.
static bool LanguageIsObjC(lldb::LanguageType language)
virtual lldb::ExpressionVariableSP CreatePersistentVariable(const lldb::ValueObjectSP &valobj_sp)=0
virtual ConstString GetNextPersistentVariableName(bool is_error=false)=0
Return a new persistent variable name with the specified prefix.
uint32_t GetStopID() const
bool TryLock(ProcessRunLock *lock)
Try to acquire the read lock.
A plug-in interface definition class for debugging a process.
ProcessModID GetModID() const
Get the Modification ID of the process.
ProcessRunLock::ProcessRunLocker StopLocker
bool IsPossibleDynamicValue(ValueObject &in_value)
LanguageRuntime * GetLanguageRuntime(lldb::LanguageType language)
size_t WriteMemory(lldb::addr_t vm_addr, const void *buf, size_t size, Status &error)
Write memory to a process.
size_t WriteScalarToMemory(lldb::addr_t vm_addr, const Scalar &scalar, size_t size, Status &error)
Write all or part of a scalar value to memory.
llvm::APFloat CreateAPFloatFromAPFloat(lldb::BasicType basic_type)
llvm::APFloat CreateAPFloatFromAPSInt(lldb::BasicType basic_type)
unsigned long long ULongLong(unsigned long long fail_value=0) const
llvm::APFloat GetAPFloat() const
long long SLongLong(long long fail_value=0) const
bool ExtractBitfield(uint32_t bit_size, uint32_t bit_offset)
Status SetValueFromCString(const char *s, lldb::Encoding encoding, size_t byte_size)
bool GetData(DataExtractor &data) const
Get data with a byte size of GetByteSize().
llvm::APSInt GetAPSInt() const
static Status FromErrorStringWithFormat(const char *format,...) __attribute__((format(printf
static Status FromErrorString(const char *str)
const char * AsCString(const char *default_error_str="unknown error") const
Get the error string associated with the current error.
static Status static Status FromErrorStringWithFormatv(const char *format, Args &&...args)
bool Success() const
Test for success condition.
const char * GetData() const
llvm::StringRef GetString() const
A stream class that can stream formatted output to a file.
void Format(const char *format, Args &&... args)
Forwards the arguments to llvm::formatv and writes to the stream.
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
size_t PutCString(llvm::StringRef cstr)
Output a C string to the stream.
Basic RAII class to increment the summary count when the call is complete.
"lldb/Symbol/SymbolContextScope.h" Inherit from this if your object is part of a symbol context and c...
Defines a symbol context baton that can be handed other debug core functions.
CompileUnit * comp_unit
The CompileUnit for a given query.
A Lockable handle over a Target's API mutex, returned by Target::GetAPIMutex() and backing the public...
uint32_t GetMaximumSizeOfStringSummary() const
bool GetCheckValueObjectOwnership() const
TargetAPIMutex GetAPIMutex()
Returns a handle resolved to the mutex to serialize on before touching the target through the SB API.
virtual size_t ReadMemory(const Address &addr, void *dst, size_t dst_len, Status &error, bool force_live_memory=false, lldb::addr_t *load_addr_ptr=nullptr, bool *did_read_live_memory=nullptr)
virtual bool FormatObject(ValueObject *valobj, std::string &dest, const TypeSummaryOptions &options)=0
lldb::LanguageType GetLanguage() const
TypeSummaryOptions & SetLanguage(lldb::LanguageType)
lldb::ValueObjectSP GetSP(Process::StopLocker &stop_locker, TargetAPIMutex &api_mutex, std::unique_lock< TargetAPIMutex > &lock, Status &error)
lldb::ValueObjectSP m_valobj_sp
lldb::DynamicValueType m_use_dynamic
ValueImpl & operator=(const ValueImpl &rhs)
static lldb::ValueObjectSP Create(ValueObject &parent, llvm::StringRef name, const CompilerType &cast_type)
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.
A ValueObject that represents memory at a given address, viewed as some set lldb type.
static lldb::ValueObjectSP Create(ExecutionContextScope *exe_scope, llvm::StringRef name, const Address &address, lldb::TypeSP &type_sp, ValueObject *parent=nullptr)
llvm::Error PrintValueObject()
static lldb::ValueObjectSP Create(ValueObject &parent)
bool SyncWithProcessState(bool accept_invalid_exe_ctx)
ExecutionContextRef m_exe_ctx_ref
AddressType m_address_type_of_ptr_or_ref_children
void SetValueIsValid(bool valid)
EvaluationPoint m_update_point
Stores both the stop id and the full context at which this value was last updated.
lldb::TypeSummaryImplSP GetSummaryFormat()
lldb::ValueObjectSP CheckValueObjectOwnership(ValueObject *child)
llvm::SmallVector< uint8_t, 16 > m_value_checksum
static lldb::ValueObjectSP CreateValueObjectFromNullptr(const ExecutionContext &exe_ctx, CompilerType type, llvm::StringRef name, ValueObject *parent=nullptr)
Create a nullptr value object with the specified type (must be a nullptr type).
llvm::Expected< llvm::APFloat > GetValueAsAPFloat()
If the current ValueObject is of an appropriate type, convert the value to an APFloat and return that...
virtual uint32_t GetBitfieldBitSize()
void ClearUserVisibleData(uint32_t items=ValueObject::eClearUserVisibleDataItemsAllStrings)
ValueObject * FollowParentChain(std::function< bool(ValueObject *)>)
Given a ValueObject, loop over itself and its parent, and its parent's parent, .
CompilerType m_override_type
If the type of the value object should be overridden, the type to impose.
lldb::ValueObjectSP Cast(const CompilerType &compiler_type)
const EvaluationPoint & GetUpdatePoint() const
void AddSyntheticChild(ConstString key, ValueObject *valobj)
virtual uint64_t GetData(DataExtractor &data, Status &error)
uint32_t m_last_format_mgr_revision
friend class ValueObjectSynthetic
bool DumpPrintableRepresentation(Stream &s, ValueObjectRepresentationStyle val_obj_display=eValueObjectRepresentationStyleSummary, lldb::Format custom_format=lldb::eFormatInvalid, PrintableRepresentationSpecialCases special=PrintableRepresentationSpecialCases::eAllow, bool do_dump_error=true)
ValueObject * m_deref_valobj
virtual lldb::ValueObjectSP GetChildAtIndex(uint32_t idx, bool can_create=true)
virtual lldb::DynamicValueType GetDynamicValueTypeImpl()
PrintableRepresentationSpecialCases
virtual bool GetIsConstant() const
virtual bool MightHaveChildren()
Find out if a ValueObject might have children.
virtual bool IsDereferenceOfParent()
virtual llvm::Expected< size_t > GetIndexOfChildWithName(llvm::StringRef name)
static lldb::ValueObjectSP CreateValueObjectFromScalar(const ExecutionContext &exe_ctx, Scalar &s, CompilerType type, llvm::StringRef name, ValueObject *parent=nullptr)
Create a value object containing the given Scalar value.
virtual ValueObject * CreateSyntheticArrayMember(size_t idx)
Should only be called by ValueObject::GetSyntheticArrayMember().
void SetValueFormat(lldb::TypeFormatImplSP format)
virtual void CalculateSyntheticValue()
void SetPreferredDisplayLanguage(lldb::LanguageType lt)
struct lldb_private::ValueObject::Bitflags m_flags
ClusterManager< ValueObject > ValueObjectManager
ValueObject(ExecutionContextScope *exe_scope, ValueObjectManager &manager, AddressType child_ptr_or_ref_addr_type=eAddressTypeLoad)
Use this constructor to create a "root variable object".
std::string m_summary_str
Cached summary string that will get cleared if/when the value is updated.
virtual lldb::ValueObjectSP DoCast(const CompilerType &compiler_type)
lldb::ValueObjectSP GetSP()
ChildrenManager m_children
virtual lldb::ValueObjectSP CastPointerType(const char *name, CompilerType &ast_type)
Status m_error
An error object that can describe any errors that occur when updating values.
virtual size_t GetPointeeData(DataExtractor &data, uint32_t item_idx=0, uint32_t item_count=1)
lldb::ValueObjectSP GetSyntheticValue()
ValueObjectManager * m_manager
This object is managed by the root object (any ValueObject that gets created without a parent....
lldb::ValueObjectSP GetSyntheticBitFieldChild(uint32_t from, uint32_t to, bool can_create)
lldb::ProcessSP GetProcessSP() const
lldb::ValueObjectSP GetSyntheticChild(ConstString key) const
ExpressionPathScanEndReason
@ eExpressionPathScanEndReasonArrowInsteadOfDot
-> used when . should be used.
@ eExpressionPathScanEndReasonDereferencingFailed
Impossible to apply * operator.
@ eExpressionPathScanEndReasonNoSuchChild
Child element not found.
@ eExpressionPathScanEndReasonUnknown
@ eExpressionPathScanEndReasonDotInsteadOfArrow
. used when -> should be used.
@ eExpressionPathScanEndReasonEndOfString
Out of data to parse.
@ eExpressionPathScanEndReasonRangeOperatorNotAllowed
[] not allowed by options.
@ eExpressionPathScanEndReasonEmptyRangeNotAllowed
[] only allowed for arrays.
@ eExpressionPathScanEndReasonRangeOperatorInvalid
[] not valid on objects other than scalars, pointers or arrays.
@ eExpressionPathScanEndReasonUnexpectedSymbol
Something is malformed in he expression.
@ eExpressionPathScanEndReasonArrayRangeOperatorMet
[] is good for arrays, but I cannot parse it.
@ eExpressionPathScanEndReasonSyntheticValueMissing
getting the synthetic children failed.
@ eExpressionPathScanEndReasonTakingAddressFailed
Impossible to apply & operator.
@ eExpressionPathScanEndReasonFragileIVarNotAllowed
ObjC ivar expansion not allowed.
virtual bool UpdateValue()=0
lldb::Format GetFormat() const
virtual lldb::VariableSP GetVariable()
@ eExpressionPathAftermathNothing
Just return it.
@ eExpressionPathAftermathDereference
Dereference the target.
@ eExpressionPathAftermathTakeAddress
Take target's address.
lldb::ValueObjectSP CastToBasicType(CompilerType type)
ValueObject * GetNonBaseClassParent()
virtual ValueObject * CreateChildAtIndex(size_t idx)
Should only be called by ValueObject::GetChildAtIndex().
lldb::ValueObjectSP GetValueForExpressionPath(llvm::StringRef expression, ExpressionPathScanEndReason *reason_to_stop=nullptr, ExpressionPathEndResultType *final_value_type=nullptr, const GetValueForExpressionPathOptions &options=GetValueForExpressionPathOptions::DefaultOptions(), ExpressionPathAftermath *final_task_on_target=nullptr)
virtual lldb::ValueObjectSP GetSyntheticChildAtOffset(uint32_t offset, const CompilerType &type, bool can_create, ConstString name_const_str=ConstString())
virtual void CalculateDynamicValue(lldb::DynamicValueType use_dynamic)
bool IsPossibleDynamicType()
DataExtractor m_data
A data extractor that can be used to extract the value.
virtual llvm::Expected< uint64_t > GetByteSize()=0
virtual CompilerType GetCompilerTypeImpl()=0
virtual lldb::ValueObjectSP GetSyntheticBase(uint32_t offset, const CompilerType &type, bool can_create, ConstString name_const_str=ConstString())
virtual uint64_t GetValueAsUnsigned(uint64_t fail_value, bool *success=nullptr)
@ eGetExpressionPathFormatDereferencePointers
@ eGetExpressionPathFormatHonorPointers
virtual lldb::ValueObjectSP GetChildMemberWithName(llvm::StringRef name, bool can_create=true)
lldb::ValueObjectSP CastToEnumType(CompilerType type)
llvm::Expected< uint32_t > GetNumChildren(uint32_t max=UINT32_MAX)
virtual void GetExpressionPath(Stream &s, GetExpressionPathFormat=eGetExpressionPathFormatDereferencePointers)
bool UpdateFormatsIfNeeded()
virtual bool HasSyntheticValue()
lldb::StackFrameSP GetFrameSP() const
friend class ValueObjectChild
lldb::ValueObjectSP GetChildAtNamePath(llvm::ArrayRef< llvm::StringRef > names)
void SetSummaryFormat(lldb::TypeSummaryImplSP format)
virtual bool IsRuntimeSupportValue()
virtual ConstString GetTypeName()
DataExtractor & GetDataExtractor()
void SetValueDidChange(bool value_changed)
static lldb::ValueObjectSP CreateValueObjectFromBool(const ExecutionContext &exe_ctx, lldb::TypeSystemSP typesystem, bool value, llvm::StringRef name, ValueObject *parent=nullptr)
Create a value object containing the given boolean value.
@ eClearUserVisibleDataItemsDescription
@ eClearUserVisibleDataItemsLocation
@ eClearUserVisibleDataItemsSummary
@ eClearUserVisibleDataItemsValue
@ eClearUserVisibleDataItemsSyntheticChildren
ValueObjectManager * GetManager()
ValueObject * m_root
The root of the hierarchy for this ValueObject (or nullptr if never calculated).
lldb::addr_t GetLoadAddress()
Return the target load address associated with this value object.
bool GetValueIsValid() const
virtual lldb::ModuleSP GetModule()
Return the module associated with this value object in case the value is from an executable file and ...
virtual lldb::ValueObjectSP GetDynamicValue(lldb::DynamicValueType valueType)
void UpdateChildrenAddressType()
llvm::Expected< lldb::ValueObjectSP > CastDerivedToBaseType(CompilerType type, const llvm::ArrayRef< uint32_t > &base_type_indices)
Take a ValueObject whose type is an inherited class, and cast it to 'type', which should be one of it...
virtual lldb::ValueObjectSP AddressOf(Status &error)
lldb::DynamicValueType GetDynamicValueType()
llvm::Expected< lldb::ValueObjectSP > CastBaseToDerivedType(CompilerType type, uint64_t offset)
Take a ValueObject whose type is a base class, and cast it to 'type', which should be one of its deri...
lldb::SyntheticChildrenSP GetSyntheticChildren()
lldb::LanguageType m_preferred_display_language
uint32_t GetTypeInfo(CompilerType *pointee_or_element_compiler_type=nullptr)
virtual llvm::Expected< uint32_t > CalculateNumChildren(uint32_t max=UINT32_MAX)=0
Should only be called by ValueObject::GetNumChildren().
lldb::LanguageType GetObjectRuntimeLanguage()
virtual lldb::ValueObjectSP CreateConstantValue(ConstString name)
virtual bool IsLogicalTrue(Status &error)
lldb::Format m_last_format
virtual SymbolContextScope * GetSymbolContextScope()
virtual bool HasDynamicValueTypeInfo()
ValueObject * m_synthetic_value
virtual lldb::ValueObjectSP Clone(llvm::StringRef new_name)
Creates a copy of the ValueObject with a new name and setting the current ValueObject as its parent.
void SetNumChildren(uint32_t num_children)
ValueObject * m_parent
The parent value object, or nullptr if this has no parent.
static lldb::ValueObjectSP CreateValueObjectFromAPInt(const ExecutionContext &exe_ctx, const llvm::APInt &v, CompilerType type, llvm::StringRef name, ValueObject *parent=nullptr)
Create a value object containing the given APInt value.
virtual bool IsBaseClass()
llvm::Expected< bool > GetValueAsBool()
If the current ValueObject is of an appropriate type, convert the value to a boolean and return that.
virtual bool GetDeclaration(Declaration &decl)
llvm::Error SetValueFromInteger(const llvm::APInt &value, bool can_update_var=true)
Update an existing integer ValueObject with a new integer value.
static lldb::ValueObjectSP CreateValueObjectFromExpression(llvm::StringRef name, llvm::StringRef expression, const ExecutionContext &exe_ctx, ValueObject *parent=nullptr)
The following static routines create "Root" ValueObjects if parent is null.
lldb::ValueObjectSP GetQualifiedRepresentationIfAvailable(lldb::DynamicValueType dynValue, bool synthValue)
lldb::ValueObjectSP m_addr_of_valobj_sp
We have to hold onto a shared pointer to this one because it is created as an independent ValueObject...
std::pair< size_t, bool > ReadPointedString(lldb::WritableDataBufferSP &buffer_sp, Status &error, bool honor_array)
llvm::Error Dump(Stream &s)
bool IsUninitializedReference()
bool UpdateValueIfNeeded(bool update_format=true)
AddressType GetAddressTypeOfChildren()
const Status & GetError()
lldb::TypeFormatImplSP m_type_format_sp
lldb::TargetSP GetTargetSP() const
ExpressionPathEndResultType
@ eExpressionPathEndResultTypeInvalid
@ eExpressionPathEndResultTypePlain
Anything but...
@ eExpressionPathEndResultTypeBoundedRange
A range [low-high].
@ eExpressionPathEndResultTypeBitfield
A bitfield.
@ eExpressionPathEndResultTypeUnboundedRange
A range [].
virtual lldb::ValueObjectSP Dereference(Status &error)
CompilerType GetCompilerType()
void SetPreferredDisplayLanguageIfNeeded(lldb::LanguageType)
virtual const char * GetValueAsCString()
bool HasSpecialPrintableRepresentation(ValueObjectRepresentationStyle val_obj_display, lldb::Format custom_format)
virtual const char * GetLocationAsCString()
AddrAndType GetPointerValue()
ConstString GetName() const
std::string m_location_str
Cached location string that will get cleared if/when the value is updated.
lldb::ValueObjectSP GetVTable()
If this object represents a C++ class with a vtable, return an object that represents the virtual fun...
virtual bool SetValueFromCString(const char *value_str, Status &error)
virtual lldb::ValueObjectSP GetStaticValue()
lldb::ValueObjectSP Persist()
std::string m_object_desc_str
Cached result of the "object printer".
virtual ValueObject * GetParent()
static lldb::ValueObjectSP CreateValueObjectFromData(llvm::StringRef name, const DataExtractor &data, const ExecutionContext &exe_ctx, CompilerType type, ValueObject *parent=nullptr)
lldb::SyntheticChildrenSP m_synthetic_children_sp
As determined by DataVisualization - may be overridden.
static lldb::ValueObjectSP CreateValueObjectFromAPFloat(const ExecutionContext &exe_ctx, const llvm::APFloat &v, CompilerType type, llvm::StringRef name, ValueObject *parent=nullptr)
Create a value object containing the given APFloat value.
virtual uint32_t GetBitfieldBitOffset()
llvm::Expected< std::string > GetObjectDescription()
std::string m_old_value_str
Cached old value string from the last time the value was gotten.
virtual lldb::ValueObjectSP GetNonSyntheticValue()
lldb::ValueObjectSP GetSyntheticExpressionPathChild(const char *expression, bool can_create)
virtual bool SetData(DataExtractor &data, Status &error)
virtual int64_t GetValueAsSigned(int64_t fail_value, bool *success=nullptr)
const char * GetSummaryAsCString(lldb::LanguageType lang=lldb::eLanguageTypeUnknown)
ValueObjectRepresentationStyle
@ eValueObjectRepresentationStyleLocation
@ eValueObjectRepresentationStyleSummary
@ eValueObjectRepresentationStyleName
@ eValueObjectRepresentationStyleType
@ eValueObjectRepresentationStyleChildrenCount
@ eValueObjectRepresentationStyleExpressionPath
@ eValueObjectRepresentationStyleValue
@ eValueObjectRepresentationStyleLanguageSpecific
std::string m_value_str
Cached value string that will get cleared if/when the value is updated.
lldb::ValueObjectSP GetSyntheticArrayMember(size_t index, bool can_create)
virtual bool ResolveValue(Scalar &scalar)
llvm::Expected< llvm::APSInt > GetValueAsAPSInt()
If the current ValueObject is of an appropriate type, convert the value to an APSInt and return that.
void SetSyntheticChildren(const lldb::SyntheticChildrenSP &synth_sp)
ConstString m_name
The name of this object.
bool IsPointerOrReferenceType()
const char * GetLocationAsCStringImpl(const Value &value, const DataExtractor &data)
virtual void SetFormat(lldb::Format format)
ValueObject * m_dynamic_value
void ClearDynamicTypeInformation()
bool IsCStringContainer(bool check_pointer=false)
Returns true if this is a char* or a char[] if it is a char* and check_pointer is true,...
virtual bool IsSynthetic()
std::map< ConstString, ValueObject * > m_synthetic_children
llvm::ArrayRef< uint8_t > GetLocalBuffer() const
Returns the local buffer that this ValueObject points to if it's available.
std::optional< lldb::addr_t > GetStrippedPointerValue(lldb::addr_t address)
Remove ptrauth bits from address if the type has a ptrauth qualifier.
const ExecutionContextRef & GetExecutionContextRef() const
virtual AddrAndType GetAddressOf(bool scalar_is_load_address=true)
uint32_t GetNumChildrenIgnoringErrors(uint32_t max=UINT32_MAX)
Like GetNumChildren but returns 0 on error.
virtual bool CanProvideValue()
UserID m_id
Unique identifier for every value object.
const Value & GetValue() const
virtual lldb::LanguageType GetPreferredDisplayLanguage()
lldb::ValueObjectSP GetValueForExpressionPath_Impl(llvm::StringRef expression_cstr, ExpressionPathScanEndReason *reason_to_stop, ExpressionPathEndResultType *final_value_type, const GetValueForExpressionPathOptions &options, ExpressionPathAftermath *final_task_on_target)
static lldb::ValueObjectSP CreateValueObjectFromAddress(llvm::StringRef name, uint64_t address, const ExecutionContext &exe_ctx, CompilerType type, bool do_deref=true, ValueObject *parent=nullptr)
Given an address either create a value object containing the value at that address,...
const Scalar & GetScalar() const
See comment on m_scalar to understand what GetScalar returns.
Status GetValueAsData(ExecutionContext *exe_ctx, DataExtractor &data, Module *module)
RegisterInfo * GetRegisterInfo() const
ValueType
Type that describes Value::m_value.
@ 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
Scalar & ResolveValue(ExecutionContext *exe_ctx, Module *module=nullptr)
@ RegisterInfo
RegisterInfo * (can be a scalar or a vector register).
ContextType GetContextType() const
const CompilerType & GetCompilerType()
uint8_t * GetBytes()
Get a pointer to the data.
#define LLDB_INVALID_ADDRESS
@ DoNoSelectMostRelevantFrame
lldb::ByteOrder InlHostByteOrder()
A class that represents a running process on the host machine.
Log * GetLog(Cat mask)
Retrieve the Log object for the channel associated with the given log enum.
std::shared_ptr< SummaryStatistics > SummaryStatisticsSP
@ 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::string toString(FormatterBytecode::OpCodes op)
std::shared_ptr< lldb_private::TypeSystem > TypeSystemSP
std::shared_ptr< lldb_private::ABI > ABISP
std::shared_ptr< lldb_private::StackFrame > StackFrameSP
std::shared_ptr< lldb_private::TypeSummaryImpl > TypeSummaryImplSP
std::shared_ptr< lldb_private::Thread > ThreadSP
std::shared_ptr< lldb_private::TypeFormatImpl > TypeFormatImplSP
std::shared_ptr< lldb_private::ValueObject > ValueObjectSP
std::shared_ptr< lldb_private::ExpressionVariable > ExpressionVariableSP
Format
Display format definitions.
@ eFormatCString
NULL terminated C strings.
@ eFormatCharArray
Print characters with no single quotes, used for character arrays that can contain non printable char...
@ eFormatComplex
Floating point complex type.
@ eFormatOSType
OS character codes encoded into an integer 'PICT' 'text' etc...
@ eFormatCharPrintable
Only printable characters, '.' if not printable.
@ eFormatComplexInteger
Integer complex type.
@ eFormatFloat128
Disambiguate between 128-bit long double (which uses eFormatFloat) and __float128 (which uses eFormat...
LanguageType
Programming language type.
@ eLanguageTypeUnknown
Unknown or invalid language value.
@ eLanguageTypeObjC
Objective-C.
std::shared_ptr< lldb_private::Type > TypeSP
std::shared_ptr< lldb_private::Process > ProcessSP
Encoding
Register encoding definitions.
@ eEncodingVector
vector registers
std::shared_ptr< lldb_private::SyntheticChildren > SyntheticChildrenSP
std::shared_ptr< lldb_private::DataBuffer > DataBufferSP
std::shared_ptr< lldb_private::WritableDataBuffer > WritableDataBufferSP
std::shared_ptr< lldb_private::Target > TargetSP
std::shared_ptr< lldb_private::DataExtractor > DataExtractorSP
std::shared_ptr< lldb_private::Module > ModuleSP
Every register is described in detail including its name, alternate name (optional),...
lldb::Encoding encoding
Encoding of the register bits.
const char * alt_name
Alternate name of this register, can be NULL.
const char * name
Name of this register, can't be NULL.
lldb::Format format
Default display format.
bool m_is_synthetic_children_generated
SyntheticChildrenTraversal m_synthetic_children_traversal
bool m_check_dot_vs_arrow_syntax
bool m_allow_bitfields_syntax
SyntheticChildrenTraversal