Home
last modified time | relevance | path

Searched refs:NumRelocs (Results 1 – 10 of 10) sorted by relevance

/external/llvm/include/llvm/Target/
DTargetJITInfo.h104 unsigned NumRelocs, unsigned char* GOTBase) { in relocate() argument
105 assert(NumRelocs == 0 && "This target does not have relocations!"); in relocate()
/external/llvm/lib/Target/Mips/
DMipsJITInfo.cpp248 unsigned NumRelocs, unsigned char *GOTBase) { in relocate() argument
249 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { in relocate()
DMipsJITInfo.h59 unsigned NumRelocs, unsigned char *GOTBase);
/external/llvm/lib/Target/PowerPC/
DPPCJITInfo.h38 unsigned NumRelocs, unsigned char* GOTBase);
DPPCJITInfo.cpp414 unsigned NumRelocs, unsigned char* GOTBase) { in relocate() argument
415 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { in relocate()
/external/llvm/lib/Target/X86/
DX86JITInfo.h67 unsigned NumRelocs, unsigned char* GOTBase);
DX86JITInfo.cpp543 unsigned NumRelocs, unsigned char* GOTBase) { in relocate() argument
544 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { in relocate()
/external/llvm/lib/Target/ARM/
DARMJITInfo.cpp268 unsigned NumRelocs, unsigned char* GOTBase) { in relocate() argument
269 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { in relocate()
DARMJITInfo.h81 unsigned NumRelocs, unsigned char* GOTBase);
/external/llvm/lib/MC/
DMachObjectWriter.cpp795 unsigned NumRelocs = Relocs.size(); in WriteObject() local
797 WriteSection(Asm, Layout, *it, SectionStart, RelocTableEnd, NumRelocs); in WriteObject()
798 RelocTableEnd += NumRelocs * macho::RelocationInfoSize; in WriteObject()