<rdar://problem/12978143>

Data formatters now cache themselves.
This commit provides a new formatter cache mechanism. Upon resolving a formatter (summary or synthetic), LLDB remembers the resolution for later faster retrieval.
Also moved the data formatters subsystem from the core to its own group and folder for easier management, and done some code reorganization.
The ObjC runtime v1 now returns a class name if asked for the dynamic type of an object. This is required for formatters caching to work with the v1 runtime.
Lastly, this commit disposes of the old hack where ValueObjects had to remember whether they were queried for formatters with their static or dynamic type.
Now the ValueObjectDynamicValue class works well enough that we can use its dynamic value setting for the same purpose.




git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@173728 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/lldb/DataFormatters/FormatCache.h b/include/lldb/DataFormatters/FormatCache.h
new file mode 100644
index 0000000..2e6d555
--- /dev/null
+++ b/include/lldb/DataFormatters/FormatCache.h
@@ -0,0 +1,105 @@
+//===-- FormatCache.h ---------------------------------------------*- C++ -*-===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef lldb_FormatCache_h_
+#define lldb_FormatCache_h_
+
+// C Includes
+// C++ Includes
+#include <map>
+
+// Other libraries and framework includes
+// Project includes
+#include "lldb/lldb-public.h"
+#include "lldb/Core/ConstString.h"
+#include "lldb/DataFormatters/FormatClasses.h"
+
+namespace lldb_private {
+class FormatCache
+{
+private:
+    struct Entry
+    {
+    private:
+        bool m_summary_cached : 1;
+        bool m_synthetic_cached : 1;
+        
+        lldb::TypeSummaryImplSP m_summary_sp;
+        lldb::SyntheticChildrenSP m_synthetic_sp;
+    public:
+        Entry ();
+        Entry (lldb::TypeSummaryImplSP);
+        Entry (lldb::SyntheticChildrenSP);
+        Entry (lldb::TypeSummaryImplSP,lldb::SyntheticChildrenSP);
+
+        bool
+        IsSummaryCached ();
+        
+        bool
+        IsSyntheticCached ();
+        
+        lldb::TypeSummaryImplSP
+        GetSummary ();
+        
+        lldb::SyntheticChildrenSP
+        GetSynthetic ();
+        
+        void
+        SetSummary (lldb::TypeSummaryImplSP);
+        
+        void
+        SetSynthetic (lldb::SyntheticChildrenSP);
+    };
+    typedef std::map<ConstString,Entry> CacheMap;
+    CacheMap m_map;
+    Mutex m_mutex;
+    
+#ifdef LLDB_CONFIGURATION_DEBUG
+    uint64_t m_cache_hits;
+    uint64_t m_cache_misses;
+#endif
+    
+    Entry&
+    GetEntry (const ConstString& type);
+    
+public:
+    FormatCache ();
+    
+    bool
+    GetSummary (const ConstString& type,lldb::TypeSummaryImplSP& summary_sp);
+
+    bool
+    GetSynthetic (const ConstString& type,lldb::SyntheticChildrenSP& synthetic_sp);
+    
+    void
+    SetSummary (const ConstString& type,lldb::TypeSummaryImplSP& summary_sp);
+    
+    void
+    SetSynthetic (const ConstString& type,lldb::SyntheticChildrenSP& synthetic_sp);
+    
+    void
+    Clear ();
+    
+#ifdef LLDB_CONFIGURATION_DEBUG
+    uint64_t
+    GetCacheHits ()
+    {
+        return m_cache_hits;
+    }
+    
+    uint64_t
+    GetCacheMisses ()
+    {
+        return m_cache_misses;
+    }
+#endif
+};
+} // namespace lldb_private
+
+#endif	// lldb_FormatCache_h_