/freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
H A D | InterfaceFile.cpp | 26 void InterfaceFile::addAllowableClient(StringRef InstallName, in addAllowableClient() 34 void InterfaceFile::addReexportedLibrary(StringRef InstallName, in addReexportedLibrary() 42 void InterfaceFile::addParentUmbrella(const Target &Target_, StringRef Parent) { in addParentUmbrella() 57 void InterfaceFile::addRPath(StringRef RPath, const Target &InputTarget) { in addRPath() 72 void InterfaceFile::addTarget(const Target &Target) { in addTarget() 76 InterfaceFile::const_filtered_target_range 77 InterfaceFile::targets(ArchitectureSet Archs) const { in targets() 84 void InterfaceFile::addDocument(std::shared_ptr<InterfaceFile> &&Document) { in addDocument() 86 [](const std::shared_ptr<InterfaceFile> &LHS, in addDocument() 87 const std::shared_ptr<InterfaceFile> &RHS) { in addDocument() [all …]
|
H A D | TextStub.cpp | 400 template <> struct MappingTraits<const InterfaceFile *> { 403 NormalizedTBD(IO &IO, const InterfaceFile *&File) { in NormalizedTBD() 573 const InterfaceFile *denormalize(IO &IO) { in denormalize() 577 auto *File = new InterfaceFile; in denormalize() 726 static void mapping(IO &IO, const InterfaceFile *&File) { in mapping() 769 NormalizedTBD_V4(IO &IO, const InterfaceFile *&File) { in NormalizedTBD_V4() 809 InterfaceFile::const_filtered_symbol_range Symbols) { in NormalizedTBD_V4() 862 const InterfaceFile *denormalize(IO &IO) { in denormalize() 866 auto *File = new InterfaceFile; in denormalize() 986 const InterfaceFile *&File) { in mapKeysToValues() [all …]
|
H A D | TextStubCommon.h | 49 Expected<std::unique_ptr<InterfaceFile>> in LLVM_YAML_STRONG_TYPEDEF() 52 Error serializeInterfaceFileToJSON(raw_ostream &OS, const InterfaceFile &File, in LLVM_YAML_STRONG_TYPEDEF()
|
H A D | TextStubV5.cpp | 583 using IFPtr = std::unique_ptr<InterfaceFile>; 652 IFPtr F(new InterfaceFile); in parseToInterfaceFile() 708 Expected<std::unique_ptr<InterfaceFile>> 725 std::unique_ptr<InterfaceFile> IF(std::move(*IFOrErr)); in getInterfaceFileFromJSON() 732 IF->addDocument(std::shared_ptr<InterfaceFile>(std::move(File))); in getInterfaceFileFromJSON() 855 Array serializeSymbols(InterfaceFile::const_filtered_symbol_range Symbols, in serializeSymbols() 922 Array serializeFlags(const InterfaceFile *File) { in serializeFlags() 936 Expected<Object> serializeIF(const InterfaceFile *File) { in serializeIF() 996 Expected<Object> getJSON(const InterfaceFile *File, const FileType FileKind) { in getJSON() 1020 const InterfaceFile &File, in serializeInterfaceFileToJSON()
|
H A D | RecordsSlice.cpp | 303 static std::unique_ptr<InterfaceFile> 319 auto File = std::make_unique<InterfaceFile>(std::move(Symbols)); in createInterfaceFile() 336 std::unique_ptr<InterfaceFile> 338 std::unique_ptr<InterfaceFile> File; in convertToInterfaceFile()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
H A D | InterfaceFile.h | 105 class InterfaceFile { 107 InterfaceFile(std::unique_ptr<SymbolSet> &&InputSymbols) in InterfaceFile() function 110 InterfaceFile() : SymbolsSet(std::make_unique<SymbolSet>()){}; in InterfaceFile() function 289 void addDocument(std::shared_ptr<InterfaceFile> &&Document); 292 InterfaceFile *getParent() const { return Parent; } in getParent() 297 const std::vector<std::shared_ptr<InterfaceFile>> &documents() const { in documents() 376 llvm::Expected<std::unique_ptr<InterfaceFile>> 383 llvm::Expected<std::unique_ptr<InterfaceFile>> 393 llvm::Expected<std::unique_ptr<InterfaceFile>> 394 merge(const InterfaceFile *O) const; [all …]
|
H A D | TextAPIReader.h | 20 class InterfaceFile; variable 34 /// Parse and get an InterfaceFile that represents the full 38 static Expected<std::unique_ptr<InterfaceFile>>
|
H A D | TextAPIWriter.h | 13 #include "llvm/TextAPI/InterfaceFile.h" 33 static Error writeToStream(raw_ostream &OS, const InterfaceFile &File, 19 class InterfaceFile; global() variable
|
H A D | RecordsSlice.h | 198 class InterfaceFile; variable 199 std::unique_ptr<InterfaceFile> convertToInterfaceFile(const Records &Slices);
|
H A D | DylibReader.h | 45 Expected<std::unique_ptr<InterfaceFile>> get(MemoryBufferRef Buffer);
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-tapi-diff/ |
H A D | DiffEngine.cpp |
|
H A D | DiffEngine.h |
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | TapiUniversal.cpp | 26 Expected<std::unique_ptr<InterfaceFile>> Result = TextAPIReader::get(Source); in TapiUniversal() 42 for (const std::shared_ptr<InterfaceFile> &File : ParsedFile->documents()) in TapiUniversal()
|
H A D | TapiFile.cpp | 50 TapiFile::TapiFile(MemoryBufferRef Source, const InterfaceFile &Interface, in TapiFile()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | TapiFile.h | 23 #include "llvm/TextAPI/InterfaceFile.h" 33 TapiFile(MemoryBufferRef Source, const MachO::InterfaceFile &Interface, 30 class InterfaceFile; global() variable
|
H A D | TapiUniversal.h | 106 const MachO::InterfaceFile &getInterfaceFile() { return *ParsedFile; } in getInterfaceFile() 118 std::unique_ptr<MachO::InterfaceFile> ParsedFile;
|
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | InputFiles.h | 35 class InterfaceFile; variable 141 InputFile(Kind, const llvm::MachO::InterfaceFile &); 227 explicit DylibFile(const llvm::MachO::InterfaceFile &interface, in isReferenced() 233 void parseReexports(const llvm::MachO::InterfaceFile &interface); 280 const llvm::MachO::InterfaceFile *currentTopLevelTapi);
|
H A D | InputFiles.cpp | 288 InputFile::InputFile(Kind kind, const InterfaceFile &interface) in InputFile() 1579 const InterfaceFile *currentTopLevelTapi) { in findDylib() 1640 for (InterfaceFile &child : in findDylib() 1679 const InterfaceFile *currentTopLevelTapi) { in loadReexport() 1822 static bool skipPlatformCheckForCatalyst(const InterfaceFile &interface, in skipPlatformCheckForCatalyst() 1844 InterfaceFile::const_target_range interfaceTargets, Target target) { in isTargetPlatformArchCompatible() 1861 DylibFile::DylibFile(const InterfaceFile &interface, DylibFile *umbrella, in DylibFile() 1955 void DylibFile::parseReexports(const InterfaceFile &interface) { in parseReexports() 1956 const InterfaceFile *topLevel = in parseReexports() 1959 InterfaceFile::const_target_range targets = intfRef.targets(); in parseReexports()
|
H A D | DriverUtils.cpp | 237 Expected<std::unique_ptr<InterfaceFile>> result = TextAPIReader::get(mbref); in loadDylib()
|
/freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/ |
H A D | MachO.h | 34 using InterfaceFile = llvm::MachO::InterfaceFile; variable
|
H A D | DylibVerifier.h | 29 using ReexportedInterfaces = llvm::SmallVector<llvm::MachO::InterfaceFile, 8>;
|
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/ |
H A D | DylibReader.cpp | 427 Expected<std::unique_ptr<InterfaceFile>>
|
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/ |
H A D | DylibVerifier.cpp | 198 for (const InterfaceFile &Lib : Reexports) { in shouldIgnoreReexport()
|
/freebsd/lib/clang/libllvm/ |
H A D | Makefile | 1701 SRCS_MIW+= TextAPI/InterfaceFile.cpp
|