Searched refs:pRegion (Results 1 - 25 of 30) sorted by relevance

12

/frameworks/compile/mclinker/lib/LD/
H A DRegionFragment.cpp17 RegionFragment::RegionFragment(MemoryRegion& pRegion, SectionData* pSD) argument
18 : Fragment(Fragment::Region, pSD), m_Region(pRegion) {
H A DCIE.cpp17 CIE::CIE(MemoryRegion& pRegion, uint8_t pFDEEncode) argument
18 : RegionFragment(pRegion), m_FDEEncoding(pFDEEncode) {
H A DFDE.cpp18 FDE::FDE(MemoryRegion& pRegion, const CIE& pCIE, Offset pPCBeginOffset) argument
19 : RegionFragment(pRegion), m_CIE(pCIE), m_PCBeginOffset(pPCBeginOffset) {
H A DEhFrame.cpp147 bool EhFrame::addCIE(MemoryRegion& pRegion, argument
151 ConstAddress cie_start = pRegion.start();
152 ConstAddress cie_end = pRegion.end();
290 note(diag::note_eh_cie) << pRegion.size()
295 CIE* entry = new CIE(pRegion, fde_encoding);
301 bool EhFrame::addFDE(MemoryRegion& pRegion, argument
305 ConstAddress fde_start = pRegion.start();
306 ConstAddress fde_end = pRegion.end();
318 note(diag::note_eh_fde) << pRegion.size() << pc_offset;
320 FDE* entry = new FDE(pRegion, **(m_CIE
[all...]
H A DELFWriter.cpp402 MemoryRegion& pRegion) const
413 memcpy(pRegion.getBuffer(cur_offset), from, size);
422 std::memset(pRegion.getBuffer(cur_offset),
443 std::memset(pRegion.getBuffer(cur_offset),
467 MemoryRegion& pRegion) const
473 emitRel(pLayout, pOutput, *sect_data, pRegion);
475 emitRela(pLayout, pOutput, *sect_data, pRegion);
485 MemoryRegion& pRegion) const
487 Elf32_Rel* rel = reinterpret_cast<Elf32_Rel*>(pRegion.start());
524 MemoryRegion& pRegion) cons
[all...]
/frameworks/compile/mclinker/lib/Support/
H A DRegionFactory.cpp35 void RegionFactory::destruct(MemoryRegion* pRegion) argument
37 pRegion->parent()->removeRegion(*pRegion);
38 destroy(pRegion);
39 deallocate(pRegion);
H A DMemoryArea.cpp78 void MemoryArea::release(MemoryRegion* pRegion) argument
80 if (NULL == pRegion)
83 Space *space = pRegion->parent();
84 m_RegionFactory.destruct(pRegion);
/frameworks/compile/mclinker/include/mcld/LD/
H A DCIE.h28 explicit CIE(MemoryRegion& pRegion, uint8_t pFDEEncode);
H A DELFWriter.h84 MemoryRegion& pRegion) const;
89 MemoryRegion& pRegion) const;
94 MemoryRegion& pRegion) const;
99 MemoryRegion& pRegion) const;
H A DFDE.h32 FDE(MemoryRegion& pRegion, const CIE& pCIE, Offset pPCBeginOffset);
H A DRegionFragment.h28 RegionFragment(MemoryRegion& pRegion, SectionData* pSD = NULL);
H A DELFReader.h88 const MemoryRegion& pRegion,
102 const MemoryRegion& pRegion) const = 0;
108 const MemoryRegion& pRegion) const = 0;
212 const MemoryRegion& pRegion,
226 const MemoryRegion& pRegion) const;
232 const MemoryRegion& pRegion) const;
/frameworks/compile/mclinker/include/mcld/Support/
H A DRegionFactory.h40 void destruct(MemoryRegion* pRegion);
H A DSpace.h77 void addRegion(MemoryRegion& pRegion) argument
80 void removeRegion(MemoryRegion& pRegion) argument
H A DMemoryArea.h83 void release(MemoryRegion* pRegion);
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMGOT.h53 uint64_t emit(MemoryRegion& pRegion);
H A DARMPLT.h71 uint64_t emit(MemoryRegion& pRegion);
H A DARMGOT.cpp171 uint64_t ARMGOT::emit(MemoryRegion& pRegion) argument
173 uint32_t* buffer = reinterpret_cast<uint32_t*>(pRegion.getBuffer());
H A DARMPLT.cpp229 uint64_t ARMPLT::emit(MemoryRegion& pRegion) argument
235 unsigned char* buffer = pRegion.getBuffer();
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOT.h47 uint64_t emit(MemoryRegion& pRegion);
H A DMipsGOT.cpp77 uint64_t MipsGOT::emit(MemoryRegion& pRegion) argument
79 uint32_t* buffer = reinterpret_cast<uint32_t*>(pRegion.getBuffer());
H A DMipsLDBackend.h117 /// @param pRegion - the region to write out data
123 MemoryRegion& pRegion) const;
/frameworks/compile/mclinker/include/mcld/Target/
H A DELFDynamic.h144 void emit(const LDSection& pSection, MemoryRegion& pRegion) const;
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86LDBackend.h129 /// @param pRegion - the region to write out data
135 MemoryRegion& pRegion) const;
H A DX86LDBackend.cpp521 MemoryRegion& pRegion) const
523 assert(pRegion.size() && "Size of MemoryRegion is zero!");
535 unsigned char* buffer = pRegion.getBuffer();
561 uint32_t* buffer = reinterpret_cast<uint32_t*>(pRegion.getBuffer());
578 uint32_t* buffer = reinterpret_cast<uint32_t*>(pRegion.getBuffer());

Completed in 172 milliseconds

12