Searched defs:plt0 (Results 1 - 4 of 4) sorted by relevance

/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64PLT.cpp66 // malloc plt0
70 AArch64PLT0* plt0 = &(llvm::cast<AArch64PLT0>(*first)); local
77 // apply plt0
97 plt0->setValue(reinterpret_cast<unsigned char*>(data));
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMPLT.cpp81 ARMPLT0* plt0 = &(llvm::cast<ARMPLT0>(*first)); local
92 plt0->setValue(reinterpret_cast<unsigned char*>(data));
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86PLT.cpp89 // plt0 size
127 PLTEntryBase* plt0 = &(llvm::cast<PLTEntryBase>(*first)); local
129 return plt0;
143 PLTEntryBase* plt0 = getPLT0(); local
146 data = static_cast<unsigned char*>(malloc(plt0->size()));
151 memcpy(data, m_PLT0, plt0->size());
160 plt0->setValue(data);
226 PLTEntryBase* plt0 = getPLT0(); local
229 data = static_cast<unsigned char*>(malloc(plt0->size()));
234 memcpy(data, m_PLT0, plt0
[all...]
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonPLT.cpp59 PLTEntryBase* plt0 = &(llvm::cast<PLTEntryBase>(*first)); local
61 return plt0;
66 // plt0 size
96 PLTEntryBase* plt0 = getPLT0(); local
100 data = static_cast<unsigned char*>(malloc(plt0->size()));
105 memcpy(data, m_PLT0, plt0->size());
116 plt0->setValue(data);

Completed in 444 milliseconds