HomeSort by relevance Sort by last modified time
    Searched defs:Reloc (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/Support/
CodeGen.h 24 namespace Reloc {
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsELFObjectWriter.cpp 26 Reloc(R), Sym(S), Offset(O) {}
27 ELFRelocationEntry Reloc;
197 return ((R.Reloc.Type == ELF::R_MIPS_GOT16) && !SD.isExternal()) ||
198 (R.Reloc.Type == ELF::R_MIPS_HI16);
207 return (I->Reloc.Type == ELF::R_MIPS_LO16) && (Hi->Sym == I->Sym) &&
250 if ((R->Reloc.Type == ELF::R_MIPS_LO16) && HasSameSymbol(*HiPos, *R) &&
274 Relocs[--I] = R->Reloc;
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 682 COFFRelocation Reloc;
684 Reloc.Data.SymbolTableIndex = 0;
685 Reloc.Data.VirtualAddress = Layout.getFragmentOffset(Fragment);
689 Reloc.Symb = coff_symbol->Section->Symbol;
693 Reloc.Symb = coff_symbol;
695 ++Reloc.Symb->Relocations;
697 Reloc.Data.VirtualAddress += Fixup.getOffset();
698 Reloc.Data.Type = TargetObjectWriter->getRelocType(Target, Fixup,
703 if (Reloc.Data.Type == COFF::IMAGE_REL_AMD64_REL32 ||
704 Reloc.Data.Type == COFF::IMAGE_REL_I386_REL32
    [all...]
  /external/llvm/lib/Target/ARM/
ARMCodeEmitter.cpp 72 IsPIC(TM.getRelocationModel() == Reloc::PIC_), IsThumb(false) {}
284 unsigned Reloc = (MCID.Opcode == ARM::MOVi16 ?
288 emitGlobalAddress(MO.getGlobal(), Reloc, true, false);
362 unsigned Reloc);
370 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
373 void emitExternalSymbolAddress(const char *ES, unsigned Reloc) const;
374 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
375 void emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const;
376 void emitMachineBasicBlock(MachineBasicBlock *BB, unsigned Reloc,
399 assert((Target.getRelocationModel() != Reloc::Default |
    [all...]

Completed in 107 milliseconds