Searched defs:MemoryArea (Results 1 - 2 of 2) sorted by relevance

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

Completed in 132 milliseconds