summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/Platform/Linux
diff options
context:
space:
mode:
authorSagar Thakur <sagar.thakur@imgtec.com>2015-06-03 10:14:24 +0000
committerSagar Thakur <sagar.thakur@imgtec.com>2015-06-03 10:14:24 +0000
commitce815e4588fd02d5ba0d5ec0bf9ceeb2e616eb6e (patch)
treea3752dca1e22836007e01132243c959fbc8093fd /lldb/source/Plugins/Platform/Linux
parentfaed801f6e718fa2ec2f062b734c2f37f3d00dd0 (diff)
downloadbcm5719-llvm-ce815e4588fd02d5ba0d5ec0bf9ceeb2e616eb6e.tar.gz
bcm5719-llvm-ce815e4588fd02d5ba0d5ec0bf9ceeb2e616eb6e.zip
[MIPS][lldb-server] Add 32-bit register context and read/write FP registers on mips64
- Added support for read/write FP registers in FR1 mode. - Added 32 bit register context for mips32. Reviewers: clayborg, tberghammer, jaydeep Subscribers: emaste, nitesh.jain, bhushan, mohit.bhakkad, lldb-commits Differential Revision: http://reviews.llvm.org/D10029 llvm-svn: 238914
Diffstat (limited to 'lldb/source/Plugins/Platform/Linux')
-rw-r--r--lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp b/lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp
index 00a12015608..e656f7a3eca 100644
--- a/lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp
+++ b/lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp
@@ -513,6 +513,8 @@ PlatformLinux::GetSupportedArchitectureAtIndex (uint32_t idx, ArchSpec &arch)
case 4: triple.setArchName("mips64"); break;
case 5: triple.setArchName("hexagon"); break;
case 6: triple.setArchName("mips"); break;
+ case 7: triple.setArchName("mips64el"); break;
+ case 8: triple.setArchName("mipsel"); break;
default: return false;
}
// Leave the vendor as "llvm::Triple:UnknownVendor" and don't specify the vendor by
OpenPOWER on IntegriCloud