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

References

include/llvm/Object/ELFObjectFile.h
  830   if (S->sh_type != ELF::SHT_RELA && S->sh_type != ELF::SHT_REL)
  852   if (Type != ELF::SHT_REL && Type != ELF::SHT_RELA)
  919   if (getRelSection(Rel)->sh_type != ELF::SHT_RELA)
  937   assert(getRelSection(Rela)->sh_type == ELF::SHT_RELA);
lib/MC/ELFObjectWriter.cpp
  825       RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL,
 1024   case ELF::SHT_RELA: {
lib/Object/ELF.cpp
  235     STRINGIFY_ENUM_CASE(ELF, SHT_RELA);
lib/ObjectYAML/ELFEmitter.cpp
  214     if (D->Type == llvm::ELF::SHT_REL || D->Type == llvm::ELF::SHT_RELA)
  737           Section.Type == llvm::ELF::SHT_RELA) &&
  740   bool IsRela = Section.Type == llvm::ELF::SHT_RELA;
lib/ObjectYAML/ELFYAML.cpp
  445   ECase(SHT_RELA);
 1133   case ELF::SHT_RELA:
tools/lld/ELF/InputFiles.cpp
  830   case SHT_RELA:
  869     if (sec.sh_type == SHT_RELA) {
tools/lld/ELF/InputSection.cpp
  399   if (!file || (type != SHT_RELA && type != SHT_REL))
 1105   if (type == SHT_RELA) {
tools/lld/ELF/LinkerScript.cpp
  589       (isec->type == SHT_REL || isec->type == SHT_RELA)) {
tools/lld/ELF/MarkLive.cpp
  359     bool isRel = (sec->type == SHT_REL || sec->type == SHT_RELA);
tools/lld/ELF/OutputSections.cpp
  374   if (!config->copyRelocs || (type != SHT_RELA && type != SHT_REL))
tools/lld/ELF/SyntheticSections.cpp
 1591     : RelocationBaseSection(name, config->isRela ? SHT_RELA : SHT_REL,
tools/lld/ELF/Writer.cpp
  104       if (s->type == SHT_RELA)
  719     if (isec->type == SHT_REL || isec->type == SHT_RELA)
 2656     if (sec->type == SHT_REL || sec->type == SHT_RELA)
 2660     if (sec->type != SHT_REL && sec->type != SHT_RELA)
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
  128   else if (type == DT_RELA || type == SHT_RELA)
 1614   case SHT_RELA:
 2477   assert(rel_hdr->sh_type == SHT_RELA || rel_hdr->sh_type == SHT_REL);
 2640   assert(rel_hdr->sh_type == SHT_RELA || rel_hdr->sh_type == SHT_REL);
 2851     if (I->sh_type == SHT_RELA || I->sh_type == SHT_REL) {
 3134     CASE_AND_STREAM(s, SHT_RELA, kStrWidth);
tools/llvm-objcopy/ELF/ELFObjcopy.cpp
  470       case SHT_RELA:
  652           case SHT_RELA:
tools/llvm-objcopy/ELF/Object.cpp
 1445   case SHT_RELA:
tools/llvm-objcopy/ELF/Object.h
  727     return S->Type == ELF::SHT_REL || S->Type == ELF::SHT_RELA;
  767     return S->Type == ELF::SHT_REL || S->Type == ELF::SHT_RELA;
  843     return S->Type == ELF::SHT_REL || S->Type == ELF::SHT_RELA;
tools/llvm-objdump/ELFDump.cpp
   70   if ((*SecOrErr)->sh_type == ELF::SHT_RELA) {
tools/llvm-readobj/ELFDumper.cpp
 2974   bool IsRela = SType == ELF::SHT_RELA || SType == ELF::SHT_ANDROID_RELA;
 2997     if (Sec.sh_type != ELF::SHT_REL && Sec.sh_type != ELF::SHT_RELA &&
 3039     case ELF::SHT_RELA:
 3125   case SHT_RELA:
 3708     printRelocHeader(ELF::SHT_RELA);
 3749     printRelocHeader(ELF::SHT_RELA);
 4894     if (SectionType != ELF::SHT_RELA && SectionType != ELF::SHT_REL)
 5246     if (Sec.sh_type != ELF::SHT_REL && Sec.sh_type != ELF::SHT_RELA &&
 5279   case ELF::SHT_RELA:
tools/llvm-size/llvm-size.cpp
  192   case ELF::SHT_RELA:
tools/obj2yaml/elf2yaml.cpp
  240     case ELF::SHT_RELA: {