Home | History | Annotate | Download | only in MCTargetDesc

Lines Matching defs:MRE

147 static void makeRelocationInfo(MachO::any_relocation_info &MRE,
151 MRE.r_word0 = FixupOffset;
157 MRE.r_word1 = ((Index << 8) | // was << 0
165 makeScatteredRelocationInfo(MachO::any_relocation_info &MRE,
171 MRE.r_word0 = ((Addr << 0) | (Type << 24) | (Log2Size << 28) |
173 MRE.r_word1 = Value2;
282 MachO::any_relocation_info MRE;
283 makeScatteredRelocationInfo(MRE, other_half, MachO::GENERIC_RELOC_PAIR,
285 Writer->addRelocation(Fragment->getParent(), MRE);
297 MachO::any_relocation_info MRE;
298 makeScatteredRelocationInfo(MRE, FixupOffset, Type, Log2Size, IsPCRel, Value);
299 Writer->addRelocation(Fragment->getParent(), MRE);
377 MachO::any_relocation_info MRE;
378 makeRelocationInfo(MRE, FixupOffset, Index, IsPCRel, Log2Size, IsExtern,
380 Writer->addRelocation(Fragment->getParent(), MRE);