/external/swiftshader/third_party/LLVM/include/llvm/Target/ |
D | TargetJITInfo.h | 108 unsigned NumRelocs, unsigned char* GOTBase) { in relocate() argument 109 assert(NumRelocs == 0 && "This target does not have relocations!"); in relocate()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/ |
D | ELF.cpp | 364 uint64_t NumRelocs = ReadSLEB(); in android_relas() local 372 Relocs.reserve(NumRelocs); in android_relas() 373 while (NumRelocs) { in android_relas() 375 if (NumRelocsInGroup > NumRelocs) in android_relas() 377 NumRelocs -= NumRelocsInGroup; in android_relas()
|
D | COFFObjectFile.cpp | 366 uint64_t NumRelocs = getNumberOfRelocations(Sec, M, Base); in getFirstReloc() local 367 if (!NumRelocs) in getFirstReloc() 377 sizeof(coff_relocation) * NumRelocs)) in getFirstReloc()
|
/external/swiftshader/third_party/LLVM/lib/Target/Mips/ |
D | MipsJITInfo.cpp | 196 unsigned NumRelocs, unsigned char* GOTBase) { in relocate() argument 197 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { in relocate()
|
D | MipsJITInfo.h | 60 unsigned NumRelocs, unsigned char* GOTBase);
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
D | ARMJITInfo.cpp | 268 unsigned NumRelocs, unsigned char* GOTBase) { in relocate() argument 269 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { in relocate()
|
D | ARMJITInfo.h | 81 unsigned NumRelocs, unsigned char* GOTBase);
|
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/ |
D | PPCJITInfo.h | 38 unsigned NumRelocs, unsigned char* GOTBase);
|
D | PPCJITInfo.cpp | 411 unsigned NumRelocs, unsigned char* GOTBase) { in relocate() argument 412 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { in relocate()
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
D | X86JITInfo.h | 67 unsigned NumRelocs, unsigned char* GOTBase);
|
D | X86JITInfo.cpp | 528 unsigned NumRelocs, unsigned char* GOTBase) { in relocate() argument 529 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { in relocate()
|
/external/swiftshader/third_party/LLVM/tools/llvm-objdump/ |
D | MachODump.cpp | 93 uint32_t NumRelocs; member 111 S.NumRelocs = Sect->NumRelocationTableEntries; in copySection() 419 for (unsigned j = 0; j != Sections[SectIdx].NumRelocs; ++j) { in DisassembleInputMachO()
|
/external/swiftshader/third_party/LLVM/lib/MC/ |
D | MachObjectWriter.cpp | 691 unsigned NumRelocs = Relocs.size(); in WriteObject() local 693 WriteSection(Asm, Layout, *it, SectionStart, RelocTableEnd, NumRelocs); in WriteObject() 694 RelocTableEnd += NumRelocs * macho::RelocationInfoSize; in WriteObject()
|
/external/llvm/lib/MC/ |
D | MachObjectWriter.cpp | 805 unsigned NumRelocs = Relocs.size(); in writeObject() local 811 RelocTableEnd, NumRelocs); in writeObject() 812 RelocTableEnd += NumRelocs * sizeof(MachO::any_relocation_info); in writeObject()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/ |
D | MachObjectWriter.cpp | 837 unsigned NumRelocs = Relocs.size(); in writeObject() local 843 RelocTableEnd, NumRelocs); in writeObject() 844 RelocTableEnd += NumRelocs * sizeof(MachO::any_relocation_info); in writeObject()
|
/external/llvm/lib/Object/ |
D | COFFObjectFile.cpp | 350 uint64_t NumRelocs = getNumberOfRelocations(Sec, M, Base); in getFirstReloc() local 351 if (!NumRelocs) in getFirstReloc() 360 if (checkOffset(M, uintptr_t(begin), sizeof(coff_relocation) * NumRelocs)) in getFirstReloc()
|