Home
last modified time | relevance | path

Searched refs:plt1 (Results 1 – 3 of 3) sorted by relevance

/frameworks/compile/mclinker/lib/Target/X86/
DX86PLT.cpp113 PLTEntryBase* plt1 = &(llvm::cast<PLTEntryBase>(*it)); in finalizeSectionSize() local
114 size += (m_SectionData->size() - 1) * plt1->size(); in finalizeSectionSize()
221 PLTEntryBase* plt1 = 0; in applyPLT1() local
226 plt1 = &(llvm::cast<PLTEntryBase>(*it)); in applyPLT1()
228 data = static_cast<unsigned char*>(malloc(plt1->size())); in applyPLT1()
233 memcpy(data, m_PLT1, plt1->size()); in applyPLT1()
249 plt1->setValue(data); in applyPLT1()
311 PLTEntryBase* plt1 = 0; in applyPLT1() local
316 plt1 = &(llvm::cast<PLTEntryBase>(*it)); in applyPLT1()
318 data = static_cast<unsigned char*>(malloc(plt1->size())); in applyPLT1()
[all …]
DX86LDBackend.cpp278 PLTEntryBase* plt1 = 0; in emitSectionData() local
281 plt1 = &(llvm::cast<PLTEntryBase>(*it)); in emitSectionData()
282 EntrySize = plt1->size(); in emitSectionData()
283 memcpy(buffer + RegionSize, plt1->getValue(), EntrySize); in emitSectionData()
/frameworks/compile/mclinker/lib/Target/ARM/
DARMPLT.cpp151 ARMPLT1* plt1 = NULL; in applyPLT1() local
155 plt1 = &(llvm::cast<ARMPLT1>(*it)); in applyPLT1()
169 plt1->setValue(reinterpret_cast<unsigned char*>(Out)); in applyPLT1()
189 ARMPLT1* plt1 = 0; in emit() local
192 plt1 = &(llvm::cast<ARMPLT1>(*it)); in emit()
193 memcpy(buffer + result, plt1->getValue(), ARMPLT1::EntrySize); in emit()