Lines Matching refs:Relocation
26 : GCFactory<Relocation, MCLD_RELOCATIONS_PER_INPUT>(), m_pConfig(NULL) {
33 Relocation* RelocationFactory::produce(RelocationFactory::Type pType,
41 // target_data is the place where the relocation applys to.
72 Relocation* result = allocate();
73 new (result) Relocation(pType, &pFragRef, pAddend, target_data);
77 Relocation* RelocationFactory::produceEmptyEntry() {
78 Relocation* result = allocate();
79 new (result) Relocation(0, 0, 0, 0);
83 void RelocationFactory::destroy(Relocation* pRelocation) {
84 /** GCFactory will recycle the relocation **/