LLDB mainline
PdbFPOProgramToDWARFExpression.h
Go to the documentation of this file.
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/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 npdb
26} // namespace lldb_private
27
28#endif
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
bool TranslateFPOProgramToDWARFExpression(llvm::StringRef program, llvm::StringRef register_name, llvm::Triple::ArchType arch_type, lldb_private::Stream &stream)
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14