summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/main.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [LLDB][Formatters] Re-enable std::function formatter with fixes to improve ↵shafik2019-11-121-2/+4
| | | | | | | | | non-cached lookup performance Performance issues lead to the libc++ std::function formatter to be disabled. We addressed some of those performance issues by adding caching see D67111 This PR fixes the first lookup performance by not using FindSymbolsMatchingRegExAndType(...) and instead finding the compilation unit the std::function wrapped callable should be in and then searching for the callable directly in the CU. Differential Revision: https://reviews.llvm.org/D69913
* Adding support to step into the callable wrapped by libc++ std::functionShafik Yaghmour2018-10-121-0/+38
rdar://problem/14365983 Differential Revision: https://reviews.llvm.org/D52851 llvm-svn: 344371
OpenPOWER on IntegriCloud