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

  /external/swiftshader/third_party/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/swiftshader/third_party/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/swiftshader/third_party/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/swiftshader/third_party/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/swiftshader/third_party/LLVM/include/llvm/MC/
MCELFObjectWriter.h 20 const unsigned HasRelocationAddend : 1;
33 bool hasRelocationAddend() { return HasRelocationAddend; }
  /external/llvm/include/llvm/MC/
MCELFObjectWriter.h 56 const unsigned HasRelocationAddend : 1;
63 uint16_t EMachine_, bool HasRelocationAddend,
94 bool hasRelocationAddend() const { return HasRelocationAddend; }
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
ELFObjectWriter.cpp 156 bool hasRelocationAddend() const;
241 bool hasRelocationAddend() const;
403 bool ELFWriter::hasRelocationAddend() const {
404 return OWriter.hasRelocationAddend();
772 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel";
776 if (hasRelocationAddend())
786 RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL,
926 if (hasRelocationAddend())
935 if (hasRelocationAddend())
    [all...]
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 128 bool hasRelocationAddend() const {
129 return TargetObjectWriter->hasRelocationAddend();
579 if (!hasRelocationAddend())
695 if (hasRelocationAddend()) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCELFObjectWriter.h 57 const unsigned HasRelocationAddend : 1;
62 bool HasRelocationAddend);
97 bool hasRelocationAddend() const { return HasRelocationAddend; }
  /external/swiftshader/third_party/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/swiftshader/third_party/LLVM/lib/CodeGen/
ELFWriter.cpp 256 unsigned SectionType = TEW->hasRelocationAddend() ?
260 if (TEW->hasRelocationAddend())
753 bool HasRelA = TEW->hasRelocationAddend();
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/MCTargetDesc/
MipsELFObjectWriter.cpp 59 MipsELFObjectWriter(uint8_t OSABI, bool HasRelocationAddend, bool Is64);
214 bool HasRelocationAddend, bool Is64)
215 : MCELFObjectTargetWriter(Is64, OSABI, ELF::EM_MIPS, HasRelocationAddend) {}
449 if (hasRelocationAddend())
682 bool HasRelocationAddend = TT.isArch64Bit();
683 return llvm::make_unique<MipsELFObjectWriter>(OSABI, HasRelocationAddend,

Completed in 392 milliseconds