Searched defs:NumRelocs (Results 1 - 6 of 6) sorted by relevance

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

Completed in 175 milliseconds