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/MC/
WinCOFFObjectWriter.cpp 760 COFFRelocation Reloc;
762 Reloc.Data.SymbolTableIndex = 0;
763 Reloc.Data.VirtualAddress = Layout.getFragmentOffset(Fragment);
767 Reloc.Symb = coff_symbol->Section->Symbol;
771 Reloc.Symb = coff_symbol;
773 ++Reloc.Symb->Relocations;
775 Reloc.Data.VirtualAddress += Fixup.getOffset();
776 Reloc.Data.Type = TargetObjectWriter->getRelocType(Target, Fixup,
782 Reloc.Data.Type == COFF::IMAGE_REL_AMD64_REL32) ||
784 Reloc.Data.Type == COFF::IMAGE_REL_I386_REL32)
    [all...]
  /external/llvm/lib/Object/
COFFObjectFile.cpp 896 COFFObjectFile::getCOFFRelocation(const RelocationRef &Reloc) const {
897 return toRel(Reloc.getRawDataRefImpl());
908 const coff_relocation *Reloc = toRel(Rel);
912 switch (Reloc->Type) {
    [all...]
  /external/llvm/lib/Target/ARM/
ARMCodeEmitter.cpp 74 IsPIC(TM.getRelocationModel() == Reloc::PIC_), IsThumb(false) {}
331 unsigned Reloc);
339 void emitGlobalAddress(const GlobalValue *GV, unsigned Reloc,
342 void emitExternalSymbolAddress(const char *ES, unsigned Reloc) const;
343 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
344 void emitJumpTableAddress(unsigned JTIndex, unsigned Reloc) const;
345 void emitMachineBasicBlock(MachineBasicBlock *BB, unsigned Reloc,
368 assert((Target.getRelocationModel() != Reloc::Default ||
369 Target.getRelocationModel() != Reloc::Static) &&
380 IsPIC = TM.getRelocationModel() == Reloc::PIC_
    [all...]

Completed in 128 milliseconds