Lines Matching refs:MRE
146 static void makeRelocationInfo(MachO::any_relocation_info &MRE, in makeRelocationInfo() argument
150 MRE.r_word0 = FixupOffset; in makeRelocationInfo()
156 MRE.r_word1 = ((Index << 8) | // was << 0 in makeRelocationInfo()
164 makeScatteredRelocationInfo(MachO::any_relocation_info &MRE, in makeScatteredRelocationInfo() argument
170 MRE.r_word0 = ((Addr << 0) | (Type << 24) | (Log2Size << 28) | in makeScatteredRelocationInfo()
172 MRE.r_word1 = Value2; in makeScatteredRelocationInfo()
279 MachO::any_relocation_info MRE; in recordScatteredRelocation() local
280 makeScatteredRelocationInfo(MRE, other_half, MachO::GENERIC_RELOC_PAIR, in recordScatteredRelocation()
282 Writer->addRelocation(nullptr, Fragment->getParent(), MRE); in recordScatteredRelocation()
294 MachO::any_relocation_info MRE; in recordScatteredRelocation() local
295 makeScatteredRelocationInfo(MRE, FixupOffset, Type, Log2Size, IsPCRel, Value); in recordScatteredRelocation()
296 Writer->addRelocation(nullptr, Fragment->getParent(), MRE); in recordScatteredRelocation()
372 MachO::any_relocation_info MRE; in RecordPPCRelocation() local
373 makeRelocationInfo(MRE, FixupOffset, Index, IsPCRel, Log2Size, false, Type); in RecordPPCRelocation()
374 Writer->addRelocation(RelSymbol, Fragment->getParent(), MRE); in RecordPPCRelocation()