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 //===----------------------------------------------------------------------===// 8 9 #ifndef LLDB_SOURCE_PLUGINS_SYMBOLFILE_NATIVEPDB_PDBFPOPROGRAMTODWARFEXPRESSION_H 10 #define LLDB_SOURCE_PLUGINS_SYMBOLFILE_NATIVEPDB_PDBFPOPROGRAMTODWARFEXPRESSION_H 11 12 #include "llvm/ADT/StringRef.h" 13 #include "llvm/ADT/Triple.h" 14 15 namespace lldb_private { 16 class Stream; 17 18 namespace npdb { 19 20 bool TranslateFPOProgramToDWARFExpression(llvm::StringRef program, 21 llvm::StringRef register_name, 22 llvm::Triple::ArchType arch_type, 23 lldb_private::Stream &stream); 24 25 } // namespace npdb 26 } // namespace lldb_private 27 28 #endif 29