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

/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64PLT.cpp69 // malloc plt0
73 AArch64PLT0* plt0 = &(llvm::cast<AArch64PLT0>(*first)); local
80 // apply plt0
99 plt0->setValue(reinterpret_cast<unsigned char*>(data));
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMPLT.cpp86 ARMPLT0* plt0 = &(llvm::cast<ARMPLT0>(*first)); local
97 plt0->setValue(reinterpret_cast<unsigned char*>(data));
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonPLT.cpp66 PLTEntryBase* plt0 = &(llvm::cast<PLTEntryBase>(*first)); local
68 return plt0;
74 // plt0 size
107 PLTEntryBase* plt0 = getPLT0(); local
111 data = static_cast<unsigned char*>(malloc(plt0->size()));
116 memcpy(data, m_PLT0, plt0->size());
127 plt0->setValue(data);
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86PLT.cpp101 // plt0 size
142 PLTEntryBase* plt0 = &(llvm::cast<PLTEntryBase>(*first)); local
144 return plt0;
160 PLTEntryBase* plt0 = getPLT0(); local
163 data = static_cast<unsigned char*>(malloc(plt0->size()));
168 memcpy(data, m_PLT0, plt0->size());
177 plt0->setValue(data);
246 PLTEntryBase* plt0 = getPLT0(); local
249 data = static_cast<unsigned char*>(malloc(plt0->size()));
254 memcpy(data, m_PLT0, plt0
[all...]

Completed in 48 milliseconds