/freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
H A D | InterfaceFile.h | 56 InterfaceFileRef(StringRef InstallName) : InstallName(InstallName) {} in InterfaceFileRef() argument 58 InterfaceFileRef(StringRef InstallName, const TargetList Targets) in InterfaceFileRef() argument 59 : InstallName(InstallName), Targets(std::move(Targets)) {} in InterfaceFileRef() 61 StringRef getInstallName() const { return InstallName; }; in getInstallName() 84 return std::tie(InstallName, Targets) == std::tie(O.InstallName, O.Targets); 88 return std::tie(InstallName, Targets) != std::tie(O.InstallName, O.Targets); 92 return std::tie(InstallName, Targets) < std::tie(O.InstallName, O.Targets); 96 std::string InstallName; 181 InstallName = std::string(InstallName_); in setInstallName() 185 StringRef getInstallName() const { return InstallName; } in getInstallName() [all …]
|
H A D | RecordsSlice.h | 148 StringRef InstallName; member
|
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
H A D | InterfaceFile.cpp | 26 void InterfaceFile::addAllowableClient(StringRef InstallName, in addAllowableClient() argument 28 if (InstallName.empty()) in addAllowableClient() 30 auto Client = addEntry(AllowableClients, InstallName); in addAllowableClient() 34 void InterfaceFile::addReexportedLibrary(StringRef InstallName, in addReexportedLibrary() argument 36 if (InstallName.empty()) in addReexportedLibrary() 38 auto Lib = addEntry(ReexportedLibraries, InstallName); in addReexportedLibrary() 88 return LHS->InstallName < RHS->InstallName; in addDocument() 360 setInstallName(BA.InstallName); in setFromBinaryAttrs() 390 if (InstallName != O.InstallName) in operator ==()
|
H A D | RecordsSlice.cpp | 304 createInterfaceFile(const Records &Slices, StringRef InstallName) { in createInterfaceFile() argument 311 if (BA.InstallName != InstallName) in createInterfaceFile() 320 File->setInstallName(InstallName); in createInterfaceFile() 326 if (BA.InstallName != InstallName) in createInterfaceFile() 344 auto Name = S->getBinaryAttrs().InstallName; in convertToInterfaceFile()
|
H A D | TextStub.cpp | 406 InstallName = File->getInstallName(); in NormalizedTBD() 581 File->setInstallName(InstallName); in denormalize() 699 StringRef InstallName; member 775 InstallName = File->getInstallName(); in NormalizedTBD_V4() 870 File->setInstallName(InstallName); in denormalize() 945 StringRef InstallName; member 995 IO.mapRequired("install-name", Keys->InstallName); in mapKeysToValues() 1025 IO.mapRequired("install-name", Keys->InstallName); in mapKeysToValuesV4()
|
H A D | TextStubV5.cpp | 96 InstallName, enumerator 367 const Array *Section = File->getArray(Keys[TBDKey::InstallName]); in getNameSection() 369 return make_error<JSONStubError>(getParseErrorMsg(TBDKey::InstallName)); in getNameSection() 375 return make_error<JSONStubError>(getParseErrorMsg(TBDKey::InstallName)); in getNameSection() 946 if (!insertNonEmptyValues(Library, TBDKey::InstallName, std::move(Name))) in serializeIF() 947 return make_error<JSONStubError>(getSerializeErrorMsg(TBDKey::InstallName)); in serializeIF()
|
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/ |
H A D | Library.cpp | 15 StringRef Library::getFrameworkNameFromInstallName(StringRef InstallName) { in getFrameworkNameFromInstallName() argument 16 assert(InstallName.contains(".framework") && "expected a framework"); in getFrameworkNameFromInstallName() 18 Rule.match(InstallName, &Match); in getFrameworkNameFromInstallName()
|
H A D | Frontend.cpp | 166 std::string findLibrary(StringRef InstallName, FileManager &FM, in findLibrary() argument 185 const StringRef Filename = sys::path::filename(InstallName); in findLibrary() 186 const bool IsFramework = sys::path::parent_path(InstallName) in findLibrary() 198 bool IsEmbeddedDylib = (sys::path::extension(InstallName) == ".dylib") && in findLibrary() 199 InstallName.contains(".framework/"); in findLibrary() 212 sys::path::append(FullPath, InstallName); in findLibrary()
|
H A D | DylibVerifier.cpp | 864 if (ProvidedBA.InstallName != DylibBA.InstallName) { in verifyBinaryAttrs() 866 << ProvidedBA.InstallName << DylibBA.InstallName; in verifyBinaryAttrs() 973 if (!ProvidedBA.InstallName.ends_with("_asan")) { in verifyBinaryAttrs()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | TapiUniversal.h | 61 return std::string(Parent->Libraries[Index].InstallName); in getInstallName() 114 StringRef InstallName; member
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-tapi-diff/ |
H A D | DiffEngine.h |
|
H A D | DiffEngine.cpp |
|
/freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/ |
H A D | Library.h | 29 static StringRef getFrameworkNameFromInstallName(StringRef InstallName);
|
H A D | Context.h | 96 std::string findLibrary(StringRef InstallName, FileManager &FM,
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/ |
H A D | MachOObjcopy.cpp | 236 StringRef InstallName = getPayloadString(LC); in processLoadCommands() 238 MachOConfig.InstallNamesToUpdate.lookup(InstallName); in processLoadCommands() 228 StringRef InstallName = getPayloadString(LC); processLoadCommands() local
|
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/ |
H A D | DylibReader.cpp | 172 BA.InstallName = Slice.copyString(LCI.Ptr + DLLC.dylib.name); in readMachOHeader()
|