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
diff --git a/lldb/source/Target/Target.cpp b/lldb/source/Target/Target.cpp
index 5423e4c..a7e8756 100644
--- a/lldb/source/Target/Target.cpp
+++ b/lldb/source/Target/Target.cpp
@@ -1736,7 +1736,7 @@
                 }
                 if (print_hook_header && !any_thread_matched)
                 {
-                    result.AppendMessageWithFormat("\n- Hook %d\n", cur_hook_sp->GetID());
+                    result.AppendMessageWithFormat("\n- Hook %llu\n", cur_hook_sp->GetID());
                     any_thread_matched = true;
                 }
                 
@@ -1760,7 +1760,7 @@
                 if ((result.GetStatus() == eReturnStatusSuccessContinuingNoResult) || 
                     (result.GetStatus() == eReturnStatusSuccessContinuingResult))
                 {
-                    result.AppendMessageWithFormat ("Aborting stop hooks, hook %d set the program running.", cur_hook_sp->GetID());
+                    result.AppendMessageWithFormat ("Aborting stop hooks, hook %llu set the program running.", cur_hook_sp->GetID());
                     keep_going = false;
                 }
             }
@@ -1857,7 +1857,7 @@
 
     s->SetIndentLevel(indent_level + 2);
 
-    s->Printf ("Hook: %d\n", GetID());
+    s->Printf ("Hook: %llu\n", GetID());
     if (m_active)
         s->Indent ("State: enabled\n");
     else