Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/include/llvm/Target/
DTargetJITInfo.h108 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/lib/Target/Mips/
DMipsJITInfo.cpp196 unsigned NumRelocs, unsigned char* GOTBase) { in relocate() argument
197 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { in relocate()
DMipsJITInfo.h60 unsigned NumRelocs, unsigned char* GOTBase);
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
DPPCJITInfo.h38 unsigned NumRelocs, unsigned char* GOTBase);
DPPCJITInfo.cpp411 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/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/swiftshader/third_party/LLVM/lib/Target/X86/
DX86JITInfo.h67 unsigned NumRelocs, unsigned char* GOTBase);
DX86JITInfo.cpp528 unsigned NumRelocs, unsigned char* GOTBase) { in relocate() argument
529 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) { in relocate()
/external/swiftshader/third_party/LLVM/lib/MC/
DMachObjectWriter.cpp691 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/swiftshader/third_party/LLVM/tools/llvm-objdump/
DMachODump.cpp93 uint32_t NumRelocs; member
111 S.NumRelocs = Sect->NumRelocationTableEntries; in copySection()
419 for (unsigned j = 0; j != Sections[SectIdx].NumRelocs; ++j) { in DisassembleInputMachO()
/external/llvm/lib/MC/
DMachObjectWriter.cpp805 unsigned NumRelocs = Relocs.size(); in writeObject() local
811 RelocTableEnd, NumRelocs); in writeObject()
812 RelocTableEnd += NumRelocs * sizeof(MachO::any_relocation_info); in writeObject()
/external/llvm/lib/Object/
DCOFFObjectFile.cpp350 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()