<rdar://problem/10126482>

Fixed an issues with the SBType and SBTypeMember classes:
- Fixed SBType to be able to dump itself from python
- Fixed SBType::GetNumberOfFields() to return the correct value for objective C interfaces
- Fixed SBTypeMember to be able to dump itself from python
- Fixed the SBTypeMember ability to get a field offset in bytes (the value
  being returned was wrong)
- Added the SBTypeMember ability to get a field offset in bits


Cleaned up a lot of the Stream usage in the SB API files.

llvm-svn: 144493
This commit is contained in:
Greg Clayton
2011-11-13 06:57:31 +00:00
parent a476e391f1
commit da7bc7d000
33 changed files with 327 additions and 185 deletions

View File

@@ -14,6 +14,7 @@
#include "lldb/API/SBStream.h"
#include "lldb/Core/FileSpecList.h"
#include "lldb/Core/Log.h"
#include "lldb/Core/Stream.h"
#include "lldb/Host/FileSpec.h"
using namespace lldb;
@@ -121,19 +122,21 @@ SBFileSpecList::ref() const
bool
SBFileSpecList::GetDescription (SBStream &description) const
{
Stream &strm = description.ref();
if (m_opaque_ap.get())
{
uint32_t num_files = m_opaque_ap->GetSize();
description.Printf ("%d files: ", num_files);
strm.Printf ("%d files: ", num_files);
for (uint32_t i = 0; i < num_files; i++)
{
char path[PATH_MAX];
if (m_opaque_ap->GetFileSpecAtIndex(i).GetPath(path, sizeof(path)))
description.Printf ("\n %s", path);
strm.Printf ("\n %s", path);
}
}
else
description.Printf ("No value");
strm.PutCString ("No value");
return true;
}