Home | History | Annotate | Download | only in Core

Lines Matching defs:relocation

72     return LDFileFormat::Relocation;
118 // FIXME: where to set up Relocation?
119 Relocation::SetUp(m_Config);
333 /// CreateRelocData - To create a relocation data for given pSection.
336 assert(!pSection.hasRelocData() && "pSection already has relocation data.");
411 /// AppendRelocation - To append an relocation to the given RelocData pRD.
412 void IRBuilder::AppendRelocation(Relocation& pRelocation, RelocData& pRD)
667 /// AddRelocation - add a relocation entry
670 Relocation* IRBuilder::AddRelocation(LDSection& pSection,
671 Relocation::Type pType,
674 Relocation::Address pAddend)
678 // discard this relocation.
687 Relocation* relocation = Relocation::Create(pType, *frag_ref, pAddend);
689 relocation->setSymInfo(resolve_info);
690 pSection.getRelocData()->append(*relocation);
692 return relocation;