HomeSort by relevance Sort by last modified time
    Searched refs:plt1 (Results 1 - 3 of 3) sorted by null

  /frameworks/compile/mclinker/lib/Target/X86/
X86PLT.cpp 108 // get first plt1 entry
112 // plt1 size
113 PLTEntryBase* plt1 = &(llvm::cast<PLTEntryBase>(*it)); local
114 size += (m_SectionData->size() - 1) * plt1->size();
221 PLTEntryBase* plt1 = 0; local
226 plt1 = &(llvm::cast<PLTEntryBase>(*it));
228 data = static_cast<unsigned char*>(malloc(plt1->size()));
233 memcpy(data, m_PLT1, plt1->size());
249 plt1->setValue(data);
298 // compute sym@GOTPCREL of the PLT1 entry
311 PLTEntryBase* plt1 = 0; local
    [all...]
X86LDBackend.cpp 278 PLTEntryBase* plt1 = 0; local
281 plt1 = &(llvm::cast<PLTEntryBase>(*it));
282 EntrySize = plt1->size();
283 memcpy(buffer + RegionSize, plt1->getValue(), EntrySize);
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMPLT.cpp 151 ARMPLT1* plt1 = NULL; local
155 plt1 = &(llvm::cast<ARMPLT1>(*it));
169 plt1->setValue(reinterpret_cast<unsigned char*>(Out));
189 ARMPLT1* plt1 = 0; local
192 plt1 = &(llvm::cast<ARMPLT1>(*it));
193 memcpy(buffer + result, plt1->getValue(), ARMPLT1::EntrySize);

Completed in 481 milliseconds