Home | History | Annotate | Download | only in LD

Lines Matching full:relocation

25   : GCFactory<Relocation, MCLD_RELOCATIONS_PER_INPUT>(), m_pConfig(NULL) {
33 Relocation* RelocationFactory::produce(RelocationFactory::Type pType,
42 // target_data is the place where the relocation applys to.
74 Relocation* result = allocate();
75 new (result) Relocation(pType, &pFragRef, pAddend, target_data);
79 Relocation* RelocationFactory::produceEmptyEntry()
81 Relocation* result = allocate();
82 new (result) Relocation(0, 0, 0, 0);
86 void RelocationFactory::destroy(Relocation* pRelocation)
88 /** GCFactory will recycle the relocation **/