Better error reporting when a variable can't be

read during materialization.  First of all, report
if we can't read the data for some reason.  Second,
consult the ValueObject's error and report that if
there's some problem.

<rdar://problem/16074201>

llvm-svn: 202552
This commit is contained in:
Sean Callanan 2014-02-28 22:27:53 +00:00
parent 525a212379
commit 866e91c9d4
13 changed files with 117 additions and 27 deletions

View File

@ -793,7 +793,7 @@ public:
uint32_t item_count = 1); uint32_t item_count = 1);
virtual uint64_t virtual uint64_t
GetData (DataExtractor& data); GetData (DataExtractor& data, Error &error);
virtual bool virtual bool
SetData (DataExtractor &data, Error &error); SetData (DataExtractor &data, Error &error);

View File

@ -1569,8 +1569,9 @@ SBValue::GetData ()
if (value_sp) if (value_sp)
{ {
DataExtractorSP data_sp(new DataExtractor()); DataExtractorSP data_sp(new DataExtractor());
value_sp->GetData(*data_sp); Error error;
if (data_sp->GetByteSize() > 0) value_sp->GetData(*data_sp, error);
if (error.Success())
*sb_data = data_sp; *sb_data = data_sp;
} }
if (log) if (log)

View File

@ -978,14 +978,15 @@ ValueObject::GetPointeeData (DataExtractor& data,
ValueObjectSP pointee_sp = Dereference(error); ValueObjectSP pointee_sp = Dereference(error);
if (error.Fail() || pointee_sp.get() == NULL) if (error.Fail() || pointee_sp.get() == NULL)
return 0; return 0;
return pointee_sp->GetData(data); return pointee_sp->GetData(data, error);
} }
else else
{ {
ValueObjectSP child_sp = GetChildAtIndex(0, true); ValueObjectSP child_sp = GetChildAtIndex(0, true);
if (child_sp.get() == NULL) if (child_sp.get() == NULL)
return 0; return 0;
return child_sp->GetData(data); Error error;
return child_sp->GetData(data, error);
} }
return true; return true;
} }
@ -1059,11 +1060,11 @@ ValueObject::GetPointeeData (DataExtractor& data,
} }
uint64_t uint64_t
ValueObject::GetData (DataExtractor& data) ValueObject::GetData (DataExtractor& data, Error &error)
{ {
UpdateValueIfNeeded(false); UpdateValueIfNeeded(false);
ExecutionContext exe_ctx (GetExecutionContextRef()); ExecutionContext exe_ctx (GetExecutionContextRef());
Error error = m_value.GetValueAsData(&exe_ctx, data, 0, GetModule().get()); error = m_value.GetValueAsData(&exe_ctx, data, 0, GetModule().get());
if (error.Fail()) if (error.Fail())
{ {
if (m_data.GetByteSize()) if (m_data.GetByteSize())

View File

@ -576,7 +576,11 @@ bool
lldb_private::formatters::Char16SummaryProvider (ValueObject& valobj, Stream& stream) lldb_private::formatters::Char16SummaryProvider (ValueObject& valobj, Stream& stream)
{ {
DataExtractor data; DataExtractor data;
valobj.GetData(data); Error error;
valobj.GetData(data, error);
if (error.Fail())
return false;
std::string value; std::string value;
valobj.GetValueAsCString(lldb::eFormatUnicode16, value); valobj.GetValueAsCString(lldb::eFormatUnicode16, value);
@ -590,7 +594,11 @@ bool
lldb_private::formatters::Char32SummaryProvider (ValueObject& valobj, Stream& stream) lldb_private::formatters::Char32SummaryProvider (ValueObject& valobj, Stream& stream)
{ {
DataExtractor data; DataExtractor data;
valobj.GetData(data); Error error;
valobj.GetData(data, error);
if (error.Fail())
return false;
std::string value; std::string value;
valobj.GetValueAsCString(lldb::eFormatUnicode32, value); valobj.GetValueAsCString(lldb::eFormatUnicode32, value);
@ -604,7 +612,11 @@ bool
lldb_private::formatters::WCharSummaryProvider (ValueObject& valobj, Stream& stream) lldb_private::formatters::WCharSummaryProvider (ValueObject& valobj, Stream& stream)
{ {
DataExtractor data; DataExtractor data;
valobj.GetData(data); Error error;
valobj.GetData(data, error);
if (error.Fail())
return false;
clang::ASTContext* ast = valobj.GetClangType().GetASTContext(); clang::ASTContext* ast = valobj.GetClangType().GetASTContext();
@ -1144,7 +1156,10 @@ lldb_private::formatters::NSAttributedStringSummaryProvider (ValueObject& valobj
if (!child_ptr_sp) if (!child_ptr_sp)
return false; return false;
DataExtractor data; DataExtractor data;
child_ptr_sp->GetData(data); Error error;
child_ptr_sp->GetData(data, error);
if (error.Fail())
return false;
ValueObjectSP child_sp(child_ptr_sp->CreateValueObjectFromData("string_data", data, exe_ctx, type)); ValueObjectSP child_sp(child_ptr_sp->CreateValueObjectFromData("string_data", data, exe_ctx, type));
child_sp->GetValueAsUnsigned(0); child_sp->GetValueAsUnsigned(0);
if (child_sp) if (child_sp)
@ -1218,7 +1233,10 @@ lldb_private::formatters::ObjCSELSummaryProvider (ValueObject& valobj, Stream& s
else else
{ {
DataExtractor data; DataExtractor data;
valobj.GetData(data); Error error;
valobj.GetData(data, error);
if (error.Fail())
return false;
valobj_sp = ValueObject::CreateValueObjectFromData("text", data, exe_ctx, charstar); valobj_sp = ValueObject::CreateValueObjectFromData("text", data, exe_ctx, charstar);
} }

View File

@ -257,7 +257,11 @@ lldb_private::formatters::LibcxxStdListSyntheticFrontEnd::GetChildAtIndex (size_
return lldb::ValueObjectSP(); return lldb::ValueObjectSP();
// we need to copy current_sp into a new object otherwise we will end up with all items named __value_ // we need to copy current_sp into a new object otherwise we will end up with all items named __value_
DataExtractor data; DataExtractor data;
current_sp->GetData(data); Error error;
current_sp->GetData(data, error);
if (error.Fail())
return lldb::ValueObjectSP();
StreamString name; StreamString name;
name.Printf("[%zu]",idx); name.Printf("[%zu]",idx);
return (m_children[idx] = ValueObject::CreateValueObjectFromData(name.GetData(), data, m_backend.GetExecutionContextRef(), m_element_type)); return (m_children[idx] = ValueObject::CreateValueObjectFromData(name.GetData(), data, m_backend.GetExecutionContextRef(), m_element_type));

View File

@ -366,7 +366,13 @@ lldb_private::formatters::LibcxxStdMapSyntheticFrontEnd::GetChildAtIndex (size_t
// at this point we have a valid // at this point we have a valid
// we need to copy current_sp into a new object otherwise we will end up with all items named __value_ // we need to copy current_sp into a new object otherwise we will end up with all items named __value_
DataExtractor data; DataExtractor data;
iterated_sp->GetData(data); Error error;
iterated_sp->GetData(data, error);
if (error.Fail())
{
m_tree = NULL;
return lldb::ValueObjectSP();
}
StreamString name; StreamString name;
name.Printf("[%zu]",idx); name.Printf("[%zu]",idx);
return (m_children[idx] = ValueObject::CreateValueObjectFromData(name.GetData(), data, m_backend.GetExecutionContextRef(), m_element_type)); return (m_children[idx] = ValueObject::CreateValueObjectFromData(name.GetData(), data, m_backend.GetExecutionContextRef(), m_element_type));

View File

@ -83,7 +83,10 @@ lldb_private::formatters::LibcxxStdUnorderedMapSyntheticFrontEnd::GetChildAtInde
StreamString stream; StreamString stream;
stream.Printf("[%zu]",idx); stream.Printf("[%zu]",idx);
DataExtractor data; DataExtractor data;
val_hash.first->GetData(data); Error error;
val_hash.first->GetData(data, error);
if (error.Fail())
return lldb::ValueObjectSP();
const bool thread_and_frame_only_if_stopped = true; const bool thread_and_frame_only_if_stopped = true;
ExecutionContext exe_ctx = val_hash.first->GetExecutionContextRef().Lock(thread_and_frame_only_if_stopped); ExecutionContext exe_ctx = val_hash.first->GetExecutionContextRef().Lock(thread_and_frame_only_if_stopped);
return val_hash.first->CreateValueObjectFromData(stream.GetData(), return val_hash.first->CreateValueObjectFromData(stream.GetData(),

View File

@ -64,7 +64,10 @@ TypeFormatImpl_Format::FormatObject (ValueObject *valobj,
const RegisterInfo *reg_info = value.GetRegisterInfo(); const RegisterInfo *reg_info = value.GetRegisterInfo();
if (reg_info) if (reg_info)
{ {
valobj->GetData(data); Error error;
valobj->GetData(data, error);
if (error.Fail())
return false;
StreamString reg_sstr; StreamString reg_sstr;
data.Dump (&reg_sstr, data.Dump (&reg_sstr,
@ -105,7 +108,12 @@ TypeFormatImpl_Format::FormatObject (ValueObject *valobj,
} }
} }
else else
valobj->GetData(data); {
Error error;
valobj->GetData(data, error);
if (error.Fail())
return false;
}
StreamString sstr; StreamString sstr;
clang_type.DumpTypeValue (&sstr, // The stream to use for display clang_type.DumpTypeValue (&sstr, // The stream to use for display
@ -203,7 +211,10 @@ TypeFormatImpl_EnumType::FormatObject (ValueObject *valobj,
if (valobj_enum_type.IsValid() == false) if (valobj_enum_type.IsValid() == false)
return false; return false;
DataExtractor data; DataExtractor data;
valobj->GetData(data); Error error;
valobj->GetData(data, error);
if (error.Fail())
return false;
ExecutionContext exe_ctx (valobj->GetExecutionContextRef()); ExecutionContext exe_ctx (valobj->GetExecutionContextRef());
StreamString sstr; StreamString sstr;
valobj_enum_type.DumpTypeValue(&sstr, valobj_enum_type.DumpTypeValue(&sstr,

View File

@ -709,7 +709,7 @@ ClangUserExpression::PrepareToExecuteJITExpression (Stream &error_stream,
if (!materialize_error.Success()) if (!materialize_error.Success())
{ {
error_stream.Printf("Couldn't materialize struct: %s\n", materialize_error.AsCString()); error_stream.Printf("Couldn't materialize: %s\n", materialize_error.AsCString());
return false; return false;
} }
} }

View File

@ -443,10 +443,26 @@ public:
return; return;
} }
Error valobj_error = valobj_sp->GetError();
if (valobj_error.Fail())
{
err.SetErrorStringWithFormat("couldn't get the value of variable %s: %s", m_variable_sp->GetName().AsCString(), valobj_error.AsCString());
return;
}
if (m_is_reference) if (m_is_reference)
{ {
DataExtractor valobj_extractor; DataExtractor valobj_extractor;
valobj_sp->GetData(valobj_extractor); Error extract_error;
valobj_sp->GetData(valobj_extractor, extract_error);
if (!extract_error.Success())
{
err.SetErrorStringWithFormat("couldn't read contents of reference variable %s: %s", m_variable_sp->GetName().AsCString(), extract_error.AsCString());
return;
}
lldb::offset_t offset = 0; lldb::offset_t offset = 0;
lldb::addr_t reference_addr = valobj_extractor.GetAddress(&offset); lldb::addr_t reference_addr = valobj_extractor.GetAddress(&offset);
@ -478,8 +494,14 @@ public:
else else
{ {
DataExtractor data; DataExtractor data;
valobj_sp->GetData(data); Error extract_error;
valobj_sp->GetData(data, extract_error);
if (!extract_error.Success())
{
err.SetErrorStringWithFormat("couldn't get the value of %s: %s", m_variable_sp->GetName().AsCString(), extract_error.AsCString());
return;
}
if (m_temporary_allocation != LLDB_INVALID_ADDRESS) if (m_temporary_allocation != LLDB_INVALID_ADDRESS)
{ {
err.SetErrorStringWithFormat("trying to create a temporary region for %s but one exists", m_variable_sp->GetName().AsCString()); err.SetErrorStringWithFormat("trying to create a temporary region for %s but one exists", m_variable_sp->GetName().AsCString());

View File

@ -522,7 +522,13 @@ ABIMacOSX_arm::SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueObj
if (clang_type.IsIntegerType (is_signed) || clang_type.IsPointerType()) if (clang_type.IsIntegerType (is_signed) || clang_type.IsPointerType())
{ {
DataExtractor data; DataExtractor data;
size_t num_bytes = new_value_sp->GetData(data); Error data_error;
size_t num_bytes = new_value_sp->GetData(data, data_error);
if (data_error.Fail())
{
error.SetErrorStringWithFormat("Couldn't convert return value to raw data: %s", data_error.AsCString());
return error;
}
lldb::offset_t offset = 0; lldb::offset_t offset = 0;
if (num_bytes <= 8) if (num_bytes <= 8)
{ {

View File

@ -600,7 +600,13 @@ ABIMacOSX_i386::SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueOb
if (clang_type.IsIntegerType (is_signed) || clang_type.IsPointerType()) if (clang_type.IsIntegerType (is_signed) || clang_type.IsPointerType())
{ {
DataExtractor data; DataExtractor data;
size_t num_bytes = new_value_sp->GetData(data); Error data_error;
size_t num_bytes = new_value_sp->GetData(data, data_error);
if (data_error.Fail())
{
error.SetErrorStringWithFormat("Couldn't convert return value to raw data: %s", data_error.AsCString());
return error;
}
lldb::offset_t offset = 0; lldb::offset_t offset = 0;
if (num_bytes <= 8) if (num_bytes <= 8)
{ {

View File

@ -562,7 +562,13 @@ ABISysV_x86_64::SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueOb
const RegisterInfo *reg_info = reg_ctx->GetRegisterInfoByName("rax", 0); const RegisterInfo *reg_info = reg_ctx->GetRegisterInfoByName("rax", 0);
DataExtractor data; DataExtractor data;
size_t num_bytes = new_value_sp->GetData(data); Error data_error;
size_t num_bytes = new_value_sp->GetData(data, data_error);
if (data_error.Fail())
{
error.SetErrorStringWithFormat("Couldn't convert return value to raw data: %s", data_error.AsCString());
return error;
}
lldb::offset_t offset = 0; lldb::offset_t offset = 0;
if (num_bytes <= 8) if (num_bytes <= 8)
{ {
@ -589,8 +595,14 @@ ABISysV_x86_64::SetReturnValueObject(lldb::StackFrameSP &frame_sp, lldb::ValueOb
const RegisterInfo *xmm0_info = reg_ctx->GetRegisterInfoByName("xmm0", 0); const RegisterInfo *xmm0_info = reg_ctx->GetRegisterInfoByName("xmm0", 0);
RegisterValue xmm0_value; RegisterValue xmm0_value;
DataExtractor data; DataExtractor data;
size_t num_bytes = new_value_sp->GetData(data); Error data_error;
size_t num_bytes = new_value_sp->GetData(data, data_error);
if (data_error.Fail())
{
error.SetErrorStringWithFormat("Couldn't convert return value to raw data: %s", data_error.AsCString());
return error;
}
unsigned char buffer[16]; unsigned char buffer[16];
ByteOrder byte_order = data.GetByteOrder(); ByteOrder byte_order = data.GetByteOrder();