1 //===-- CodeViewRegisterMapping.h -------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #ifndef lldb_Plugins_SymbolFile_PDB_CodeViewRegisterMapping_h_ 11 #define lldb_Plugins_SymbolFile_PDB_CodeViewRegisterMapping_h_ 12 13 #include "llvm/ADT/Triple.h" 14 #include "llvm/DebugInfo/CodeView/CodeView.h" 15 16 namespace lldb_private { 17 namespace npdb { 18 19 uint32_t GetLLDBRegisterNumber(llvm::Triple::ArchType arch_type, 20 llvm::codeview::RegisterId register_id); 21 22 } // namespace npdb 23 } // namespace lldb_private 24 25 #endif 26