Searched refs:pRegion (Results 1 - 25 of 48) sorted by path

12

/frameworks/compile/mclinker/include/mcld/Fragment/
H A DRegionFragment.h23 explicit RegionFragment(llvm::StringRef pRegion, SectionData* pSD = NULL);
/frameworks/compile/mclinker/include/mcld/LD/
H A DDebugString.h46 void emit(MemoryRegion& pRegion);
H A DELFObjectWriter.h73 void emitSectionData(const LDSection& pSection, MemoryRegion& pRegion) const;
77 MemoryRegion& pRegion) const;
81 MemoryRegion& pRegion) const;
87 MemoryRegion& pRegion) const;
93 MemoryRegion& pRegion) const;
112 void emitSectionData(const SectionData& pSD, MemoryRegion& pRegion) const;
H A DELFReader.h74 llvm::StringRef pRegion,
86 llvm::StringRef pRegion) const;
91 llvm::StringRef pRegion) const;
159 llvm::StringRef pRegion,
171 llvm::StringRef pRegion) const;
176 llvm::StringRef pRegion) const;
H A DELFReaderIf.h65 llvm::StringRef pRegion,
77 llvm::StringRef pRegion) const = 0;
82 llvm::StringRef pRegion) const = 0;
H A DEhFrame.h61 explicit Record(llvm::StringRef pRegion);
81 explicit CIE(llvm::StringRef pRegion);
139 FDE(llvm::StringRef pRegion, CIE& pCIE);
153 explicit GeneratedCIE(llvm::StringRef pRegion);
162 GeneratedFDE(llvm::StringRef pRegion, CIE& pCIE);
H A DEhFrameReader.h57 /// @param pRegion - the memory region that needs to handle with.
59 llvm::StringRef pRegion,
70 llvm::StringRef pRegion,
74 llvm::StringRef pRegion,
78 llvm::StringRef pRegion,
82 llvm::StringRef pRegion,
H A DMergedStringTable.h41 void emit(MemoryRegion& pRegion);
/frameworks/compile/mclinker/include/mcld/Support/
H A DFileOutputBuffer.h59 FileOutputBuffer(llvm::sys::fs::mapped_file_region* pRegion,
/frameworks/compile/mclinker/include/mcld/Target/
H A DELFAttribute.h64 size_t emit(MemoryRegion& pRegion) const;
H A DELFDynamic.h154 void emit(const LDSection& pSection, MemoryRegion& pRegion) const;
H A DGNULDBackend.h119 MemoryRegion& pRegion) const = 0;
/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/LD/
H A DDebugString.cpp86 void DebugString::emit(MemoryRegion& pRegion) { argument
87 return m_StringTable.emit(pRegion);
H A DELFObjectWriter.cpp382 MemoryRegion& pRegion) const {
397 emitSectionData(*sd, pRegion);
403 MemoryRegion& pRegion) const {
404 emitSectionData(*pFrame.getSectionData(), pRegion);
425 memcpy(pRegion.begin() + fde.getOffset() +
430 memcpy(pRegion.begin() + fde.getOffset() +
442 memcpy(pRegion.begin() + fde_cie_ptr_offset, &offset, 4);
450 MemoryRegion& pRegion) const {
456 emitRel<32>(pConfig, *sect_data, pRegion);
458 emitRel<64>(pConfig, *sect_data, pRegion);
[all...]
H A DELFReader.cpp67 llvm::StringRef pRegion,
70 size_t entsize = pRegion.size() / sizeof(llvm::ELF::Elf32_Sym);
72 reinterpret_cast<const llvm::ELF::Elf32_Sym*>(pRegion.begin());
206 llvm::StringRef pRegion) const {
208 size_t entsize = pRegion.size() / sizeof(llvm::ELF::Elf32_Rela);
210 reinterpret_cast<const llvm::ELF::Elf32_Rela*>(pRegion.begin());
235 llvm::StringRef pRegion) const {
237 size_t entsize = pRegion.size() / sizeof(llvm::ELF::Elf32_Rel);
239 reinterpret_cast<const llvm::ELF::Elf32_Rel*>(pRegion.begin());
567 llvm::StringRef pRegion,
65 readSymbols(Input& pInput, IRBuilder& pBuilder, llvm::StringRef pRegion, const char* pStrTab) const argument
565 readSymbols(Input& pInput, IRBuilder& pBuilder, llvm::StringRef pRegion, const char* pStrTab) const argument
[all...]
H A DEhFrame.cpp33 EhFrame::Record::Record(llvm::StringRef pRegion) : RegionFragment(pRegion) { argument
43 EhFrame::CIE::CIE(llvm::StringRef pRegion) argument
44 : EhFrame::Record(pRegion),
57 EhFrame::FDE::FDE(llvm::StringRef pRegion, EhFrame::CIE& pCIE) argument
58 : EhFrame::Record(pRegion), m_pCIE(&pCIE) {
72 EhFrame::GeneratedCIE::GeneratedCIE(llvm::StringRef pRegion) argument
73 : EhFrame::CIE(pRegion) {
82 EhFrame::GeneratedFDE::GeneratedFDE(llvm::StringRef pRegion, CIE& pCIE) argument
83 : EhFrame::FDE(pRegion, pCI
[all...]
H A DEhFrameReader.cpp166 llvm::StringRef pRegion,
169 ConstAddress handler = pRegion.begin() + pToken.data_off;
170 ConstAddress cie_end = pRegion.end();
209 EhFrame::CIE* cie = new EhFrame::CIE(pRegion);
319 EhFrame::CIE* cie = new EhFrame::CIE(pRegion);
330 llvm::StringRef pRegion,
332 if (pToken.data_off == pRegion.size())
336 *(const int32_t*)(pRegion.begin() + pToken.data_off - 4);
345 EhFrame::FDE* fde = new EhFrame::FDE(pRegion, *iter->second);
351 llvm::StringRef pRegion,
165 addCIE(EhFrame& pEhFrame, llvm::StringRef pRegion, const EhFrameReader::Token& pToken) argument
329 addFDE(EhFrame& pEhFrame, llvm::StringRef pRegion, const EhFrameReader::Token& pToken) argument
350 addTerm(EhFrame& pEhFrame, llvm::StringRef pRegion, const EhFrameReader::Token& pToken) argument
356 reject(EhFrame& pEhFrame, llvm::StringRef pRegion, const EhFrameReader::Token& pToken) argument
[all...]
H A DMergedStringTable.cpp28 void MergedStringTable::emit(MemoryRegion& pRegion) { argument
29 char* ptr = reinterpret_cast<char*>(pRegion.begin());
/frameworks/compile/mclinker/lib/Support/
H A DFileOutputBuffer.cpp15 FileOutputBuffer::FileOutputBuffer(llvm::sys::fs::mapped_file_region* pRegion, argument
17 : m_pRegion(pRegion), m_FileHandle(pFileHandle) {
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64GOT.cpp118 uint64_t AArch64GOT::emit(MemoryRegion& pRegion) { argument
119 uint64_t* buffer = reinterpret_cast<uint64_t*>(pRegion.begin());
H A DAArch64GOT.h70 uint64_t emit(MemoryRegion& pRegion);
H A DAArch64LDBackend.cpp264 MemoryRegion& pRegion) const {
265 assert(pRegion.size() && "Size of MemoryRegion is zero!");
270 uint64_t result = m_pPLT->emit(pRegion);
275 uint64_t result = m_pGOT->emit(pRegion);
280 uint64_t result = m_pGOT->emit(pRegion);
285 return pRegion.size();
H A DAArch64LDBackend.h77 /// @param pRegion - the region to write out data
80 MemoryRegion& pRegion) const;
H A DAArch64PLT.cpp147 uint64_t AArch64PLT::emit(MemoryRegion& pRegion) { argument
151 unsigned char* buffer = pRegion.begin();

Completed in 361 milliseconds

12