[all-commits] [llvm/llvm-project] cd4433: [lldb] Remove the legacy FreeBSD plugin

Michał Górny via All-commits all-commits at lists.llvm.org
Mon Feb 15 04:04:37 PST 2021


  Branch: refs/heads/main
  Home:   https://github.com/llvm/llvm-project
  Commit: cd443398566b953642ead7c81528ab5b4e211eb9
      https://github.com/llvm/llvm-project/commit/cd443398566b953642ead7c81528ab5b4e211eb9
  Author: Michał Górny <mgorny at moritz.systems>
  Date:   2021-02-15 (Mon, 15 Feb 2021)

  Changed paths:
    M lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
    M lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.h
    M lldb/source/Plugins/Process/CMakeLists.txt
    R lldb/source/Plugins/Process/FreeBSD/CMakeLists.txt
    R lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp
    R lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.h
    R lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.cpp
    R lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.h
    R lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
    R lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.h
    R lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
    R lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.h
    R lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIX.h
    R lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.cpp
    R lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.h
    R lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.cpp
    R lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.h
    R lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.cpp
    R lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.h
    R lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp
    R lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.h
    R lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.cpp
    R lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.h
    M lldb/tools/lldb-server/CMakeLists.txt

  Log Message:
  -----------
  [lldb] Remove the legacy FreeBSD plugin

The new FreeBSDRemote plugin has reached feature parity with the legacy
plugin, so we can finally remove the latter.  The new plugin will
be renamed to FreeBSD in a separate commit to avoid confusion.

Differential Revision: https://reviews.llvm.org/D96555


  Commit: bee4d6efe1781365cb82dcc94ad959309354af6f
      https://github.com/llvm/llvm-project/commit/bee4d6efe1781365cb82dcc94ad959309354af6f
  Author: Michał Górny <mgorny at moritz.systems>
  Date:   2021-02-15 (Mon, 15 Feb 2021)

  Changed paths:
    M lldb/source/Plugins/Process/CMakeLists.txt
    A lldb/source/Plugins/Process/FreeBSD/CMakeLists.txt
    A lldb/source/Plugins/Process/FreeBSD/NativeProcessFreeBSD.cpp
    A lldb/source/Plugins/Process/FreeBSD/NativeProcessFreeBSD.h
    A lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD.cpp
    A lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD.h
    A lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD_arm.cpp
    A lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD_arm.h
    A lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD_arm64.cpp
    A lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD_arm64.h
    A lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD_mips64.cpp
    A lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD_mips64.h
    A lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD_powerpc.cpp
    A lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD_powerpc.h
    A lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD_x86_64.cpp
    A lldb/source/Plugins/Process/FreeBSD/NativeRegisterContextFreeBSD_x86_64.h
    A lldb/source/Plugins/Process/FreeBSD/NativeThreadFreeBSD.cpp
    A lldb/source/Plugins/Process/FreeBSD/NativeThreadFreeBSD.h
    R lldb/source/Plugins/Process/FreeBSDRemote/CMakeLists.txt
    R lldb/source/Plugins/Process/FreeBSDRemote/NativeProcessFreeBSD.cpp
    R lldb/source/Plugins/Process/FreeBSDRemote/NativeProcessFreeBSD.h
    R lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD.cpp
    R lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD.h
    R lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_arm.cpp
    R lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_arm.h
    R lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_arm64.cpp
    R lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_arm64.h
    R lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_mips64.cpp
    R lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_mips64.h
    R lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_powerpc.cpp
    R lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_powerpc.h
    R lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_x86_64.cpp
    R lldb/source/Plugins/Process/FreeBSDRemote/NativeRegisterContextFreeBSD_x86_64.h
    R lldb/source/Plugins/Process/FreeBSDRemote/NativeThreadFreeBSD.cpp
    R lldb/source/Plugins/Process/FreeBSDRemote/NativeThreadFreeBSD.h
    M lldb/tools/lldb-server/CMakeLists.txt
    M lldb/tools/lldb-server/lldb-gdbserver.cpp

  Log Message:
  -----------
  [lldb] Rename FreeBSDRemote to FreeBSD (NFC)

Differential Revision: https://reviews.llvm.org/D96557


Compare: https://github.com/llvm/llvm-project/compare/f32dc6bb42fd...bee4d6efe178


More information about the All-commits mailing list