| /freebsd/contrib/llvm-project/llvm/lib/Linker/ |
| H A D | LinkModules.cpp | 268 if (Dest.hasExternalWeakLinkage()) { in shouldLinkFromSource() 302 assert(!Dest.hasExternalWeakLinkage()); in shouldLinkFromSource() 320 assert(!Src.hasExternalWeakLinkage()); in shouldLinkFromSource() 321 assert(!Dest.hasExternalWeakLinkage()); in shouldLinkFromSource()
|
| H A D | IRMover.cpp | 652 else if (SGV->hasExternalWeakLinkage()) in copyGlobalValueProto()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | GlobalValue.h | 302 (!hasDefaultVisibility() && !hasExternalWeakLinkage()); in isImplicitDSOLocal() 531 bool hasExternalWeakLinkage() const { in hasExternalWeakLinkage() function
|
| /freebsd/contrib/llvm-project/clang/include/clang/CIR/Interfaces/ |
| H A D | CIROpInterfaces.td | 115 "bool", "hasExternalWeakLinkage", (ins), [{}],
|
| /freebsd/contrib/llvm-project/llvm/lib/Object/ |
| H A D | ModuleSymbolTable.cpp | 240 GV->hasExternalWeakLinkage()) in getSymbolFlags()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ |
| H A D | TargetMachine.cpp | 240 if (GV->hasExternalWeakLinkage()) in shouldAssumeDSOLocal()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64Subtarget.cpp | 487 GV->hasExternalWeakLinkage()) in ClassifyGlobalReference()
|
| H A D | AArch64AsmPrinter.cpp | 2565 if (GAMO.getGlobal()->hasExternalWeakLinkage()) { in LowerLOADgotAUTH() 2582 if (GAMO.getGlobal()->hasExternalWeakLinkage()) in LowerLOADgotAUTH()
|
| H A D | AArch64FastISel.cpp | 3220 Addr.getGlobalValue()->hasExternalWeakLinkage()) in fastLowerCall()
|
| /freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/ |
| H A D | CIRGenModule.cpp | 1523 if (!gv.hasDefaultVisibility() && !gv.hasExternalWeakLinkage()) in shouldAssumeDSOLocal() 1548 if (tt.isOSBinFormatCOFF() && gv.hasExternalWeakLinkage()) in shouldAssumeDSOLocal() 1583 if (rm == llvm::Reloc::PIC_ && gv.hasExternalWeakLinkage()) in shouldAssumeDSOLocal()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | ThinLTOBitcodeWriter.cpp | 425 else if (F.hasExternalWeakLinkage()) in splitAndWriteThinLTOBitcode()
|
| H A D | LowerTypeTests.cpp | 1159 if (F->hasExternalWeakLinkage()) in importFunction() 1739 if (F->hasExternalWeakLinkage()) in buildBitSetsFromFunctionsNative() 2210 if (Linkage == CFL_Definition && F->hasExternalWeakLinkage()) in lower()
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ConstantFold.cpp | 1045 if (!GV->hasExternalWeakLinkage() && !isa<GlobalAlias>(GV) && in evaluateICmpRelation() 1066 if (!GV->hasExternalWeakLinkage() && CE1GEP->isInBounds()) in evaluateICmpRelation()
|
| H A D | Value.cpp | 947 if (GV->getValueType()->isSized() && !GV->hasExternalWeakLinkage()) { in getPointerDereferenceableBytes()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/ |
| H A D | MCJIT.cpp | 418 bool AbortOnFailure = !F->hasExternalWeakLinkage(); in getPointerToFunction()
|
| /freebsd/contrib/llvm-project/llvm/lib/LTO/ |
| H A D | LTOModule.cpp | 560 if (decl->hasExternalWeakLinkage()) in addPotentialUndefinedSymbol()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/ |
| H A D | ExecutionEngine.cpp | 1240 if (GV.hasExternalLinkage() || GVEntry->hasExternalWeakLinkage()) in emitGlobals()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64CallLowering.cpp | 1033 if (GV->hasExternalWeakLinkage() && in isEligibleForTailCallOptimization()
|
| H A D | AArch64InstructionSelector.cpp | 6976 assert((!GV->hasExternalWeakLinkage() || NeedsGOTLoad) && in selectPtrAuthGlobalValue() 6986 if (!GV->hasExternalWeakLinkage()) { in selectPtrAuthGlobalValue()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/GISel/ |
| H A D | RISCVInstructionSelector.cpp | 782 return selectAddr(MI, MIB, GV->isDSOLocal(), GV->hasExternalWeakLinkage()); in select()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | MemoryBuiltins.cpp | 985 if (!GV.getValueType()->isSized() || GV.hasExternalWeakLinkage() || in visitGlobalVariable()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | IRTranslator.cpp | 2767 F->hasExternalWeakLinkage()))) in translateCall() 2952 Fn->hasExternalWeakLinkage()))) in translateInvoke()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenModule.cpp | 1798 if (!GV->hasDefaultVisibility() && !GV->hasExternalWeakLinkage()) in shouldAssumeDSOLocal() 1825 if (TT.isOSBinFormatCOFF() && GV->hasExternalWeakLinkage()) in shouldAssumeDSOLocal() 1862 if (RM == llvm::Reloc::PIC_ && GV->hasExternalWeakLinkage()) in shouldAssumeDSOLocal()
|
| H A D | ItaniumCXXABI.cpp | 3248 if (!CGM.getTriple().isOSWindows() || !Init->hasExternalWeakLinkage()) in EmitThreadLocalInitFuncs()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | AsmPrinter.cpp | 2691 if (!GO.hasExternalWeakLinkage()) in doFinalization()
|