Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Target/
DTargetELFWriterInfo.h85 return is64Bit ? (hasRelocationAddend() ? 24 : 16) in getRelocationEntrySize()
86 : (hasRelocationAddend() ? 12 : 8); in getRelocationEntrySize()
95 virtual bool hasRelocationAddend() const = 0;
/external/llvm/lib/Target/X86/
DX86ELFWriterInfo.h33 virtual bool hasRelocationAddend() const { return is64Bit ? true : false; } in hasRelocationAddend() function
/external/llvm/lib/Target/Mips/
DMipsELFWriterInfo.h33 virtual bool hasRelocationAddend() const { return is64Bit ? true : false; } in hasRelocationAddend() function
/external/llvm/lib/Target/ARM/
DARMELFWriterInfo.h33 virtual bool hasRelocationAddend() const { return false; } in hasRelocationAddend() function
/external/llvm/lib/Target/MBlaze/
DMBlazeELFWriterInfo.h33 virtual bool hasRelocationAddend() const { return false; } in hasRelocationAddend() function
/external/llvm/lib/MC/
DELFObjectWriter.cpp138 bool hasRelocationAddend() const { in hasRelocationAddend() function in __anonffef55a20111::ELFObjectWriter
139 return TargetObjectWriter->hasRelocationAddend(); in hasRelocationAddend()
755 if (!hasRelocationAddend()) in RecordRelocation()
989 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel"; in CreateRelocationSections()
993 if (hasRelocationAddend()) in CreateRelocationSections()
999 Ctx.getELFSection(RelaSectionName, hasRelocationAddend() ? in CreateRelocationSections()
1078 if (hasRelocationAddend()) in WriteRelocationsFragment()
1087 if (hasRelocationAddend()) in WriteRelocationsFragment()
/external/llvm/include/llvm/MC/
DMCELFObjectWriter.h98 bool hasRelocationAddend() { return HasRelocationAddend; } in hasRelocationAddend() function