1 //===- TapiFile.h - Text-based Dynamic Library Stub -------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 // This file declares the TapiFile interface.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_OBJECT_TAPI_FILE_H
14 #define LLVM_OBJECT_TAPI_FILE_H
16 #include "llvm/ADT/StringRef.h"
17 #include "llvm/ADT/iterator_range.h"
18 #include "llvm/Object/SymbolicFile.h"
19 #include "llvm/Support/Error.h"
20 #include "llvm/Support/MemoryBuffer.h"
21 #include "llvm/TextAPI/MachO/InterfaceFile.h"
26 class TapiFile
: public SymbolicFile
{
28 TapiFile(MemoryBufferRef Source
, const MachO::InterfaceFile
&interface
,
29 MachO::Architecture Arch
);
32 void moveSymbolNext(DataRefImpl
&DRI
) const override
;
34 Error
printSymbolName(raw_ostream
&OS
, DataRefImpl DRI
) const override
;
36 uint32_t getSymbolFlags(DataRefImpl DRI
) const override
;
38 basic_symbol_iterator
symbol_begin() const override
;
40 basic_symbol_iterator
symbol_end() const override
;
42 static bool classof(const Binary
*v
) { return v
->isTapiFile(); }
50 constexpr Symbol(StringRef Prefix
, StringRef Name
, uint32_t Flags
)
51 : Prefix(Prefix
), Name(Name
), Flags(Flags
) {}
54 std::vector
<Symbol
> Symbols
;
57 } // end namespace object.
58 } // end namespace llvm.
60 #endif // LLVM_OBJECT_TAPI_FILE_H