Lines Matching refs:Disp
208 uint64_t Disp = getDispOpValue(MI, OpNum + 1, Fixups, SystemZ::FK_390_12); in getBDAddr12Encoding() local
209 assert(isUInt<4>(Base) && isUInt<12>(Disp)); in getBDAddr12Encoding()
210 return (Base << 12) | Disp; in getBDAddr12Encoding()
218 uint64_t Disp = getDispOpValue(MI, OpNum + 1, Fixups, SystemZ::FK_390_20); in getBDAddr20Encoding() local
219 assert(isUInt<4>(Base) && isInt<20>(Disp)); in getBDAddr20Encoding()
220 return (Base << 20) | ((Disp & 0xfff) << 8) | ((Disp & 0xff000) >> 12); in getBDAddr20Encoding()
228 uint64_t Disp = getDispOpValue(MI, OpNum + 1, Fixups, SystemZ::FK_390_12); in getBDXAddr12Encoding() local
230 assert(isUInt<4>(Base) && isUInt<12>(Disp) && isUInt<4>(Index)); in getBDXAddr12Encoding()
231 return (Index << 16) | (Base << 12) | Disp; in getBDXAddr12Encoding()
239 uint64_t Disp = getDispOpValue(MI, OpNum + 1, Fixups, SystemZ::FK_390_20); in getBDXAddr20Encoding() local
241 assert(isUInt<4>(Base) && isInt<20>(Disp) && isUInt<4>(Index)); in getBDXAddr20Encoding()
242 return (Index << 24) | (Base << 20) | ((Disp & 0xfff) << 8) in getBDXAddr20Encoding()
243 | ((Disp & 0xff000) >> 12); in getBDXAddr20Encoding()
251 uint64_t Disp = getDispOpValue(MI, OpNum + 1, Fixups, SystemZ::FK_390_12); in getBDLAddr12Len4Encoding() local
253 assert(isUInt<4>(Base) && isUInt<12>(Disp) && isUInt<4>(Len)); in getBDLAddr12Len4Encoding()
254 return (Len << 16) | (Base << 12) | Disp; in getBDLAddr12Len4Encoding()
262 uint64_t Disp = getDispOpValue(MI, OpNum + 1, Fixups, SystemZ::FK_390_12); in getBDLAddr12Len8Encoding() local
264 assert(isUInt<4>(Base) && isUInt<12>(Disp) && isUInt<8>(Len)); in getBDLAddr12Len8Encoding()
265 return (Len << 16) | (Base << 12) | Disp; in getBDLAddr12Len8Encoding()
273 uint64_t Disp = getDispOpValue(MI, OpNum + 1, Fixups, SystemZ::FK_390_12); in getBDRAddr12Encoding() local
275 assert(isUInt<4>(Base) && isUInt<12>(Disp) && isUInt<4>(Len)); in getBDRAddr12Encoding()
276 return (Len << 16) | (Base << 12) | Disp; in getBDRAddr12Encoding()
284 uint64_t Disp = getDispOpValue(MI, OpNum + 1, Fixups, SystemZ::FK_390_12); in getBDVAddr12Encoding() local
286 assert(isUInt<4>(Base) && isUInt<12>(Disp) && isUInt<5>(Index)); in getBDVAddr12Encoding()
287 return (Index << 16) | (Base << 12) | Disp; in getBDVAddr12Encoding()