[Lldb-commits] [PATCH] D128312: [lldb] Add a setting to specify the preferred dynamic class info extractor function

Adrian Prantl via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue Jun 21 17:01:26 PDT 2022


aprantl added inline comments.


================
Comment at: lldb/source/Target/TargetProperties.td:57
          " C++ standard library types.">;
+  def DynamicClassInfoHelper: Property<"dynamic-class-info-helper", "Enum">,
+    DefaultEnumValue<"eDynamicClassInfoHelperAuto">,
----------------
Should this have "objc" in the name?


================
Comment at: lldb/source/Target/TargetProperties.td:60
+    EnumValues<"OptionEnumValues(g_dynamic_class_info_helper_value_types)">,
+    Desc<"Set the way we parse the dynamic class info from the Objective-C runtime.">;
   def AutoApplyFixIts: Property<"auto-apply-fixits", "Boolean">,
----------------
Configure how LLDB parses dynamic Objective-C class metadata. By default LLDB will choose the most appropriate method for the target OS.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D128312/new/

https://reviews.llvm.org/D128312



More information about the lldb-commits mailing list