HomeSort by relevance Sort by last modified time
    Searched refs:hasRelocationAddend (Results 1 - 8 of 8) sorted by null

  /external/llvm/include/llvm/Target/
TargetELFWriterInfo.h 87 return is64Bit ? (hasRelocationAddend() ? 24 : 16)
88 : (hasRelocationAddend() ? 12 : 8);
95 /// hasRelocationAddend - True if the target uses an addend in the
97 virtual bool hasRelocationAddend() const = 0;
  /external/llvm/lib/Target/ARM/
ARMELFWriterInfo.h 30 /// hasRelocationAddend - True if the target uses an addend in the
32 virtual bool hasRelocationAddend() const { return false; }
  /external/llvm/lib/Target/MBlaze/
MBlazeELFWriterInfo.h 30 /// hasRelocationAddend - True if the target uses an addend in the
32 virtual bool hasRelocationAddend() const { return false; }
  /external/llvm/lib/Target/X86/
X86ELFWriterInfo.h 31 /// hasRelocationAddend - True if the target uses an addend in the
33 virtual bool hasRelocationAddend() const { return is64Bit ? true : false; }
  /external/llvm/include/llvm/MC/
MCELFObjectWriter.h 20 const unsigned HasRelocationAddend : 1;
33 bool hasRelocationAddend() { return HasRelocationAddend; }
  /external/llvm/lib/MC/
ELFObjectWriter.h 159 bool hasRelocationAddend() const {
160 return TargetObjectWriter->hasRelocationAddend();
ELFObjectWriter.cpp 454 if (!hasRelocationAddend())
688 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
692 if (hasRelocationAddend())
698 Ctx.getELFSection(RelaSectionName, hasRelocationAddend() ?
767 if (hasRelocationAddend())
776 if (hasRelocationAddend())
    [all...]
  /external/llvm/lib/CodeGen/
ELFWriter.cpp 256 unsigned SectionType = TEW->hasRelocationAddend() ?
260 if (TEW->hasRelocationAddend())
753 bool HasRelA = TEW->hasRelocationAddend();
    [all...]

Completed in 153 milliseconds