Moved lldb::user_id_t values to be 64 bit. This was going to be needed for

process IDs, and thread IDs, but was mainly needed for for the UserID's for
Types so that DWARF with debug map can work flawlessly. With DWARF in .o files
the type ID was the DIE offset in the DWARF for the .o file which is not
unique across all .o files, so now the SymbolFileDWARFDebugMap class will
make the .o file index part (the high 32 bits) of the unique type identifier
so it can uniquely identify the types.

llvm-svn: 142534
This commit is contained in:
Greg Clayton
2011-10-19 18:09:39 +00:00
parent c620f554b9
commit 81c22f6104
43 changed files with 347 additions and 234 deletions

View File

@@ -31,7 +31,7 @@ StackID::Dump (Stream *s)
m_symbol_scope->CalculateSymbolContext (&sc);
if (sc.block)
s->Printf(" (Block {0x%8.8x})", sc.block->GetID());
s->Printf(" (Block {0x%8.8llx})", sc.block->GetID());
else if (sc.symbol)
s->Printf(" (Symbol{0x%8.8x})", sc.symbol->GetID());
}