diff options
| author | Greg Clayton <gclayton@apple.com> | 2011-10-19 18:09:39 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2011-10-19 18:09:39 +0000 |
| commit | 81c22f6104a391f4b3c9f072cf8cfd47b746367d (patch) | |
| tree | 24933ab12c153c7af3b0604f4cfd54a457aa4c7f /lldb/source/Symbol/SymbolContext.cpp | |
| parent | c620f554b9c465a9b1db8cd832bf2ce3e11447bf (diff) | |
| download | bcm5719-llvm-81c22f6104a391f4b3c9f072cf8cfd47b746367d.tar.gz bcm5719-llvm-81c22f6104a391f4b3c9f072cf8cfd47b746367d.zip | |
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
Diffstat (limited to 'lldb/source/Symbol/SymbolContext.cpp')
| -rw-r--r-- | lldb/source/Symbol/SymbolContext.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Symbol/SymbolContext.cpp b/lldb/source/Symbol/SymbolContext.cpp index 673dc3cb545..43ac5fc6e5f 100644 --- a/lldb/source/Symbol/SymbolContext.cpp +++ b/lldb/source/Symbol/SymbolContext.cpp @@ -500,7 +500,7 @@ SymbolContext::GetParentOfInlinedScope (const Address &curr_frame_pc, if (log) { - log->Printf ("warning: inlined block 0x%8.8x doesn't have a range that contains file address 0x%llx", + log->Printf ("warning: inlined block 0x%8.8llx doesn't have a range that contains file address 0x%llx", curr_inlined_block->GetID(), curr_frame_pc.GetFileAddress()); } #ifdef LLDB_CONFIGURATION_DEBUG @@ -519,7 +519,7 @@ SymbolContext::GetParentOfInlinedScope (const Address &curr_frame_pc, } if (objfile) { - fprintf (stderr, "warning: inlined block 0x%8.8x doesn't have a range that contains file address 0x%llx in %s/%s\n", + fprintf (stderr, "warning: inlined block 0x%8.8llx doesn't have a range that contains file address 0x%llx in %s/%s\n", curr_inlined_block->GetID(), curr_frame_pc.GetFileAddress(), objfile->GetFileSpec().GetDirectory().GetCString(), @@ -527,7 +527,7 @@ SymbolContext::GetParentOfInlinedScope (const Address &curr_frame_pc, } else { - fprintf (stderr, "warning: inlined block 0x%8.8x doesn't have a range that contains file address 0x%llx\n", + fprintf (stderr, "warning: inlined block 0x%8.8llx doesn't have a range that contains file address 0x%llx\n", curr_inlined_block->GetID(), curr_frame_pc.GetFileAddress()); } } |

