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

  /external/llvm/include/llvm/Target/
TargetELFWriterInfo.h 85 return is64Bit ? (hasRelocationAddend() ? 24 : 16)
86 : (hasRelocationAddend() ? 12 : 8);
93 /// hasRelocationAddend - True if the target uses an addend in the
95 virtual bool hasRelocationAddend() const = 0;
  /external/llvm/lib/Target/ARM/
ARMELFWriterInfo.h 31 /// hasRelocationAddend - True if the target uses an addend in the
33 virtual bool hasRelocationAddend() const { return false; }
  /external/llvm/lib/Target/MBlaze/
MBlazeELFWriterInfo.h 31 /// hasRelocationAddend - True if the target uses an addend in the
33 virtual bool hasRelocationAddend() const { return false; }
  /external/llvm/lib/Target/Mips/
MipsELFWriterInfo.h 31 /// hasRelocationAddend - True if the target uses an addend in the
33 virtual bool hasRelocationAddend() const { return is64Bit ? true : 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 55 const unsigned HasRelocationAddend : 1;
62 uint16_t EMachine_, bool HasRelocationAddend,
98 bool hasRelocationAddend() { return HasRelocationAddend; }
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 138 bool hasRelocationAddend() const {
139 return TargetObjectWriter->hasRelocationAddend();
755 if (!hasRelocationAddend())
    [all...]

Completed in 205 milliseconds