HomeSort by relevance Sort by last modified time
    Searched refs:IsPCRel (Results 1 - 25 of 34) sorted by null

1 2

  /external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCObjectWriter.cpp 28 bool IsPCRel) const override;
84 bool IsPCRel) const {
89 if (IsPCRel)
94 assert(!IsPCRel && "NTPOFF shouldn't be PC-relative");
98 if (IsPCRel && Kind == SystemZ::FK_390_PC32DBL)
103 assert(IsPCRel && "@PLT shouldt be PC-relative");
SystemZMCAsmBackend.cpp 51 uint64_t Value, bool IsPCRel) const override;
89 bool IsPCRel) const {
  /external/llvm/lib/Target/R600/MCTargetDesc/
AMDGPUELFObjectWriter.cpp 23 bool IsPCRel) const override {
AMDGPUAsmBackend.cpp 32 MCValue Target, bool &IsPCRel,
48 uint64_t Value, bool IsPCRel) const override;
74 bool IsPCRel) const {
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMachObjectWriter.cpp 87 const bool IsPCRel) {
93 if (IsPCRel) { // relative to PC
149 const unsigned IsPCRel, const unsigned Log2Size,
158 (IsPCRel << 7) | // was << 24
167 const unsigned Log2Size, const unsigned IsPCRel,
172 (IsPCRel << 30) | MachO::R_SCATTERED);
199 const unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, FK);
200 const unsigned Type = getRelocType(Target, FK, IsPCRel);
284 Log2Size, IsPCRel, Value2);
298 makeScatteredRelocationInfo(MRE, FixupOffset, Type, Log2Size, IsPCRel, Value)
    [all...]
PPCELFObjectWriter.cpp 30 bool IsPCRel) const;
32 bool IsPCRel) const override;
74 bool IsPCRel) const
80 if (IsPCRel) {
378 bool IsPCRel) const {
379 return getRelocTypeInner(Target, Fixup, IsPCRel);
PPCAsmBackend.cpp 115 uint64_t Value, bool IsPCRel) const override {
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMELFObjectWriter.cpp 29 bool IsPCRel) const;
38 bool IsPCRel) const override;
70 bool IsPCRel) const {
71 return GetRelocTypeInner(Target, Fixup, IsPCRel);
76 bool IsPCRel) const {
80 if (IsPCRel) {
ARMMachObjectWriter.cpp 155 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
232 (IsPCRel << 30) |
243 (IsPCRel << 30) |
259 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
297 (IsPCRel << 30) |
307 (IsPCRel << 30) |
360 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
394 if (IsPCRel && RelocType == MachO::ARM_RELOC_VANILLA)
440 if (IsPCRel)
451 (IsPCRel << 24)
    [all...]
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MachObjectWriter.cpp 119 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
133 if (IsPCRel)
176 if (IsPCRel) {
204 IsPCRel = 1;
207 MRE.r_word1 = ((Index << 0) | (IsPCRel << 24) | (Log2Size << 25) |
218 if (IsPCRel)
261 MRE.r_word1 = ((Index << 0) | (IsPCRel << 24) | (Log2Size << 25) |
334 if (IsPCRel)
364 MRE.r_word1 = ((Index << 0) | (IsPCRel << 24) | (Log2Size << 25) |
371 IsPCRel = 0
    [all...]
AArch64ELFObjectWriter.cpp 33 bool IsPCRel) const override;
48 bool IsPCRel) const {
62 if (IsPCRel) {
AArch64AsmBackend.cpp 69 uint64_t Value, bool IsPCRel) const override;
204 bool IsPCRel) const {
508 uint64_t Value, bool IsPCRel) const override;
533 bool IsPCRel) const {
541 AArch64AsmBackend::applyFixup (Fixup, Data, DataSize, Value, IsPCRel);
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachObjectWriter.cpp 107 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
123 if (IsPCRel) {
141 if (IsPCRel) {
165 if (IsPCRel)
206 (IsPCRel << 24) |
253 if (IsPCRel)
273 if (IsPCRel) {
327 IsPCRel = 1;
350 (IsPCRel << 24) |
367 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind())
    [all...]
X86ELFObjectWriter.cpp 28 bool IsPCRel) const override;
43 bool IsPCRel) const {
49 if (IsPCRel) {
158 if (IsPCRel) {
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 107 bool IsPCRel;
114 SymOffset(0), IsPCRel(false), Size(0) {}
119 SymOffset(symoffset), IsPCRel(false), Size(0) {}
122 bool IsPCRel, unsigned Size)
124 SymOffset(0), IsPCRel(IsPCRel), Size(Size) {}
128 uint64_t SectionBOffset, bool IsPCRel, unsigned Size)
130 Addend(SectionAOffset - SectionBOffset + addend), IsPCRel(IsPCRel),
RuntimeDyldMachO.cpp 274 << " isPCRel: " << RE.IsPCRel
305 if (RE.IsPCRel) {
337 if (RE.IsPCRel) {
369 if (RE.IsPCRel) {
422 if (RE.IsPCRel) {
559 bool IsPCRel = MachO->getAnyRelocationPCRel(RE);
604 IsPCRel, Size);
624 bool IsPCRel = MachO->getAnyRelocationPCRel(RE);
646 IsPCRel, Size)
    [all...]
  /external/llvm/lib/MC/
MCObjectWriter.cpp 51 bool IsPCRel) const {
MCAssembler.cpp 460 bool IsPCRel = Backend.getFixupKindInfo(
464 if (IsPCRel) {
502 assert((ShouldAlignPC ? IsPCRel : true) &&
505 if (IsPCRel) {
845 bool IsPCRel = Backend.getFixupKindInfo(Fixup.getKind()).Flags &
851 getWriter().RecordRelocation(*this, Layout, &F, Fixup, Target, IsPCRel,
854 return std::make_pair(FixedValue, IsPCRel);
919 bool IsPCRel;
920 std::tie(FixedValue, IsPCRel) = handleFixup(Layout, *F, Fixup);
922 F->getContents().size(), FixedValue, IsPCRel);
    [all...]
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcELFObjectWriter.cpp 32 bool IsPCRel) const override;
38 bool IsPCRel) const {
45 if (IsPCRel) {
  /external/llvm/include/llvm/MC/
MCObjectWriter.h 83 bool &IsPCRel,
102 bool IsPCRel) const;
MCAsmBackend.h 100 uint64_t Value, bool IsPCRel) const = 0;
MCELFObjectWriter.h 55 bool IsPCRel) const = 0;
MCMachObjectWriter.h 235 MCValue Target, bool &IsPCRel,
260 bool IsPCRel) const override;
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsAsmBackend.h 43 uint64_t Value, bool IsPCRel) const override;
MipsELFObjectWriter.cpp 32 bool IsPCRel) const override;
47 bool IsPCRel) const {

Completed in 2109 milliseconds

1 2