Home
last modified time | relevance | path

Searched refs:hasRelocationAddend (Results 1 – 8 of 8) sorted by relevance

/external/llvm/include/llvm/Target/
DTargetELFWriterInfo.h87 return is64Bit ? (hasRelocationAddend() ? 24 : 16) in getRelocationEntrySize()
88 : (hasRelocationAddend() ? 12 : 8); in getRelocationEntrySize()
97 virtual bool hasRelocationAddend() const = 0;
/external/llvm/lib/Target/MBlaze/
DMBlazeELFWriterInfo.h32 virtual bool hasRelocationAddend() const { return false; } in hasRelocationAddend() function
/external/llvm/lib/Target/ARM/
DARMELFWriterInfo.h32 virtual bool hasRelocationAddend() const { return false; } in hasRelocationAddend() function
/external/llvm/lib/Target/X86/
DX86ELFWriterInfo.h33 virtual bool hasRelocationAddend() const { return is64Bit ? true : false; } in hasRelocationAddend() function
/external/llvm/include/llvm/MC/
DMCELFObjectWriter.h33 bool hasRelocationAddend() { return HasRelocationAddend; } in hasRelocationAddend() function
/external/llvm/lib/MC/
DELFObjectWriter.h159 bool hasRelocationAddend() const { in hasRelocationAddend() function
160 return TargetObjectWriter->hasRelocationAddend(); in hasRelocationAddend()
DELFObjectWriter.cpp450 if (!hasRelocationAddend()) in RecordRelocation()
675 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel"; in CreateRelocationSections()
679 if (hasRelocationAddend()) in CreateRelocationSections()
685 Ctx.getELFSection(RelaSectionName, hasRelocationAddend() ? in CreateRelocationSections()
754 if (hasRelocationAddend()) in WriteRelocationsFragment()
763 if (hasRelocationAddend()) in WriteRelocationsFragment()
/external/llvm/lib/CodeGen/
DELFWriter.cpp258 unsigned SectionType = TEW->hasRelocationAddend() ? in getRelocSection()
262 if (TEW->hasRelocationAddend()) in getRelocSection()
755 bool HasRelA = TEW->hasRelocationAddend(); in EmitRelocations()