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

  /external/llvm/include/llvm/Target/
TargetELFWriterInfo.h 84 return is64Bit ? (hasRelocationAddend() ? 24 : 16)
85 : (hasRelocationAddend() ? 12 : 8);
92 /// hasRelocationAddend - True if the target uses an addend in the
94 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/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;
96 bool hasRelocationAddend() { return HasRelocationAddend; }
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 138 bool hasRelocationAddend() const {
139 return TargetObjectWriter->hasRelocationAddend();
754 if (!hasRelocationAddend())
    [all...]

Completed in 166 milliseconds