Searched defs:MemoryArea (Results 1 - 2 of 2) sorted by last modified time

/frameworks/compile/mclinker/include/mcld/Support/
H A DMemoryArea.h1 //===- MemoryArea.h -------------------------------------------------------===//
38 /** \class MemoryArea
39 * \brief MemoryArea is used to manage distinct MemoryRegions of address space.
42 * In MCLinker, MemoryArea is the decision-maker to use memory mapped I/O or
43 * dynamic memory. When a client requests MemoryArea for a piece of memory
44 * to hold a part of a file, MemoryArea is going to see whether the requested
46 * before. If it is, MemoryArea creates a new MemoryRegion within the memory
47 * requested before. Otherwise, MemoryArea uses memory mapped I/O or dynamic
50 * If the part a file being loaded is larger than 3/4 pages, MemoryArea uses
51 * memory mapped I/O to load the file. Otherwise, MemoryArea use
54 class MemoryArea : private Uncopyable class in namespace:mcld
[all...]
/frameworks/compile/mclinker/lib/Support/
H A DMemoryArea.cpp1 //===- MemoryArea.cpp -----------------------------------------------------===//
10 #include <mcld/Support/MemoryArea.h>
18 // MemoryArea
21 // MemoryArea - special constructor
24 MemoryArea::MemoryArea(RegionFactory& pRegionFactory, Space& pUniverse) function in class:MemoryArea
29 MemoryArea::MemoryArea(RegionFactory& pRegionFactory, FileHandle& pFileHandle) function in class:MemoryArea
33 MemoryArea::~MemoryArea()
[all...]

Completed in 5 milliseconds