reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Object/ELFObjectFile.h
  365         (Visibility == ELF::STV_DEFAULT || Visibility == ELF::STV_PROTECTED));
lib/MC/ELFObjectWriter.cpp
  752                        ELF::STT_FILE | ELF::STB_LOCAL, 0, 0, ELF::STV_DEFAULT,
lib/MC/MCSymbolELF.cpp
  150   assert(Visibility == ELF::STV_DEFAULT || Visibility == ELF::STV_INTERNAL ||
lib/ObjectYAML/ELFYAML.cpp
  936       Map["STV_DEFAULT"] = ELF::STV_DEFAULT;
lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
  636   if (KernelCodeSymbol->getVisibility() == ELF::STV_DEFAULT)
tools/lld/ELF/Driver.cpp
 1562       Undefined{nullptr, name, STB_GLOBAL, STV_DEFAULT, 0});
tools/lld/ELF/InputFiles.cpp
 1390     return STV_DEFAULT;
 1459                             STV_DEFAULT, STT_OBJECT, 0, 0, section});
 1461                             STV_DEFAULT, STT_OBJECT, data.size(), 0, section});
 1463                             STV_DEFAULT, STT_OBJECT, data.size(), 0, nullptr});
tools/lld/ELF/LTO.cpp
  193         (isExec || sym->visibility != STV_DEFAULT) && dr &&
  202       sym->replace(Undefined{nullptr, sym->getName(), STB_GLOBAL, STV_DEFAULT,
tools/lld/ELF/LinkerScript.cpp
  167   uint8_t visibility = cmd->hidden ? STV_HIDDEN : STV_DEFAULT;
  197   uint8_t visibility = cmd->hidden ? STV_HIDDEN : STV_DEFAULT;
tools/lld/ELF/Relocations.cpp
  852   bool canBeExternal = !sym.isLocal() && sym.visibility == STV_DEFAULT;
 1002   if ((sym.stOther & 0x3) == STV_DEFAULT)
tools/lld/ELF/SymbolTable.cpp
   78   sym->visibility = STV_DEFAULT;
tools/lld/ELF/Symbols.cpp
  276   if ((visibility != STV_DEFAULT && visibility != STV_PROTECTED) ||
  346   if (va == STV_DEFAULT)
  348   if (vb == STV_DEFAULT)
  407   if ((isShared() && other.visibility != STV_DEFAULT) ||
  647   if (visibility == STV_DEFAULT && (isUndefined() || isLazy())) {
tools/lld/ELF/Symbols.h
  222       return visibility == llvm::ELF::STV_DEFAULT;
  402                llvm::ELF::STV_DEFAULT, llvm::ELF::STT_NOTYPE),
  418                llvm::ELF::STV_DEFAULT, llvm::ELF::STT_NOTYPE) {}
tools/lld/ELF/SyntheticSections.cpp
  265   auto *s = make<Defined>(section.file, name, STB_LOCAL, STV_DEFAULT, type,
tools/lld/ELF/Writer.cpp
  291     return addOptionalRegular(s, Out::elfHeader, pos, STV_DEFAULT);
 1650   if (b.visibility != STV_DEFAULT)
 1707                            0x800, STV_DEFAULT, STB_GLOBAL);
tools/llvm-elfabi/ELFObjHandler.cpp
  272     if (!(Visibility == STV_DEFAULT || Visibility == STV_PROTECTED))
tools/llvm-objcopy/ELF/ELFConfig.cpp
   75             .CaseLower("default", [&SI] { SI.Visibility = ELF::STV_DEFAULT; })
  107             .Case("default", ELF::STV_DEFAULT)
  122         ELFConfig.NewSymbolVisibility.getValueOr((uint8_t)ELF::STV_DEFAULT));
tools/llvm-objcopy/ELF/ELFConfig.h
   30   uint8_t Visibility = ELF::STV_DEFAULT;
tools/llvm-objcopy/ELF/ELFObjcopy.cpp
  757       Config.ELF->NewSymbolVisibility.getValueOr((uint8_t)ELF::STV_DEFAULT);
tools/llvm-objdump/llvm-objdump.cpp
 1888       case ELF::STV_DEFAULT:
tools/llvm-readobj/ELFDumper.cpp
 1115     {"DEFAULT",   "DEFAULT",   ELF::STV_DEFAULT},