aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/llvm12/include/llvm/DebugInfo/GSYM/ObjectFileTransformer.h
blob: 6919af9c376117289ce5ddd3f201e5c17d190bae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#pragma once 
 
#ifdef __GNUC__ 
#pragma GCC diagnostic push 
#pragma GCC diagnostic ignored "-Wunused-parameter" 
#endif 
 
//===- ObjectFileTransformer.h ----------------------------------*- C++ -*-===// 
// 
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 
// See https://llvm.org/LICENSE.txt for license information. 
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 
// 
//===----------------------------------------------------------------------===// 
 
#ifndef LLVM_DEBUGINFO_GSYM_OBJECTFILETRANSFORMER_H 
#define LLVM_DEBUGINFO_GSYM_OBJECTFILETRANSFORMER_H 
 
#include "llvm/Support/Error.h" 
 
namespace llvm { 
 
class raw_ostream; 
 
namespace object { 
class ObjectFile; 
} 
 
namespace gsym { 
 
struct CUInfo; 
class GsymCreator; 
 
class ObjectFileTransformer { 
public: 
  /// Extract any object file data that is needed by the GsymCreator. 
  /// 
  /// The extracted information includes the UUID of the binary and converting 
  /// all function symbols from any symbol tables into FunctionInfo objects. 
  /// 
  /// \param Obj The object file that contains the DWARF debug info. 
  /// 
  /// \param Log The stream to log warnings and non fatal issues to. 
  /// 
  /// \param Gsym The GSYM creator to populate with the function information 
  /// from the debug info. 
  /// 
  /// \returns An error indicating any fatal issues that happen when parsing 
  /// the DWARF, or Error::success() if all goes well. 
  static llvm::Error convert(const object::ObjectFile &Obj, 
                             raw_ostream &Log, 
                             GsymCreator &Gsym); 
}; 
 
} // namespace gsym 
} // namespace llvm 
 
#endif // #ifndef LLVM_DEBUGINFO_GSYM_OBJECTFILETRANSFORMER_H 
 
#ifdef __GNUC__ 
#pragma GCC diagnostic pop 
#endif