History log of /external/lldb/source/DataFormatters/NSDictionary.cpp
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
52f792329be5db8e38961350589e97e8f2823acd 12-Jul-2013 Greg Clayton <gclayton@apple.com> Huge change to clean up types.

A long time ago we start with clang types that were created by the symbol files and there were many functions in lldb_private::ClangASTContext that helped. Later we create ClangASTType which contains a clang::ASTContext and an opauque QualType, but we didn't switch over to fully using it. There were a lot of places where we would pass around a raw clang_type_t and also pass along a clang::ASTContext separately. This left room for error.

This checkin change all type code over to use ClangASTType everywhere and I cleaned up the interfaces quite a bit. Any code that was in ClangASTContext that was type related, was moved over into ClangASTType. All code that used these types was switched over to use all of the new goodness.



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@186130 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/source/DataFormatters/NSDictionary.cpp
fe26a2333298602bac55decfee87bc6d33b79d54 23-Apr-2013 Enrico Granata <egranata@apple.com> <rdar://problem/13437949>

Making sure that CF*{Array|Dictionary}Ref provide synthetic children correctly.



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@180074 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/source/DataFormatters/NSDictionary.cpp
b902709729c522740260b0d497e931e6900afb00 03-Apr-2013 Jason Molenda <jmolenda@apple.com> #include clang's AST/DeclCXX.h to pick up CXXRecordDecl definition,
needed for some versions of clang.



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@178692 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/source/DataFormatters/NSDictionary.cpp
33d109885979d0797b334746627d2d01f0ee6804 03-Apr-2013 Enrico Granata <egranata@apple.com> <rdar://problem/13563403>

Reimplemented the NSDictionary synthetic children provider for added performance.
Instead of generating pairs by running an expression, we now create a pair type using clang-level APIs and fill in a buffer with the pointers to key and value
This strategy takes the time required to dump a 10k items __NSDictionaryM from ~45s to <4s

git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@178601 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/source/DataFormatters/NSDictionary.cpp
b70c6ef20cd49bd7b33736e7534db717ae75e96f 15-Mar-2013 Enrico Granata <egranata@apple.com> Moving CFBag and NSBundle summaries from Python to C++

Temporarily disabled non-code-running summaries for CF*Dictionary and NSCountedSet

git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@177171 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/source/DataFormatters/NSDictionary.cpp
ade70cf88d1eb01c9c2ae9a34ac3d489595fb489 25-Feb-2013 Enrico Granata <egranata@apple.com> Optimization of the code-running NSDictionary formatter to skip runtime symbol fetching


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@176041 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/source/DataFormatters/NSDictionary.cpp
fe21d4f351f560921e615a6677afe1c057aa7f28 22-Feb-2013 Matt Kopec <Matt.Kopec@intel.com> Fix clang warnings related to python macro redefinition and printf format specifiers.


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@175829 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/source/DataFormatters/NSDictionary.cpp
32d7ee3d2969211e104a27fcfcd636f249b26559 21-Feb-2013 Enrico Granata <egranata@apple.com> <rdar://problem/4529976>

Adding data formatters for iterators for std::map and std::vector (both libc++ and libstdcpp)
This does not include reverse iterators since they are both trickier (due to requirements the standard imposes on them) and much less useful



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@175787 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/source/DataFormatters/NSDictionary.cpp
ea68753ef4b8cca81cf3f5aef7bbf1ebb152a832 16-Feb-2013 Enrico Granata <egranata@apple.com> NSSet formatter is now C++ code
Split some NS* formatters in their own source files
Refactored a utility function for the C++ formatters to use
Fixed the skip-summary test case to be explicit about requiring libstdc++ for operation



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@175323 91177308-0d34-0410-b5e6-96231b3b80d8
/external/lldb/source/DataFormatters/NSDictionary.cpp