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

  /frameworks/compile/mclinker/lib/Target/ARM/
ARMPLT.cpp 88 // This will skip PLT0.
116 // This will skip PLT0.
139 ARMPLT0* plt0 = &(llvm::cast<ARMPLT0>(*first)); local
141 return plt0;
164 ARMPLT0* plt0 = &(llvm::cast<ARMPLT0>(*first)); local
167 data = static_cast<uint32_t*>(malloc(plt0->getEntrySize()));
170 llvm::report_fatal_error("Allocating new memory for plt0 failed!");
172 memcpy(data, arm_plt0, plt0->getEntrySize());
175 plt0->setContent(reinterpret_cast<unsigned char*>(data));
195 plt_base + llvm::cast<ARMPLT0>((*it)).getEntrySize(); //Offset of PLT0
    [all...]
  /frameworks/compile/mclinker/lib/Target/X86/
X86PLT.cpp 28 0xe9, 0, 0, 0, 0 // jmp plt0
40 0xe9, 0, 0, 0, 0 // jmp plt0
124 // This will skip PLT0.
149 // This will skip PLT0.
169 X86PLT0* plt0 = &(llvm::cast<X86PLT0>(*first)); local
171 return plt0;
182 X86PLT0* plt0 = &(llvm::cast<X86PLT0>(*first)); local
185 data = static_cast<unsigned char*>(malloc(plt0->getEntrySize()));
188 llvm::report_fatal_error("Allocating new memory for plt0 failed!");
190 memcpy(data, m_PLT0, plt0->getEntrySize())
    [all...]

Completed in 360 milliseconds