Searched defs:NumRelocs (Results 1 - 7 of 7) 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.cpp269 unsigned NumRelocs, unsigned char* GOTBase) {
270 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
268 relocate(void *Function, MachineRelocation *MR, unsigned NumRelocs, unsigned char* GOTBase) argument
/external/llvm/lib/Target/Mips/
H A DMipsJITInfo.cpp249 unsigned NumRelocs, unsigned char *GOTBase) {
250 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
248 relocate(void *Function, MachineRelocation *MR, unsigned NumRelocs, unsigned char *GOTBase) argument
/external/llvm/lib/Target/PowerPC/
H A DPPCJITInfo.cpp425 unsigned NumRelocs, unsigned char* GOTBase) {
426 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
424 relocate(void *Function, MachineRelocation *MR, unsigned NumRelocs, unsigned char* GOTBase) argument
/external/llvm/lib/Target/Sparc/
H A DSparcJITInfo.cpp277 unsigned NumRelocs, unsigned char *GOTBase) {
278 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
276 relocate(void *Function, MachineRelocation *MR, unsigned NumRelocs, unsigned char *GOTBase) argument
/external/llvm/lib/Target/X86/
H A DX86JITInfo.cpp549 unsigned NumRelocs, unsigned char* GOTBase) {
550 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
548 relocate(void *Function, MachineRelocation *MR, unsigned NumRelocs, unsigned char* GOTBase) argument
/external/llvm/lib/MC/
H A DMachObjectWriter.cpp863 unsigned NumRelocs = Relocs.size(); local
865 WriteSection(Asm, Layout, *it, SectionStart, RelocTableEnd, NumRelocs);
866 RelocTableEnd += NumRelocs * sizeof(MachO::any_relocation_info);

Completed in 3718 milliseconds