[lldb] [llvm] [lldb][Process/FreeBSD] Add riscv64 support (PR #180549)

Minsoo Choo via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 10 06:56:39 PST 2026


================
@@ -97,6 +97,8 @@ ThreadElfCore::CreateRegisterContextForFrame(StackFrame *frame) {
       case llvm::Triple::ppc64le:
         reg_interface = new RegisterContextFreeBSD_powerpc64(arch);
         break;
+      case llvm::Triple::riscv64:
+        break;
----------------
mchoo7 wrote:

arm/arm64 follows this. Other have their own RegisterContextFreeBSD_* implementation. As noted above, should I fall back to FreeBSD's own implementation of RegisterContext? I think I cannot follow arm/arm64's example here.

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


More information about the llvm-commits mailing list