forked from OSchip/llvm-project
d8aca8886f
Summary: The motivation for this was me wanting to make the validity of dwarf DIERefs explicit (via llvm::Optional<DIERef>). This meant that the class would no longer have a default constructor. As the DIERef was being stored in a UniqueCStringMap, this meant that this container (like all standard containers) needed to work with non-default-constructible types too. This part is achieved by removing the default constructors for the map entry types, and providing appropriate comparison overloads so that we can search for map entries without constructing a dummy entry. While doing that, I took the opportunity to modernize the code, and add some tests. Functions that were completely unused are deleted. This required also some changes in the Symtab code, as it was default constructing map entries, which was not impossible even though its value type was default-constructible. Technically, these changes could be avoided with some SFINAE on the entry type, but I felt that the code is cleaner this way anyway. Reviewers: JDevlieghere, sgraenitz Subscribers: mgorny, aprantl, lldb-commits Differential Revision: https://reviews.llvm.org/D63268 llvm-svn: 363357 |
||
---|---|---|
.. | ||
API | ||
Breakpoint | ||
Core | ||
DataFormatters | ||
Expression | ||
Host | ||
Initialization | ||
Interpreter | ||
Symbol | ||
Target | ||
Utility | ||
lldb-defines.h | ||
lldb-enumerations.h | ||
lldb-forward.h | ||
lldb-private-defines.h | ||
lldb-private-enumerations.h | ||
lldb-private-forward.h | ||
lldb-private-interfaces.h | ||
lldb-private-types.h | ||
lldb-private.h | ||
lldb-public.h | ||
lldb-types.h | ||
lldb-versioning.h | ||
module.modulemap |