Home
last modified time | relevance | path

Searched refs:MemoryArea (Results 1 – 25 of 60) sorted by relevance

123

/frameworks/compile/mclinker/lib/Support/
DMemoryAreaFactory.cpp20 : GCFactory<MemoryArea, 0>(pNum) { in MemoryAreaFactory()
34 MemoryArea*
47 MemoryArea* result = allocate(); in produce()
48 new (result) MemoryArea(*handler); in produce()
57 MemoryArea*
71 MemoryArea* result = allocate(); in produce()
72 new (result) MemoryArea(*handler); in produce()
81 MemoryArea* MemoryAreaFactory::produce(void* pMemBuffer, size_t pSize) in produce()
84 MemoryArea* result = allocate(); in produce()
85 new (result) MemoryArea(*space); in produce()
[all …]
DMemoryArea.cpp23 MemoryArea::MemoryArea(Space& pUniverse) in MemoryArea() function in MemoryArea
29 MemoryArea::MemoryArea(FileHandle& pFileHandle) in MemoryArea() function in MemoryArea
33 MemoryArea::~MemoryArea() in ~MemoryArea()
54 MemoryRegion* MemoryArea::request(size_t pOffset, size_t pLength) in request()
78 void MemoryArea::release(MemoryRegion* pRegion) in release()
114 void MemoryArea::clear() in clear()
142 Space* MemoryArea::find(size_t pOffset, size_t pLength) in find()
151 const Space* MemoryArea::find(size_t pOffset, size_t pLength) const in find()
/frameworks/compile/mclinker/include/mcld/Support/
DHandleToArea.h24 class MemoryArea; variable
43 MemoryArea* area;
60 Result(FileHandle* pHandle, MemoryArea* pArea) in Result()
65 MemoryArea* area;
70 ConstResult(const FileHandle* pHandle, const MemoryArea* pArea) in ConstResult()
75 const MemoryArea* area;
79 bool push_back(FileHandle* pHandle, MemoryArea* pArea);
81 bool erase(MemoryArea* pArea);
DMemoryAreaFactory.h41 class MemoryAreaFactory : public GCFactory<MemoryArea, 0>
49 MemoryArea* produce(const sys::fs::Path& pPath,
53 MemoryArea* produce(const sys::fs::Path& pPath,
59 MemoryArea* produce(void* pMemBuffer, size_t pSize);
63 MemoryArea* produce(int pFD, FileHandle::OpenMode pMode);
65 void destruct(MemoryArea* pArea);
Draw_mem_ostream.h20 class MemoryArea; variable
26 explicit raw_mem_ostream(MemoryArea &pMemoryArea);
30 MemoryArea& getMemoryArea() { in getMemoryArea()
44 MemoryArea& m_MemoryArea;
DMemoryArea.h47 class MemoryArea : private Uncopyable
55 explicit MemoryArea(FileHandle& pFileHandle);
60 explicit MemoryArea(Space& pUniverse);
63 ~MemoryArea();
DToolOutputFile.h26 class MemoryArea; variable
52 MemoryArea& memory();
76 MemoryArea* m_pMemoryArea;
/frameworks/compile/mclinker/include/mcld/LD/
DELFObjectWriter.h31 class MemoryArea; variable
49 llvm::error_code writeObject(Module& pModule, MemoryArea& pOutput);
52 void writeSection(MemoryArea& pOutput, LDSection *section);
62 MemoryArea& pOutput) const;
71 MemoryArea& pOutput) const;
75 void emitProgramHeader(MemoryArea& pOutput) const;
80 MemoryArea& pOutput);
DEhFrameHdr.h21 class MemoryArea; variable
50 void emitOutput(MemoryArea& pOutput) in emitOutput()
71 void EhFrameHdr::emitOutput<32>(MemoryArea& pOutput);
74 void EhFrameHdr::emitOutput<64>(MemoryArea& pOutput);
DObjectWriter.h19 class MemoryArea; variable
32 virtual llvm::error_code writeObject(Module& pModule, MemoryArea& pOutput) = 0;
/frameworks/compile/mclinker/include/mcld/Fragment/
DFragmentLinker.h33 class MemoryArea; variable
54 void syncRelocationResult(MemoryArea& pOutput);
59 void normalSyncRelocationResult(MemoryArea& pOutput);
63 void partialSyncRelocationResult(MemoryArea& pOutput);
/frameworks/compile/mclinker/unittests/
DMCRegionFragmentTest.cpp49 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite); in TEST_F()
64 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite); in TEST_F()
DMemoryAreaTest.cpp54 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly); in TEST_F()
68 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly); in TEST_F()
96 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly) ; in TEST_F()
112 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadWrite); in TEST_F()
140 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadWrite) ; in TEST_F()
DMemoryAreaTest.h16 class MemoryArea; variable
44 mcld::MemoryArea* m_pTestee;
DUniqueGCFactoryBaseTest.cpp79 MemoryArea* area1 = memFactory->produce(path1, FileHandle::ReadOnly); in TEST_F()
80 MemoryArea* area2 = memFactory->produce(path2, FileHandle::ReadOnly); in TEST_F()
83 MemoryArea* area3 = memFactory->produce(path1, FileHandle::ReadOnly); in TEST_F()
/frameworks/compile/mclinker/include/mcld/MC/
DMCLDInput.h23 class MemoryArea; variable
106 void setMemArea(MemoryArea* pMemArea) in setMemArea()
112 const MemoryArea* memArea() const { return m_pMemArea; } in memArea()
113 MemoryArea* memArea() { return m_pMemArea; } in memArea()
132 MemoryArea* m_pMemArea;
/frameworks/compile/libbcc/include/bcc/Support/
DMemoryFactory.h24 class MemoryArea; variable
37 mcld::MemoryArea* produce(void *pMemBuffer, size_t pSize) in produce()
40 mcld::MemoryArea* produce(int pFD) in produce()
/frameworks/compile/mclinker/include/mcld/CodeGen/
DMCLinker.h31 class MemoryArea; variable
57 MemoryArea& pOutput);
74 MemoryArea& m_Output;
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagonELFMCLinker.h19 class MemoryArea; variable
31 MemoryArea& pOutput);
/frameworks/compile/mclinker/lib/Target/Mips/
DMipsELFMCLinker.h19 class MemoryArea; variable
29 MemoryArea& pOutput);
/frameworks/compile/mclinker/lib/Target/ARM/
DARMELFMCLinker.h19 class MemoryArea; variable
29 MemoryArea& pOutput);
/frameworks/compile/mclinker/lib/Target/X86/
DX86ELFMCLinker.h19 class MemoryArea; variable
31 MemoryArea& pOutput);
/frameworks/compile/mclinker/include/mcld/Object/
DObjectLinker.h28 class MemoryArea; variable
127 bool emitOutput(MemoryArea& pOutput);
130 bool postProcessing(MemoryArea& pOutput);
/frameworks/compile/mclinker/lib/Core/
DLinker.cpp211 bool Linker::emit(MemoryArea& pOutput) in emit()
236 MemoryArea* output = new MemoryArea(file); in emit()
249 MemoryArea* output = new MemoryArea(file); in emit()
/frameworks/compile/mclinker/include/mcld/
DLinker.h29 class MemoryArea; variable
54 bool emit(MemoryArea& pOutput);

123