Lines Matching refs:MRE
147 static void makeRelocationInfo(MachO::any_relocation_info &MRE, in makeRelocationInfo() argument
151 MRE.r_word0 = FixupOffset; in makeRelocationInfo()
157 MRE.r_word1 = ((Index << 8) | // was << 0 in makeRelocationInfo()
165 makeScatteredRelocationInfo(MachO::any_relocation_info &MRE, in makeScatteredRelocationInfo() argument
171 MRE.r_word0 = ((Addr << 0) | (Type << 24) | (Log2Size << 28) | in makeScatteredRelocationInfo()
173 MRE.r_word1 = Value2; in makeScatteredRelocationInfo()
282 MachO::any_relocation_info MRE; in RecordScatteredRelocation() local
283 makeScatteredRelocationInfo(MRE, other_half, MachO::GENERIC_RELOC_PAIR, in RecordScatteredRelocation()
285 Writer->addRelocation(nullptr, Fragment->getParent(), MRE); in RecordScatteredRelocation()
297 MachO::any_relocation_info MRE; in RecordScatteredRelocation() local
298 makeScatteredRelocationInfo(MRE, FixupOffset, Type, Log2Size, IsPCRel, Value); in RecordScatteredRelocation()
299 Writer->addRelocation(nullptr, Fragment->getParent(), MRE); in RecordScatteredRelocation()
376 MachO::any_relocation_info MRE; in RecordPPCRelocation() local
377 makeRelocationInfo(MRE, FixupOffset, Index, IsPCRel, Log2Size, false, Type); in RecordPPCRelocation()
378 Writer->addRelocation(RelSymbol, Fragment->getParent(), MRE); in RecordPPCRelocation()