Lines Matching refs:SubRI
132 const MachO::relocation_info &SubRI, in parsePairRelocation() argument
138 assert(((SubtractorKind == MachODelta32 && SubRI.r_length == 2) || in parsePairRelocation()
139 (SubtractorKind == MachODelta64 && SubRI.r_length == 3)) && in parsePairRelocation()
141 assert(SubRI.r_extern && "SUBTRACTOR reloc symbol should be extern"); in parsePairRelocation()
142 assert(!SubRI.r_pcrel && "SUBTRACTOR reloc should not be PCRel"); in parsePairRelocation()
150 if (SubRI.r_address != UnsignedRI.r_address) in parsePairRelocation()
154 if (SubRI.r_length != UnsignedRI.r_length) in parsePairRelocation()
159 if (auto FromSymbolOrErr = findSymbolByIndex(SubRI.r_symbolnum)) in parsePairRelocation()
166 if (SubRI.r_length == 3) in parsePairRelocation()
219 DeltaKind = (SubRI.r_length == 3) ? aarch64::Delta64 : aarch64::Delta32; in parsePairRelocation()
225 (SubRI.r_length == 3) ? aarch64::NegDelta64 : aarch64::NegDelta32; in parsePairRelocation()