/frameworks/compile/mclinker/include/mcld/MC/ |
InputFactory.h | 14 #include <mcld/Support/GCFactory.h> 32 class InputFactory : public GCFactory<Input,0> 35 typedef GCFactory<Input, 0> Alloc;
|
/frameworks/compile/mclinker/include/mcld/Support/ |
RegionFactory.h | 15 #include <mcld/Support/GCFactory.h> 26 class RegionFactory : public GCFactory<MemoryRegion, MCLD_REGION_CHUNK_SIZE> 29 typedef GCFactory<MemoryRegion, MCLD_REGION_CHUNK_SIZE> Alloc;
|
MemoryAreaFactory.h | 14 #include <mcld/Support/GCFactory.h> 41 class MemoryAreaFactory : public GCFactory<MemoryArea, 0>
|
GCFactory.h | 1 //===- GCFactory.h --------------------------------------------------------===// 206 /** \class GCFactory 207 * \brief GCFactory provides a factory that guaratees to remove all allocated 211 class GCFactory : public GCFactoryBase<LinearAllocator<DataType, ChunkSize> > 214 GCFactory() 220 class GCFactory<DataType, 0> : public GCFactoryBase<LinearAllocator<DataType, 0> > 223 GCFactory(size_t pNum)
|
/frameworks/compile/mclinker/include/mcld/LD/ |
BranchIslandFactory.h | 16 #include <mcld/Support/GCFactory.h> 28 class BranchIslandFactory : public GCFactory<BranchIsland, 0>
|
ELFSegmentFactory.h | 14 #include <mcld/Support/GCFactory.h> 23 class ELFSegmentFactory : public GCFactory<ELFSegment, 0>
|
RelocationFactory.h | 15 #include <mcld/Support/GCFactory.h> 28 class RelocationFactory : public GCFactory<Relocation, MCLD_RELOCATIONS_PER_INPUT>
|
NamePool.h | 21 #include <mcld/Support/GCFactory.h> 102 typedef GCFactory<ResolveInfo*, 128> FreeInfoSet;
|
Archive.h | 19 #include <mcld/Support/GCFactory.h> 245 typedef GCFactory<Symbol, 0> SymbolFactory;
|
/frameworks/compile/mclinker/lib/LD/ |
RelocData.cpp | 10 #include <mcld/Support/GCFactory.h> 16 typedef GCFactory<RelocData, MCLD_SECTIONS_PER_INPUT> RelocDataFactory;
|
SectionData.cpp | 12 #include <mcld/Support/GCFactory.h> 18 typedef GCFactory<SectionData, MCLD_SECTIONS_PER_INPUT> SectDataFactory;
|
LDSection.cpp | 11 #include <mcld/Support/GCFactory.h> 17 typedef GCFactory<LDSection, MCLD_SECTIONS_PER_INPUT> SectionFactory;
|
LDSymbol.cpp | 14 #include <mcld/Support/GCFactory.h> 22 typedef GCFactory<LDSymbol, MCLD_SYMBOLS_PER_INPUT> LDSymbolFactory;
|
BranchIslandFactory.cpp | 24 : GCFactory<BranchIsland, 0>(1u), // magic number
|
ELFSegmentFactory.cpp | 17 : GCFactory<ELFSegment, 0>(pNum)
|
RelocationFactory.cpp | 25 : GCFactory<Relocation, MCLD_RELOCATIONS_PER_INPUT>(), m_pConfig(NULL) { 88 /** GCFactory will recycle the relocation **/
|
EhFrame.cpp | 14 #include <mcld/Support/GCFactory.h> 20 typedef GCFactory<EhFrame, MCLD_SECTIONS_PER_INPUT> EhFrameFactory;
|
/frameworks/compile/mclinker/unittests/ |
GCFactoryListTraitsTest.h | 18 #include <mcld/Support/GCFactory.h> 60 class NodeFactory : public mcld::GCFactory<Node, 0> { 62 NodeFactory() : mcld::GCFactory<Node, 0>(16) { }
|
/frameworks/compile/mclinker/include/mcld/ADT/ |
TreeAllocator.h | 15 #include "mcld/Support/GCFactory.h" 32 class NodeFactory : public GCFactory<Node<DataType>, 64> 35 typedef GCFactory<Node<DataType>, 64> Alloc;
|
/frameworks/compile/mclinker/lib/MC/ |
InputFactory.cpp | 20 : GCFactory<Input,0>(pNum) {
|
/frameworks/compile/mclinker/include/mcld/Fragment/ |
FragmentGraph.h | 22 #include <mcld/Support/GCFactory.h> 42 typedef GCFactory<FGNode, MCLD_SECTIONS_PER_INPUT> NodeFactoryType;
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
MipsRelocator.h | 16 #include <mcld/Support/GCFactory.h>
|
/frameworks/compile/mclinker/lib/Fragment/ |
FragmentRef.cpp | 21 #include <mcld/Support/GCFactory.h> 28 typedef GCFactory<FragmentRef, MCLD_SECTIONS_PER_INPUT> FragRefFactory;
|
/frameworks/compile/mclinker/lib/Core/ |
Module.cpp | 21 static GCFactory<Module::AliasList, MCLD_SECTIONS_PER_INPUT> gc_aliaslist_factory;
|
/frameworks/compile/mclinker/lib/Support/ |
MemoryAreaFactory.cpp | 20 : GCFactory<MemoryArea, 0>(pNum) {
|