Searched refs:EntrySize (Results 1 – 13 of 13) sorted by relevance
/frameworks/compile/mclinker/lib/Target/AArch64/ |
D | AArch64PLT.cpp | 72 data = static_cast<uint32_t*>(malloc(AArch64PLT0::EntrySize)); in applyPLT0() 75 memcpy(data, aarch64_plt0, AArch64PLT0::EntrySize); in applyPLT0() 85 uint64_t got_ent2_base = got_base + sizeof(AArch64GOTEntry::EntrySize) * 2; in applyPLT0() 89 helper_get_page_address(plt_base + (sizeof(AArch64PLT0::EntrySize) * 8)); in applyPLT0() 111 uint32_t GOTEntrySize = AArch64GOTEntry::EntrySize; in applyPLT1() 115 uint32_t PLTEntryAddress = plt_base + AArch64PLT0::EntrySize; in applyPLT1() 118 uint32_t PLT1EntrySize = AArch64PLT1::EntrySize; in applyPLT1() 124 Out = static_cast<uint32_t*>(malloc(AArch64PLT1::EntrySize)); in applyPLT1() 125 memcpy(Out, aarch64_plt1, AArch64PLT1::EntrySize); in applyPLT1() 154 AArch64PLT0::EntrySize); in emit() [all …]
|
D | AArch64GOT.cpp | 126 result += AArch64GOTEntry::EntrySize; in emit()
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
D | ARMPLT.cpp | 84 data = static_cast<uint32_t*>(malloc(ARMPLT0::EntrySize)); in applyPLT0() 89 memcpy(data, arm_plt0, ARMPLT0::EntrySize); in applyPLT0() 106 uint32_t GOTEntrySize = ARMGOTEntry::EntrySize; in applyPLT1() 109 uint64_t PLTEntryAddress = plt_base + ARMPLT0::EntrySize; // Offset of PLT0 in applyPLT1() 112 uint64_t PLT1EntrySize = ARMPLT1::EntrySize; in applyPLT1() 118 Out = static_cast<uint32_t*>(malloc(ARMPLT1::EntrySize)); in applyPLT1() 146 memcpy(buffer, llvm::cast<ARMPLT0>((*it)).getValue(), ARMPLT0::EntrySize); in emit() 147 result += ARMPLT0::EntrySize; in emit() 154 memcpy(buffer + result, plt1->getValue(), ARMPLT1::EntrySize); in emit() 155 result += ARMPLT1::EntrySize; in emit()
|
D | ARMGOT.cpp | 123 result += ARMGOTEntry::EntrySize; in emit()
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
D | HexagonPLT.cpp | 130 uint32_t GOTEntrySize = HexagonGOTEntry::EntrySize; in applyPLT1() 134 plt_base + HexagonPLT0::EntrySize; // Offset of PLT0 in applyPLT1() 137 uint64_t PLT1EntrySize = HexagonPLT1::EntrySize; in applyPLT1() 143 Out = static_cast<uint32_t*>(malloc(HexagonPLT1::EntrySize)); in applyPLT1() 175 HexagonPLT0::EntrySize); in emit() 176 result += HexagonPLT0::EntrySize; in emit() 183 memcpy(buffer + result, plt1->getValue(), HexagonPLT1::EntrySize); in emit() 184 result += HexagonPLT1::EntrySize; in emit()
|
D | HexagonLDBackend.cpp | 141 unsigned int EntrySize = 0; in emitSectionData() local 162 EntrySize = plt1->size(); in emitSectionData() 163 memcpy(buffer + RegionSize, plt1->getValue(), EntrySize); in emitSectionData() 164 RegionSize += EntrySize; in emitSectionData() 309 unsigned int EntrySize = HexagonGOTEntry::EntrySize; in emitGOTSectionData() local 316 RegionSize += EntrySize; in emitGOTSectionData() 358 unsigned int EntrySize = HexagonGOTEntry::EntrySize; in emitGOTPLTSectionData() local 366 RegionSize += EntrySize; in emitGOTPLTSectionData()
|
/frameworks/compile/mclinker/lib/Target/X86/ |
D | X86LDBackend.cpp | 166 unsigned int EntrySize = 0; in emitSectionData() local 185 EntrySize = plt1->size(); in emitSectionData() 186 memcpy(buffer + RegionSize, plt1->getValue(), EntrySize); in emitSectionData() 187 RegionSize += EntrySize; in emitSectionData() 474 unsigned int EntrySize = X86_32GOTEntry::EntrySize; in emitGOTSectionData() local 481 RegionSize += EntrySize; in emitGOTSectionData() 497 unsigned int EntrySize = X86_32GOTEntry::EntrySize; in emitGOTPLTSectionData() local 505 RegionSize += EntrySize; in emitGOTPLTSectionData() 659 unsigned int EntrySize = X86_64GOTEntry::EntrySize; in emitGOTSectionData() local 666 RegionSize += EntrySize; in emitGOTSectionData() [all …]
|
D | X86PLT.cpp | 171 uint64_t GOTEntrySize = X86_32GOTEntry::EntrySize; in applyPLT1() 254 uint64_t GOTEntrySize = X86_64GOTEntry::EntrySize; in applyPLT1()
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
D | MipsPLT.cpp | 84 memcpy(buffer, llvm::cast<MipsPLT0>((*it)).getValue(), MipsPLT0::EntrySize); in emit() 85 result += MipsPLT0::EntrySize; in emit() 91 memcpy(buffer + result, plta->getValue(), MipsPLTA::EntrySize); in emit() 92 result += MipsPLTA::EntrySize; in emit()
|
D | MipsGOTPLT.cpp | 60 return addr() + (MipsGOTPLT0Num + num) * GOTPLTEntry::EntrySize; in getEntryAddr()
|
D | MipsGOT.cpp | 396 return Mips32GOTEntry::EntrySize; in getEntrySize() 431 return Mips64GOTEntry::EntrySize; in getEntrySize()
|
/frameworks/compile/mclinker/include/mcld/Target/ |
D | GOT.h | 36 enum { EntrySize = SIZE }; enumerator 49 size_t size() const { return EntrySize; } in size()
|
D | PLT.h | 53 enum { EntrySize = SIZE }; enumerator 60 size_t size() const { return EntrySize; } in size()
|