Modified the lldb_private::TypeList to use a std::multimap for quicker lookup
by type ID (the most common type of type lookup).

Changed the API logging a bit to always show the objects in the OBJECT(POINTER)
format so it will be easy to locate all instances of an object or references
to it when looking at logs.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@117641 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Target/Target.cpp b/source/Target/Target.cpp
index e8ed69d..1d315f1 100644
--- a/source/Target/Target.cpp
+++ b/source/Target/Target.cpp
@@ -73,22 +73,15 @@
         s->Indent();
         s->PutCString("Target\n");
         s->IndentMore();
-        m_images.Dump(s);
-        m_breakpoint_list.Dump(s);
-        m_internal_breakpoint_list.Dump(s);
+            m_images.Dump(s);
+            m_breakpoint_list.Dump(s);
+            m_internal_breakpoint_list.Dump(s);
+        s->IndentLess();
     }
     else
     {
-        char path[PATH_MAX];
-        int path_len = PATH_MAX;
-        if (GetExecutableModule()->GetFileSpec().GetPath (path, path_len))
-            s->Printf ("Target: %s\n", path);
-        else
-            s->Printf ("Target: <unknown>\n");
+        s->Printf ("%s", GetExecutableModule()->GetFileSpec().GetFilename().GetCString());
     }
-//  if (m_process_sp.get())
-//      m_process_sp->Dump(s);
-    s->IndentLess();
 }
 
 void