[clang] constexpr built-in elementwise bitreverse function. (#118177)
[llvm-project.git] / lldb / source / Plugins / SymbolFile / NativePDB / PdbFPOProgramToDWARFExpression.h
blobf6849f2083ccee3fd783ded68b02e2301b520a15
1 //===-- PdbFPOProgramToDWARFExpression.h ------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_SOURCE_PLUGINS_SYMBOLFILE_NATIVEPDB_PDBFPOPROGRAMTODWARFEXPRESSION_H
10 #define LLDB_SOURCE_PLUGINS_SYMBOLFILE_NATIVEPDB_PDBFPOPROGRAMTODWARFEXPRESSION_H
12 #include "llvm/ADT/StringRef.h"
13 #include "llvm/TargetParser/Triple.h"
15 namespace lldb_private {
16 class Stream;
18 namespace npdb {
20 bool TranslateFPOProgramToDWARFExpression(llvm::StringRef program,
21 llvm::StringRef register_name,
22 llvm::Triple::ArchType arch_type,
23 lldb_private::Stream &stream);
25 } // namespace npdb
26 } // namespace lldb_private
28 #endif