HomeSort by relevance Sort by last modified time
    Searched refs:GCFactory (Results 1 - 25 of 28) sorted by null

1 2

  /frameworks/compile/mclinker/include/mcld/MC/
InputFactory.h 12 #include "mcld/Support/GCFactory.h"
29 class InputFactory : public GCFactory<Input, 0> {
31 typedef GCFactory<Input, 0> Alloc;
  /frameworks/compile/mclinker/include/mcld/LD/
BranchIslandFactory.h 13 #include "mcld/Support/GCFactory.h"
26 class BranchIslandFactory : public GCFactory<BranchIsland, 0> {
RelocationFactory.h 13 #include "mcld/Support/GCFactory.h"
26 : public GCFactory<Relocation, MCLD_RELOCATIONS_PER_INPUT> {
NamePool.h 18 #include "mcld/Support/GCFactory.h"
37 typedef GCFactory<ResolveInfo*, 128> FreeInfoSet;
  /frameworks/compile/mclinker/include/mcld/Support/
MemoryAreaFactory.h 12 #include "mcld/Support/GCFactory.h"
38 class MemoryAreaFactory : public GCFactory<MemoryArea, 0> {
GCFactory.h 1 //===- GCFactory.h --------------------------------------------------------===//
181 /** \class GCFactory
182 * \brief GCFactory provides a factory that guaratees to remove all allocated
186 class GCFactory : public GCFactoryBase<LinearAllocator<DataType, ChunkSize> > {
188 GCFactory() : GCFactoryBase<LinearAllocator<DataType, ChunkSize> >() {}
192 class GCFactory<DataType, 0>
195 explicit GCFactory(size_t pNum)
  /frameworks/compile/mclinker/lib/LD/
SectionData.cpp 12 #include "mcld/Support/GCFactory.h"
18 typedef GCFactory<SectionData, MCLD_SECTIONS_PER_INPUT> SectDataFactory;
RelocData.cpp 11 #include "mcld/Support/GCFactory.h"
17 typedef GCFactory<RelocData, MCLD_SECTIONS_PER_INPUT> RelocDataFactory;
LDSymbol.cpp 14 #include "mcld/Support/GCFactory.h"
22 typedef GCFactory<LDSymbol, MCLD_SYMBOLS_PER_INPUT> LDSymbolFactory;
RelocationFactory.cpp 26 : GCFactory<Relocation, MCLD_RELOCATIONS_PER_INPUT>(), m_pConfig(NULL) {
84 /** GCFactory will recycle the relocation **/
ELFSegment.cpp 13 #include "mcld/Support/GCFactory.h"
21 typedef GCFactory<ELFSegment, MCLD_SEGMENTS_PER_OUTPUT> ELFSegmentFactory;
LDSection.cpp 11 #include "mcld/Support/GCFactory.h"
17 typedef GCFactory<LDSection, MCLD_SECTIONS_PER_INPUT> SectionFactory;
BranchIslandFactory.cpp 29 : GCFactory<BranchIsland, 0>(1u), // magic number
  /frameworks/compile/mclinker/include/mcld/ADT/
TreeAllocator.h 13 #include "mcld/Support/GCFactory.h"
32 class NodeFactory : public GCFactory<Node<DataType>, 64> {
34 typedef GCFactory<Node<DataType>, 64> Alloc;
  /frameworks/compile/mclinker/unittests/
GCFactoryListTraitsTest.h 18 #include "mcld/Support/GCFactory.h"
54 class NodeFactory : public mcld::GCFactory<Node, 0> {
56 NodeFactory() : mcld::GCFactory<Node, 0>(16) {}
  /frameworks/compile/mclinker/lib/MC/
InputFactory.cpp 21 : GCFactory<Input, 0>(pNum) {
  /frameworks/compile/mclinker/lib/Script/
FileToken.cpp 11 #include "mcld/Support/GCFactory.h"
17 typedef GCFactory<FileToken, MCLD_SYMBOLS_PER_INPUT> FileTokenFactory;
NameSpec.cpp 11 #include "mcld/Support/GCFactory.h"
17 typedef GCFactory<NameSpec, MCLD_SYMBOLS_PER_INPUT> NameSpecFactory;
StrToken.cpp 11 #include "mcld/Support/GCFactory.h"
17 typedef GCFactory<StrToken, MCLD_SYMBOLS_PER_INPUT> StrTokenFactory;
StringList.cpp 12 #include "mcld/Support/GCFactory.h"
19 typedef GCFactory<StringList, MCLD_SYMBOLS_PER_INPUT> StringListFactory;
Operand.cpp 14 #include "mcld/Support/GCFactory.h"
33 typedef GCFactory<SymOperand, MCLD_SYMBOLS_PER_INPUT> SymOperandFactory;
71 typedef GCFactory<IntOperand, MCLD_SYMBOLS_PER_INPUT> IntOperandFactory;
104 typedef GCFactory<SectOperand, MCLD_SECTIONS_PER_INPUT> SectOperandFactory;
136 typedef GCFactory<SectDescOperand, MCLD_SECTIONS_PER_INPUT>
172 typedef GCFactory<FragOperand, MCLD_SYMBOLS_PER_INPUT> FragOperandFactory;
WildcardPattern.cpp 11 #include "mcld/Support/GCFactory.h"
19 typedef GCFactory<WildcardPattern, MCLD_SYMBOLS_PER_INPUT>
RpnExpr.cpp 14 #include "mcld/Support/GCFactory.h"
22 typedef GCFactory<RpnExpr, MCLD_SYMBOLS_PER_INPUT> ExprFactory;
  /frameworks/compile/mclinker/lib/Support/
MemoryAreaFactory.cpp 19 : GCFactory<MemoryArea, 0>(pNum) {
  /frameworks/compile/mclinker/lib/Core/
Module.cpp 21 static GCFactory<Module::AliasList, MCLD_SECTIONS_PER_INPUT>

Completed in 155 milliseconds

1 2