[NFC][AArch64] Explicitly define undefined bits for instructions (#122129)
[llvm-project.git] / lldb / source / Plugins / Platform / MacOSX / PlatformMacOSXProperties.td
blobf0d305a63085cd1451050d790f4fc76a40a1bc56
1 include "../../../../include/lldb/Core/PropertiesBase.td"
3 let Definition = "platformdarwinkernel" in {
4   def KextDirectories: Property<"kext-directories", "FileSpecList">,
5     DefaultStringValue<"">,
6     Desc<"Directories/KDKs to search for kexts in when starting a kernel debug session.">;
9 let Definition = "platformdarwin" in {
10   def IgnoredExceptions: Property<"ignored-exceptions", "String">,
11     DefaultStringValue<"">,
12     Desc<"List the mach exceptions to ignore, separated by '|' "
13          "(e.g. 'EXC_BAD_ACCESS|EXC_BAD_INSTRUCTION'). "
14          "lldb will instead stop on the BSD signal the exception was converted "
15          "into, if there is one.">;