brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.3 KiB · b1e326e Raw
82 lines · plain
1# TODO: Clean up this directory and its dependencies2set_property(DIRECTORY PROPERTY LLDB_PLUGIN_KIND ProcessUtility)3 4add_lldb_library(lldbPluginProcessUtility5  AuxVector.cpp6  FreeBSDSignals.cpp7  GDBRemoteSignals.cpp8  HistoryThread.cpp9  HistoryUnwind.cpp10  InferiorCallPOSIX.cpp11  LinuxProcMaps.cpp12  LinuxSignals.cpp13  MemoryTagManagerAArch64MTE.cpp14  NativeProcessSoftwareSingleStep.cpp15  NativeRegisterContextDBReg.cpp16  NativeRegisterContextDBReg_arm.cpp17  NativeRegisterContextDBReg_arm64.cpp18  NativeRegisterContextDBReg_loongarch.cpp19  NativeRegisterContextDBReg_x86.cpp20  NativeRegisterContextRegisterInfo.cpp21  NetBSDSignals.cpp22  OpenBSDSignals.cpp23  RegisterContext_x86.cpp24  RegisterContextDarwin_arm.cpp25  RegisterContextDarwin_arm64.cpp26  RegisterContextDarwin_riscv32.cpp27  RegisterContextDarwin_x86_64.cpp28  RegisterContextDummy.cpp29  RegisterContextFreeBSD_i386.cpp30  RegisterContextFreeBSD_mips64.cpp31  RegisterContextFreeBSD_powerpc.cpp32  RegisterContextFreeBSD_x86_64.cpp33  RegisterContextHistory.cpp34  RegisterContextLinux_i386.cpp35  RegisterContextLinux_x86_64.cpp36  RegisterContextLinux_s390x.cpp37  RegisterContextMach_arm.cpp38  RegisterContextMach_x86_64.cpp39  RegisterContextMemory.cpp40  RegisterContextNetBSD_i386.cpp41  RegisterContextNetBSD_x86_64.cpp42  RegisterContextOpenBSD_i386.cpp43  RegisterContextOpenBSD_x86_64.cpp44  RegisterContextPOSIX_arm.cpp45  RegisterContextPOSIX_arm64.cpp46  RegisterContextPOSIX_loongarch64.cpp47  RegisterContextPOSIX_mips64.cpp48  RegisterContextPOSIX_riscv32.cpp49  RegisterContextPOSIX_powerpc.cpp50  RegisterContextPOSIX_ppc64le.cpp51  RegisterContextPOSIX_riscv64.cpp52  RegisterContextPOSIX_s390x.cpp53  RegisterContextPOSIX_x86.cpp54  RegisterContextThreadMemory.cpp55  RegisterContextWindows_i386.cpp56  RegisterContextWindows_x86_64.cpp57  RegisterFlagsDetector_arm64.cpp58  RegisterInfos_x86_64_with_base_shared.cpp59  RegisterInfoPOSIX_arm.cpp60  RegisterInfoPOSIX_arm64.cpp61  RegisterInfoPOSIX_loongarch64.cpp62  RegisterInfoPOSIX_ppc64le.cpp63  RegisterInfoPOSIX_riscv32.cpp64  RegisterInfoPOSIX_riscv64.cpp65  StopInfoMachException.cpp66  ThreadMemory.cpp67 68  LINK_COMPONENTS69    Support70    TargetParser71  LINK_LIBS72    lldbBreakpoint73    lldbCore74    lldbDataFormatters75    lldbExpression76    lldbHost77    lldbSymbol78    lldbTarget79    lldbUtility80    lldbValueObject81  )82