1351290Sdim//===-- CodeViewRegisterMapping.h -------------------------------*- C++ -*-===//
2351290Sdim//
3351290Sdim// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4351290Sdim// See https://llvm.org/LICENSE.txt for license information.
5351290Sdim// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6351290Sdim//
7351290Sdim//===----------------------------------------------------------------------===//
8351290Sdim
9351290Sdim#ifndef lldb_Plugins_SymbolFile_PDB_CodeViewRegisterMapping_h_
10351290Sdim#define lldb_Plugins_SymbolFile_PDB_CodeViewRegisterMapping_h_
11351290Sdim
12351290Sdim#include "llvm/ADT/Triple.h"
13351290Sdim#include "llvm/DebugInfo/CodeView/CodeView.h"
14351290Sdim
15351290Sdimnamespace lldb_private {
16351290Sdimnamespace npdb {
17351290Sdim
18351290Sdimuint32_t GetLLDBRegisterNumber(llvm::Triple::ArchType arch_type,
19351290Sdim                               llvm::codeview::RegisterId register_id);
20351290Sdim
21351290Sdim} // namespace npdb
22351290Sdim} // namespace lldb_private
23351290Sdim
24351290Sdim#endif
25