/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | Symbols.cpp | 273 if ((v != STV_DEFAULT && v != STV_PROTECTED) || versionId == VER_NDX_LOCAL) in computeBinding() 356 if (!sym.includeInDynsym() || sym.visibility() != STV_DEFAULT) in computeIsPreemptible() 391 if (!other.isShared() && other.visibility() != STV_DEFAULT) { in mergeProperties() 393 setVisibility(v == STV_DEFAULT ? ov : std::min(v, ov)); in mergeProperties() 398 if (other.visibility() != STV_DEFAULT) { in resolve() 400 setVisibility(v == STV_DEFAULT ? ov : std::min(v, ov)); in resolve() 407 if (isPlaceholder() || (isShared() && other.visibility() != STV_DEFAULT) || in resolve() 580 if (other.visibility() != STV_DEFAULT) { in resolve() 582 setVisibility(v == STV_DEFAULT ? ov : std::min(v, ov)); in resolve() 618 if (other.visibility() != STV_DEFAULT) { in resolve() [all …]
|
H A D | LTO.cpp | 257 (isExec || sym->visibility() != STV_DEFAULT) && dr && in add() 267 Undefined(ctx.internalFile, StringRef(), STB_GLOBAL, STV_DEFAULT, in add()
|
H A D | SymbolTable.cpp | 338 return addSymbol(Undefined{ctx.internalFile, name, binding, STV_DEFAULT, 0}); in addUnusedUndefined()
|
H A D | InputFiles.cpp | 1734 return STV_DEFAULT; in mapVisibility() 1840 STB_GLOBAL, STV_DEFAULT, STT_OBJECT, 0, 0, in parse() 1843 STV_DEFAULT, STT_OBJECT, data.size(), 0, in parse() 1846 STV_DEFAULT, STT_OBJECT, data.size(), 0, in parse()
|
H A D | Symbols.h | 509 llvm::ELF::STV_DEFAULT, llvm::ELF::STT_NOTYPE) {}
|
H A D | LinkerScript.cpp | 214 uint8_t visibility = cmd->hidden ? STV_HIDDEN : STV_DEFAULT; in addSymbol() 245 uint8_t visibility = cmd->hidden ? STV_HIDDEN : STV_DEFAULT; in declareSymbol()
|
H A D | Writer.cpp | 238 return addOptionalRegular(s, Out::elfHeader, pos, STV_DEFAULT); in addReservedSymbols() 1731 "__global_pointer$", sec ? sec : Out::elfHeader, 0x800, STV_DEFAULT); in finalizeSections() 1908 STB_GLOBAL, STV_DEFAULT, STT_NOTYPE}); in finalizeSections()
|
H A D | Relocations.cpp | 832 bool canBeExternal = !sym.isLocal() && sym.visibility() == STV_DEFAULT; in maybeReportUndefined()
|
H A D | Options.td | 234 "(shared object) References to matched non-local STV_DEFAULT symbols "
|
H A D | Driver.cpp | 553 ret = STV_DEFAULT; in getZStartStopVisibility()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjCopy/ELF/ |
H A D | ELFConfig.h | 20 uint8_t NewSymbolVisibility = (uint8_t)ELF::STV_DEFAULT;
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCSymbolELF.cpp | 148 assert(Visibility == ELF::STV_DEFAULT || Visibility == ELF::STV_INTERNAL || in setVisibility()
|
H A D | ELFObjectWriter.cpp | 624 ELF::STT_FILE | ELF::STB_LOCAL, 0, 0, ELF::STV_DEFAULT, in computeSymbolTable() 637 ELF::STT_FILE | ELF::STB_LOCAL, 0, 0, ELF::STV_DEFAULT, in computeSymbolTable()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | ELFLinkGraphBuilder.h | 249 case ELF::STV_DEFAULT: in getSymbolLinkageAndScope()
|
/freebsd/sys/sys/ |
H A D | elf_common.h | 899 #define STV_DEFAULT 0x0 /* Default visibility (see binding). */ macro
|
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
H A D | ELF.h | 1348 STV_DEFAULT = 0, // Visibility is specified by binding type enumerator
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/ |
H A D | ObjcopyOptions.cpp | 263 .Case("default", ELF::STV_DEFAULT) in parseVisibilityType() 693 .Case("default", ELF::STV_DEFAULT) in parseObjcopyOptions()
|
/freebsd/contrib/llvm-project/llvm/lib/InterfaceStub/ |
H A D | ELFObjHandler.cpp | 558 if (!(Visibility == STV_DEFAULT || Visibility == STV_PROTECTED)) in populateSymbols()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
H A D | AMDGPUTargetStreamer.cpp | 954 if (KernelCodeSymbol->getVisibility() == ELF::STV_DEFAULT) in EmitAmdhsaKernelDescriptor()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
H A D | ELFObjcopy.cpp | 585 Visibility = ELF::STV_DEFAULT; in addSymbol()
|
/freebsd/contrib/elftoolchain/elfcopy/ |
H A D | symbols.c | 628 sym.st_other = STV_DEFAULT; in generate_symbols()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | ELFObjectFile.h | 404 (Visibility == ELF::STV_DEFAULT || Visibility == ELF::STV_PROTECTED)); in isExportedToOtherDSO()
|
/freebsd/contrib/elftoolchain/common/ |
H A D | elfdefinitions.h | 1361 _ELF_DEFINE_STV(STV_DEFAULT, 0, \
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | ELFYAML.cpp | 1272 Map["STV_DEFAULT"] = ELF::STV_DEFAULT; in getFlags()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | llvm-objdump.cpp | 3037 case ELF::STV_DEFAULT: in printSymbol()
|