Home
last modified time | relevance | path

Searched refs:isExported (Results 1 – 25 of 26) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DVisitor.cpp36 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 DDylibVerifier.cpp321 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 DSectCreate.cpp31 auto S = Info.Flags.isExported() ? Scope::Default : Scope::Hidden; in materialize()
H A DDebugUtils.cpp60 if (!PrintHidden && !Flags.isExported()) in flagsMatchCLOpts()
164 if (!Flags.isExported()) in operator <<()
H A DJITLinkRedirectableSymbolManager.cpp50 Stub.setScope(Def.getFlags().isExported() ? jitlink::Scope::Default in emitRedirectableSymbols()
H A DCore.cpp2267 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 DRecordVisitor.cpp23 if (R.isExported()) in shouldSkipRecord()
/freebsd/contrib/llvm-project/lld/ELF/
H A DSymbols.cpp370 sym->isExported = false; in parseVersionAndComputeIsPreemptible()
377 sym->isExported = true; in parseVersionAndComputeIsPreemptible()
657 isExported = true; in resolve()
H A DLTO.cpp254 (r.Prevailing && sym->isExported) || in add()
259 (ctx.arg.exportDynamic || sym->isExported); in add()
H A DSymbolTable.cpp205 sym->isExported = sym->inDynamicList = true; in handleDynamicList()
H A DSymbols.h138 uint8_t isExported : 1;
H A DMarkLive.cpp338 if (sym->isExported && sym->partition == partition) in run()
H A DWriter.cpp303 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 DDriver.cpp2319 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 DInputFiles.cpp1636 s->isExported = true; in parse()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolWasm.h56 bool isExported() const { in isExported() function
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp516 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 DLowerTypeTests.cpp317 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 DRecord.h98 bool isExported() const { return Linkage >= RecordLinkage::Rexported; } in isExported() function
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DWholeProgramDevirt.h277 function_ref<bool(StringRef, ValueInfo)> isExported,
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTO.cpp469 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 DJITSymbol.h145 bool isExported() const { in isExported() function
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkGeneric.cpp234 Sym->setScope(ResultI->second.getFlags().isExported() ? Scope::Default in applyLookupResult()
/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h64 function_ref<bool(StringRef, ValueInfo)> isExported,
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DIndirectionUtils.h414 if (ExportedStubsOnly && !StubSymbol.getFlags().isExported()) in findStub()

12