| /freebsd/contrib/llvm-project/clang/lib/InstallAPI/ |
| H A D | Visitor.cpp | 36 static bool isExported(const NamedDecl *D) { in isExported() function 177 isExported(D) ? RecordLinkage::Exported : RecordLinkage::Internal; in VisitObjCInterfaceDecl() 239 isExported(D) ? RecordLinkage::Exported : RecordLinkage::Internal; in VisitVarDecl() 293 const RecordLinkage Linkage = (Inlined || !isExported(D)) in VisitFunctionDecl() 574 if (isExported(D)) in VisitCXXRecordDecl() 597 if (!isExported(M)) in VisitCXXRecordDecl() 708 if (!isExported(Var)) in VisitCXXRecordDecl()
|
| H A D | DylibVerifier.cpp | 321 if (R->isExported()) { in compareVisibility() 340 if ((R->isInternal() && !SymCtx.Inlined) && DR && DR->isExported()) { in compareVisibility() 444 if (R->isExported() && !SymCtx.FA->Avail.isUnavailable() && in verifyImpl()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | SectCreate.cpp | 31 auto S = Info.Flags.isExported() ? Scope::Default : Scope::Hidden; in materialize()
|
| H A D | DebugUtils.cpp | 60 if (!PrintHidden && !Flags.isExported()) in flagsMatchCLOpts() 164 if (!Flags.isExported()) in operator <<()
|
| H A D | JITLinkRedirectableSymbolManager.cpp | 50 Stub.setScope(Def.getFlags().isExported() ? jitlink::Scope::Default in emitRedirectableSymbols()
|
| H A D | Core.cpp | 2267 if (!SymI->second.getFlags().isExported() && in IL_updateCandidatesFor() 2599 if (!SymI->second.getFlags().isExported() && in OL_completeLookup() 2843 if (!SymI->second.getFlags().isExported() && in OL_completeLookupFlags()
|
| /freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
| H A D | RecordVisitor.cpp | 23 if (R.isExported()) in shouldSkipRecord()
|
| /freebsd/contrib/llvm-project/lld/ELF/ |
| H A D | Symbols.cpp | 370 sym->isExported = false; in parseVersionAndComputeIsPreemptible() 377 sym->isExported = true; in parseVersionAndComputeIsPreemptible() 657 isExported = true; in resolve()
|
| H A D | LTO.cpp | 254 (r.Prevailing && sym->isExported) || in add() 259 (ctx.arg.exportDynamic || sym->isExported); in add()
|
| H A D | SymbolTable.cpp | 205 sym->isExported = sym->inDynamicList = true; in handleDynamicList()
|
| H A D | Symbols.h | 138 uint8_t isExported : 1;
|
| H A D | MarkLive.cpp | 338 if (sym->isExported && sym->partition == partition) in run()
|
| H A D | Writer.cpp | 303 sym->isPreemptible = (sym->isUndefined() || sym->isExported) && in demoteSymbolsAndComputeIsPreemptible() 1880 sym->isExported = true; in finalizeSections() 1968 if ((sym->isExported || sym->isPreemptible) && !sym->isLocal()) { in finalizeSections()
|
| H A D | Driver.cpp | 2319 sym->isExported = false; in excludeLibs() 2571 if (sym->isExported) in findKeepUniqueSections() 2622 if (!isa_and_nonnull<Defined>(sym) || !sym->isExported) in readSymbolPartitionSection() 2725 sym->isExported = true; in compileBitcodeFiles()
|
| H A D | InputFiles.cpp | 1636 s->isExported = true; in parse()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCSymbolWasm.h | 56 bool isExported() const { in isExported() function
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | WholeProgramDevirt.cpp | 516 bool isExported() const { in isExported() function 960 function_ref<bool(StringRef, ValueInfo)> isExported, in updateIndexWPDForExports() argument 968 if (!isExported(S->modulePath(), VI)) in updateIndexWPDForExports() 1278 if (CSInfo.isExported()) in applySingleImplDevirt() 1508 if (CSInfo.isExported()) in applyICallBranchFunnel() 1651 if (CSInfo.isExported()) { in tryUniformRetValOpt() 1780 if (CSInfo.isExported()) { in tryUniqueRetValOpt() 1962 if (CSByConstantArg.second.isExported()) { in tryVirtualConstProp()
|
| H A D | LowerTypeTests.cpp | 317 bool isExported() const { in isExported() function in __anonc00fd2a30111::GlobalTypeMember 1718 const bool IsExported = Functions[I]->isExported(); in buildBitSetsFromFunctionsNative()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
| H A D | Record.h | 98 bool isExported() const { return Linkage >= RecordLinkage::Rexported; } in isExported() function
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
| H A D | WholeProgramDevirt.h | 277 function_ref<bool(StringRef, ValueInfo)> isExported,
|
| /freebsd/contrib/llvm-project/llvm/lib/LTO/ |
| H A D | LTO.cpp | 469 ValueInfo VI, function_ref<bool(StringRef, ValueInfo)> isExported, in thinLTOInternalizeAndPromoteGUID() argument 481 if (isExported(S->modulePath(), VI)) { in thinLTOInternalizeAndPromoteGUID() 549 function_ref<bool(StringRef, ValueInfo)> isExported, in thinLTOInternalizeAndPromoteInIndex() argument 553 thinLTOInternalizeAndPromoteGUID(Index.getValueInfo(I), isExported, in thinLTOInternalizeAndPromoteInIndex() 2018 auto isExported = [&](StringRef ModuleIdentifier, ValueInfo VI) { in runThinLTO() local 2026 updateIndexWPDForExports(ThinLTO.CombinedIndex, isExported, in runThinLTO() 2029 thinLTOInternalizeAndPromoteInIndex(ThinLTO.CombinedIndex, isExported, in runThinLTO()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
| H A D | JITSymbol.h | 145 bool isExported() const { in isExported() function
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
| H A D | JITLinkGeneric.cpp | 234 Sym->setScope(ResultI->second.getFlags().isExported() ? Scope::Default in applyLookupResult()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/LTO/ |
| H A D | LTO.h | 64 function_ref<bool(StringRef, ValueInfo)> isExported,
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | IndirectionUtils.h | 414 if (ExportedStubsOnly && !StubSymbol.getFlags().isExported()) in findStub()
|