29 lines · c
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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLDB_SOURCE_PLUGINS_SYMBOLFILE_NATIVEPDB_PDBFPOPROGRAMTODWARFEXPRESSION_H10#define LLDB_SOURCE_PLUGINS_SYMBOLFILE_NATIVEPDB_PDBFPOPROGRAMTODWARFEXPRESSION_H11 12#include "llvm/ADT/StringRef.h"13#include "llvm/TargetParser/Triple.h"14 15namespace lldb_private {16class Stream;17 18namespace npdb {19 20bool TranslateFPOProgramToDWARFExpression(llvm::StringRef program,21 llvm::StringRef register_name,22 llvm::Triple::ArchType arch_type,23 lldb_private::Stream &stream);24 25} // namespace npdb26} // namespace lldb_private27 28#endif29