[Lldb-commits] [lldb] 4826039 - [LLDB][NVIDIA] Add NVPTX architecture support (#158334)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Sep 12 11:46:55 PDT 2025
Author: Andrew Gontarek
Date: 2025-09-12T14:46:51-04:00
New Revision: 4826039058aba304a874b07b67ecf59affa54a96
URL: https://github.com/llvm/llvm-project/commit/4826039058aba304a874b07b67ecf59affa54a96
DIFF: https://github.com/llvm/llvm-project/commit/4826039058aba304a874b07b67ecf59affa54a96.diff
LOG: [LLDB][NVIDIA] Add NVPTX architecture support (#158334)
- Introduced a new method `IsNVPTX()` in `ArchSpec` to check for NVPTX
architecture.
- Implemented the corresponding method in `ArchSpec.cpp` to utilize the
existing triple architecture checks.
Added:
Modified:
lldb/include/lldb/Utility/ArchSpec.h
lldb/source/Utility/ArchSpec.cpp
Removed:
################################################################################
diff --git a/lldb/include/lldb/Utility/ArchSpec.h b/lldb/include/lldb/Utility/ArchSpec.h
index 96bd5e3597b68..361108fd8f0e7 100644
--- a/lldb/include/lldb/Utility/ArchSpec.h
+++ b/lldb/include/lldb/Utility/ArchSpec.h
@@ -327,6 +327,11 @@ class ArchSpec {
/// \return a boolean value.
bool IsMIPS() const;
+ /// If NVPTX architecture return true.
+ ///
+ /// \return a boolean value.
+ bool IsNVPTX() const;
+
/// Returns a string representing current architecture as a target CPU for
/// tools like compiler, disassembler etc.
///
diff --git a/lldb/source/Utility/ArchSpec.cpp b/lldb/source/Utility/ArchSpec.cpp
index 1b8dae39735df..2a87cc6bf7de9 100644
--- a/lldb/source/Utility/ArchSpec.cpp
+++ b/lldb/source/Utility/ArchSpec.cpp
@@ -545,6 +545,8 @@ const char *ArchSpec::GetArchitectureName() const {
bool ArchSpec::IsMIPS() const { return GetTriple().isMIPS(); }
+bool ArchSpec::IsNVPTX() const { return GetTriple().isNVPTX(); }
+
std::string ArchSpec::GetTargetABI() const {
std::string abi;
More information about the lldb-commits
mailing list