Searched defs:pRegion (Results 1 - 14 of 14) sorted by relevance

/frameworks/compile/mclinker/lib/Fragment/
H A DRegionFragment.cpp16 RegionFragment::RegionFragment(llvm::StringRef pRegion, SectionData* pSD) argument
17 : Fragment(Fragment::Region, pSD), m_Region(pRegion) {
/frameworks/compile/mclinker/lib/Support/
H A DFileOutputBuffer.cpp16 FileOutputBuffer::FileOutputBuffer(llvm::sys::fs::mapped_file_region* pRegion, argument
18 : m_pRegion(pRegion), m_FileHandle(pFileHandle)
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOTPLT.cpp38 uint64_t MipsGOTPLT::emit(MemoryRegion& pRegion) argument
40 uint32_t* buffer = reinterpret_cast<uint32_t*>(pRegion.begin());
H A DMipsPLT.cpp90 uint64_t MipsPLT::emit(MemoryRegion& pRegion) argument
95 unsigned char* buffer = pRegion.begin();
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64GOT.cpp128 uint64_t AArch64GOT::emit(MemoryRegion& pRegion) argument
130 uint64_t* buffer = reinterpret_cast<uint64_t*>(pRegion.begin());
H A DAArch64PLT.cpp150 uint64_t AArch64PLT::emit(MemoryRegion& pRegion) argument
155 unsigned char* buffer = pRegion.begin();
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMGOT.cpp123 uint64_t ARMGOT::emit(MemoryRegion& pRegion) argument
125 uint32_t* buffer = reinterpret_cast<uint32_t*>(pRegion.begin());
H A DARMPLT.cpp149 uint64_t ARMPLT::emit(MemoryRegion& pRegion) argument
154 unsigned char* buffer = pRegion.begin();
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonPLT.cpp181 uint64_t HexagonPLT::emit(MemoryRegion& pRegion) argument
186 unsigned char* buffer = pRegion.begin();
H A DHexagonLDBackend.cpp142 MemoryRegion& pRegion) const
144 if (!pRegion.size())
155 unsigned char* buffer = pRegion.begin();
178 RegionSize += emitGOTSectionData(pRegion);
183 RegionSize += emitGOTPLTSectionData(pRegion, FileFormat);
190 uint8_t* out_offset = pRegion.begin();
236 return pRegion.size();
329 HexagonLDBackend::emitGOTSectionData(MemoryRegion& pRegion) const
333 uint32_t* buffer = reinterpret_cast<uint32_t*>(pRegion.begin());
377 uint64_t HexagonLDBackend::emitGOTPLTSectionData(MemoryRegion& pRegion, argument
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DEhFrameReader.cpp172 llvm::StringRef pRegion,
176 ConstAddress handler = pRegion.begin() + pToken.data_off;
177 ConstAddress cie_end = pRegion.end();
216 EhFrame::CIE* cie = new EhFrame::CIE(pRegion);
326 EhFrame::CIE* cie = new EhFrame::CIE(pRegion);
337 llvm::StringRef pRegion,
340 if (pToken.data_off == pRegion.size())
343 const int32_t offset = *(const int32_t*) (pRegion.begin() + pToken.data_off
353 EhFrame::FDE* fde = new EhFrame::FDE(pRegion, *iter->second);
359 llvm::StringRef pRegion,
171 addCIE(EhFrame& pEhFrame, llvm::StringRef pRegion, const EhFrameReader::Token& pToken) argument
336 addFDE(EhFrame& pEhFrame, llvm::StringRef pRegion, const EhFrameReader::Token& pToken) argument
358 addTerm(EhFrame& pEhFrame, llvm::StringRef pRegion, const EhFrameReader::Token& pToken) argument
365 reject(EhFrame& pEhFrame, llvm::StringRef pRegion, const EhFrameReader::Token& pToken) argument
[all...]
H A DEhFrame.cpp32 EhFrame::Record::Record(llvm::StringRef pRegion) argument
33 : RegionFragment(pRegion) {
44 EhFrame::CIE::CIE(llvm::StringRef pRegion) argument
45 : EhFrame::Record(pRegion),
56 EhFrame::FDE::FDE(llvm::StringRef pRegion, EhFrame::CIE& pCIE) argument
57 : EhFrame::Record(pRegion), m_pCIE(&pCIE) {
73 EhFrame::GeneratedCIE::GeneratedCIE(llvm::StringRef pRegion) argument
74 : EhFrame::CIE(pRegion) {
84 EhFrame::GeneratedFDE::GeneratedFDE(llvm::StringRef pRegion, CIE &pCIE) argument
85 : EhFrame::FDE(pRegion, pCI
[all...]
H A DELFReader.cpp70 llvm::StringRef pRegion,
74 size_t entsize = pRegion.size()/sizeof(llvm::ELF::Elf32_Sym);
76 reinterpret_cast<const llvm::ELF::Elf32_Sym*>(pRegion.begin());
215 llvm::StringRef pRegion) const
218 size_t entsize = pRegion.size() / sizeof(llvm::ELF::Elf32_Rela);
220 reinterpret_cast<const llvm::ELF::Elf32_Rela*>(pRegion.begin());
243 llvm::StringRef pRegion) const
246 size_t entsize = pRegion.size() / sizeof(llvm::ELF::Elf32_Rel);
248 reinterpret_cast<const llvm::ELF::Elf32_Rel*>(pRegion.begin());
595 llvm::StringRef pRegion,
68 readSymbols(Input& pInput, IRBuilder& pBuilder, llvm::StringRef pRegion, const char* pStrTab) const argument
593 readSymbols(Input& pInput, IRBuilder& pBuilder, llvm::StringRef pRegion, const char* pStrTab) const argument
[all...]
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86LDBackend.cpp169 MemoryRegion& pRegion) const
171 assert(pRegion.size() && "Size of MemoryRegion is zero!");
181 unsigned char* buffer = pRegion.begin();
203 RegionSize += emitGOTSectionData(pRegion);
207 RegionSize += emitGOTPLTSectionData(pRegion, FileFormat);
509 uint64_t X86_32GNULDBackend::emitGOTSectionData(MemoryRegion& pRegion) const
513 uint32_t* buffer = reinterpret_cast<uint32_t*>(pRegion.begin());
529 uint64_t X86_32GNULDBackend::emitGOTPLTSectionData(MemoryRegion& pRegion, argument
536 uint32_t* buffer = reinterpret_cast<uint32_t*>(pRegion.begin());
709 uint64_t X86_64GNULDBackend::emitGOTSectionData(MemoryRegion& pRegion) cons
730 emitGOTPLTSectionData(MemoryRegion& pRegion, const ELFFileFormat* FileFormat) const argument
[all...]

Completed in 1406 milliseconds