Home
last modified time | relevance | path

Searched refs:GOTBase (Results 1 – 11 of 11) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
DJITMemoryManager.cpp296 uint8_t *GOTBase; // Target Specific reserved memory member in __anone29d22b10211::DefaultJITMemoryManager
465 return GOTBase; in getGOTBase()
593 GOTBase = NULL; in DefaultJITMemoryManager()
597 assert(GOTBase == 0 && "Cannot allocate the got multiple times"); in AllocateGOT()
598 GOTBase = new uint8_t[sizeof(void*) * 8192]; in AllocateGOT()
606 delete[] GOTBase; in ~DefaultJITMemoryManager()
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
DMipsJITInfo.h60 unsigned NumRelocs, unsigned char* GOTBase);
DMipsJITInfo.cpp196 unsigned NumRelocs, unsigned char* GOTBase) { in relocate() argument
/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
/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
/external/swiftshader/third_party/LLVM/include/llvm/Target/
DTargetJITInfo.h108 unsigned NumRelocs, unsigned char* GOTBase) { in relocate() argument
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DARMJITInfo.h81 unsigned NumRelocs, unsigned char* GOTBase);
DARMJITInfo.cpp268 unsigned NumRelocs, unsigned char* GOTBase) { in relocate() argument
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp321 uint64_t GOTBase = 0; in resolveX86_64Relocation() local
324 GOTBase = Section.getLoadAddressWithOffset(0); in resolveX86_64Relocation()
328 assert(GOTBase != 0 && "missing GOT"); in resolveX86_64Relocation()
329 int64_t GOTOffset = Value - GOTBase + Addend; in resolveX86_64Relocation()