[Lldb-commits] [lldb] [lldb][Darwin] Fetch detailed binary info in chunks (PR #190720)

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Mon Apr 13 16:51:13 PDT 2026


================
@@ -1445,6 +1445,19 @@ enum DILMode {
   eDILModeFull
 };
 
+/// When the Process plugin can retrieve information
+/// about all binaries loaded in the target process,
+/// or given a list of binary load addresses, this
+/// enum specifies how much information needed from
+/// the Process plugin; there may be performance reasons
+/// to limit the amount of information returned.
+enum BinaryInformationLevel {
----------------
jasonmolenda wrote:

None of the enums in lldb-enumerations.h are enum class definitions, so I was being consistent with the others.

https://github.com/llvm/llvm-project/pull/190720


More information about the lldb-commits mailing list