SBAddress currently *may* have an Address object or it may not.

If it has an Address object, it is assumed to be Valid.
Change SBAddress to always have an Address object and check
whether it is valid or not in those case.

This is fixing a subtle problem where we ended up with
a SBAddress with an Address of LLDB_INVALID_ADDRESS could
run through a copy constructor and turn into an SBAddress
with no Address object being backed (because it wasn't
distinguishing between invalid-Address versus no-Address.)

The cost of an Address object is not high and this will be
an easy mistake for someone else to make; I'm fixing
SBAddress so it doesn't come up again.
<rdar://problem/18069407> 

llvm-svn: 221002
This commit is contained in:
Jason Molenda 2014-10-31 21:30:59 +00:00
parent a6556f7295
commit fca26da446
1 changed files with 21 additions and 21 deletions

View File

@ -23,19 +23,19 @@ using namespace lldb_private;
SBAddress::SBAddress () : SBAddress::SBAddress () :
m_opaque_ap () m_opaque_ap (new Address())
{ {
} }
SBAddress::SBAddress (const Address *lldb_object_ptr) : SBAddress::SBAddress (const Address *lldb_object_ptr) :
m_opaque_ap () m_opaque_ap (new Address())
{ {
if (lldb_object_ptr) if (lldb_object_ptr)
ref() = *lldb_object_ptr; ref() = *lldb_object_ptr;
} }
SBAddress::SBAddress (const SBAddress &rhs) : SBAddress::SBAddress (const SBAddress &rhs) :
m_opaque_ap () m_opaque_ap (new Address())
{ {
if (rhs.IsValid()) if (rhs.IsValid())
ref() = rhs.ref(); ref() = rhs.ref();
@ -49,7 +49,7 @@ SBAddress::SBAddress (lldb::SBSection section, lldb::addr_t offset) :
// Create an address by resolving a load address using the supplied target // Create an address by resolving a load address using the supplied target
SBAddress::SBAddress (lldb::addr_t load_addr, lldb::SBTarget &target) : SBAddress::SBAddress (lldb::addr_t load_addr, lldb::SBTarget &target) :
m_opaque_ap() m_opaque_ap(new Address())
{ {
SetLoadAddress (load_addr, target); SetLoadAddress (load_addr, target);
} }
@ -68,7 +68,7 @@ SBAddress::operator = (const SBAddress &rhs)
if (rhs.IsValid()) if (rhs.IsValid())
ref() = rhs.ref(); ref() = rhs.ref();
else else
m_opaque_ap.reset(); m_opaque_ap.reset (new Address());
} }
return *this; return *this;
} }
@ -82,7 +82,7 @@ SBAddress::IsValid () const
void void
SBAddress::Clear () SBAddress::Clear ()
{ {
m_opaque_ap.reset(); m_opaque_ap.reset (new Address());
} }
void void
@ -100,13 +100,13 @@ SBAddress::SetAddress (const Address *lldb_object_ptr)
if (lldb_object_ptr) if (lldb_object_ptr)
ref() = *lldb_object_ptr; ref() = *lldb_object_ptr;
else else
m_opaque_ap.reset(); m_opaque_ap.reset (new Address());
} }
lldb::addr_t lldb::addr_t
SBAddress::GetFileAddress () const SBAddress::GetFileAddress () const
{ {
if (m_opaque_ap.get()) if (m_opaque_ap->IsValid())
return m_opaque_ap->GetFileAddress(); return m_opaque_ap->GetFileAddress();
else else
return LLDB_INVALID_ADDRESS; return LLDB_INVALID_ADDRESS;
@ -121,7 +121,7 @@ SBAddress::GetLoadAddress (const SBTarget &target) const
TargetSP target_sp (target.GetSP()); TargetSP target_sp (target.GetSP());
if (target_sp) if (target_sp)
{ {
if (m_opaque_ap.get()) if (m_opaque_ap->IsValid())
{ {
Mutex::Locker api_locker (target_sp->GetAPIMutex()); Mutex::Locker api_locker (target_sp->GetAPIMutex());
addr = m_opaque_ap->GetLoadAddress (target_sp.get()); addr = m_opaque_ap->GetLoadAddress (target_sp.get());
@ -162,7 +162,7 @@ SBAddress::SetLoadAddress (lldb::addr_t load_addr, lldb::SBTarget &target)
bool bool
SBAddress::OffsetAddress (addr_t offset) SBAddress::OffsetAddress (addr_t offset)
{ {
if (m_opaque_ap.get()) if (m_opaque_ap->IsValid())
{ {
addr_t addr_offset = m_opaque_ap->GetOffset(); addr_t addr_offset = m_opaque_ap->GetOffset();
if (addr_offset != LLDB_INVALID_ADDRESS) if (addr_offset != LLDB_INVALID_ADDRESS)
@ -178,7 +178,7 @@ lldb::SBSection
SBAddress::GetSection () SBAddress::GetSection ()
{ {
lldb::SBSection sb_section; lldb::SBSection sb_section;
if (m_opaque_ap.get()) if (m_opaque_ap->IsValid())
sb_section.SetSP (m_opaque_ap->GetSection()); sb_section.SetSP (m_opaque_ap->GetSection());
return sb_section; return sb_section;
} }
@ -186,7 +186,7 @@ SBAddress::GetSection ()
lldb::addr_t lldb::addr_t
SBAddress::GetOffset () SBAddress::GetOffset ()
{ {
if (m_opaque_ap.get()) if (m_opaque_ap->IsValid())
return m_opaque_ap->GetOffset(); return m_opaque_ap->GetOffset();
return 0; return 0;
} }
@ -233,7 +233,7 @@ SBAddress::GetDescription (SBStream &description)
// Call "ref()" on the stream to make sure it creates a backing stream in // Call "ref()" on the stream to make sure it creates a backing stream in
// case there isn't one already... // case there isn't one already...
Stream &strm = description.ref(); Stream &strm = description.ref();
if (m_opaque_ap.get()) if (m_opaque_ap->IsValid())
{ {
m_opaque_ap->Dump (&strm, m_opaque_ap->Dump (&strm,
NULL, NULL,
@ -255,7 +255,7 @@ SBModule
SBAddress::GetModule () SBAddress::GetModule ()
{ {
SBModule sb_module; SBModule sb_module;
if (m_opaque_ap.get()) if (m_opaque_ap->IsValid())
sb_module.SetSP (m_opaque_ap->GetModule()); sb_module.SetSP (m_opaque_ap->GetModule());
return sb_module; return sb_module;
} }
@ -264,7 +264,7 @@ SBSymbolContext
SBAddress::GetSymbolContext (uint32_t resolve_scope) SBAddress::GetSymbolContext (uint32_t resolve_scope)
{ {
SBSymbolContext sb_sc; SBSymbolContext sb_sc;
if (m_opaque_ap.get()) if (m_opaque_ap->IsValid())
m_opaque_ap->CalculateSymbolContext (&sb_sc.ref(), resolve_scope); m_opaque_ap->CalculateSymbolContext (&sb_sc.ref(), resolve_scope);
return sb_sc; return sb_sc;
} }
@ -273,7 +273,7 @@ SBCompileUnit
SBAddress::GetCompileUnit () SBAddress::GetCompileUnit ()
{ {
SBCompileUnit sb_comp_unit; SBCompileUnit sb_comp_unit;
if (m_opaque_ap.get()) if (m_opaque_ap->IsValid())
sb_comp_unit.reset(m_opaque_ap->CalculateSymbolContextCompileUnit()); sb_comp_unit.reset(m_opaque_ap->CalculateSymbolContextCompileUnit());
return sb_comp_unit; return sb_comp_unit;
} }
@ -282,7 +282,7 @@ SBFunction
SBAddress::GetFunction () SBAddress::GetFunction ()
{ {
SBFunction sb_function; SBFunction sb_function;
if (m_opaque_ap.get()) if (m_opaque_ap->IsValid())
sb_function.reset(m_opaque_ap->CalculateSymbolContextFunction()); sb_function.reset(m_opaque_ap->CalculateSymbolContextFunction());
return sb_function; return sb_function;
} }
@ -291,7 +291,7 @@ SBBlock
SBAddress::GetBlock () SBAddress::GetBlock ()
{ {
SBBlock sb_block; SBBlock sb_block;
if (m_opaque_ap.get()) if (m_opaque_ap->IsValid())
sb_block.SetPtr(m_opaque_ap->CalculateSymbolContextBlock()); sb_block.SetPtr(m_opaque_ap->CalculateSymbolContextBlock());
return sb_block; return sb_block;
} }
@ -300,7 +300,7 @@ SBSymbol
SBAddress::GetSymbol () SBAddress::GetSymbol ()
{ {
SBSymbol sb_symbol; SBSymbol sb_symbol;
if (m_opaque_ap.get()) if (m_opaque_ap->IsValid())
sb_symbol.reset(m_opaque_ap->CalculateSymbolContextSymbol()); sb_symbol.reset(m_opaque_ap->CalculateSymbolContextSymbol());
return sb_symbol; return sb_symbol;
} }
@ -309,7 +309,7 @@ SBLineEntry
SBAddress::GetLineEntry () SBAddress::GetLineEntry ()
{ {
SBLineEntry sb_line_entry; SBLineEntry sb_line_entry;
if (m_opaque_ap.get()) if (m_opaque_ap->IsValid())
{ {
LineEntry line_entry; LineEntry line_entry;
if (m_opaque_ap->CalculateSymbolContextLineEntry (line_entry)) if (m_opaque_ap->CalculateSymbolContextLineEntry (line_entry))
@ -321,7 +321,7 @@ SBAddress::GetLineEntry ()
AddressClass AddressClass
SBAddress::GetAddressClass () SBAddress::GetAddressClass ()
{ {
if (m_opaque_ap.get()) if (m_opaque_ap->IsValid())
return m_opaque_ap->GetAddressClass(); return m_opaque_ap->GetAddressClass();
return eAddressClassInvalid; return eAddressClassInvalid;
} }