Lines Matching refs:Field
292 static DecodeStatus decodeBDAddr12Operand(MCInst &Inst, uint64_t Field, in decodeBDAddr12Operand() argument
294 uint64_t Base = Field >> 12; in decodeBDAddr12Operand()
295 uint64_t Disp = Field & 0xfff; in decodeBDAddr12Operand()
302 static DecodeStatus decodeBDAddr20Operand(MCInst &Inst, uint64_t Field, in decodeBDAddr20Operand() argument
304 uint64_t Base = Field >> 20; in decodeBDAddr20Operand()
305 uint64_t Disp = ((Field << 12) & 0xff000) | ((Field >> 8) & 0xfff); in decodeBDAddr20Operand()
312 static DecodeStatus decodeBDXAddr12Operand(MCInst &Inst, uint64_t Field, in decodeBDXAddr12Operand() argument
314 uint64_t Index = Field >> 16; in decodeBDXAddr12Operand()
315 uint64_t Base = (Field >> 12) & 0xf; in decodeBDXAddr12Operand()
316 uint64_t Disp = Field & 0xfff; in decodeBDXAddr12Operand()
324 static DecodeStatus decodeBDXAddr20Operand(MCInst &Inst, uint64_t Field, in decodeBDXAddr20Operand() argument
326 uint64_t Index = Field >> 24; in decodeBDXAddr20Operand()
327 uint64_t Base = (Field >> 20) & 0xf; in decodeBDXAddr20Operand()
328 uint64_t Disp = ((Field & 0xfff00) >> 8) | ((Field & 0xff) << 12); in decodeBDXAddr20Operand()
336 static DecodeStatus decodeBDLAddr12Len4Operand(MCInst &Inst, uint64_t Field, in decodeBDLAddr12Len4Operand() argument
338 uint64_t Length = Field >> 16; in decodeBDLAddr12Len4Operand()
339 uint64_t Base = (Field >> 12) & 0xf; in decodeBDLAddr12Len4Operand()
340 uint64_t Disp = Field & 0xfff; in decodeBDLAddr12Len4Operand()
348 static DecodeStatus decodeBDLAddr12Len8Operand(MCInst &Inst, uint64_t Field, in decodeBDLAddr12Len8Operand() argument
350 uint64_t Length = Field >> 16; in decodeBDLAddr12Len8Operand()
351 uint64_t Base = (Field >> 12) & 0xf; in decodeBDLAddr12Len8Operand()
352 uint64_t Disp = Field & 0xfff; in decodeBDLAddr12Len8Operand()
360 static DecodeStatus decodeBDRAddr12Operand(MCInst &Inst, uint64_t Field, in decodeBDRAddr12Operand() argument
362 uint64_t Length = Field >> 16; in decodeBDRAddr12Operand()
363 uint64_t Base = (Field >> 12) & 0xf; in decodeBDRAddr12Operand()
364 uint64_t Disp = Field & 0xfff; in decodeBDRAddr12Operand()
372 static DecodeStatus decodeBDVAddr12Operand(MCInst &Inst, uint64_t Field, in decodeBDVAddr12Operand() argument
374 uint64_t Index = Field >> 16; in decodeBDVAddr12Operand()
375 uint64_t Base = (Field >> 12) & 0xf; in decodeBDVAddr12Operand()
376 uint64_t Disp = Field & 0xfff; in decodeBDVAddr12Operand()
384 static DecodeStatus decodeBDAddr32Disp12Operand(MCInst &Inst, uint64_t Field, in decodeBDAddr32Disp12Operand() argument
387 return decodeBDAddr12Operand(Inst, Field, SystemZMC::GR32Regs); in decodeBDAddr32Disp12Operand()
390 static DecodeStatus decodeBDAddr32Disp20Operand(MCInst &Inst, uint64_t Field, in decodeBDAddr32Disp20Operand() argument
393 return decodeBDAddr20Operand(Inst, Field, SystemZMC::GR32Regs); in decodeBDAddr32Disp20Operand()
396 static DecodeStatus decodeBDAddr64Disp12Operand(MCInst &Inst, uint64_t Field, in decodeBDAddr64Disp12Operand() argument
399 return decodeBDAddr12Operand(Inst, Field, SystemZMC::GR64Regs); in decodeBDAddr64Disp12Operand()
402 static DecodeStatus decodeBDAddr64Disp20Operand(MCInst &Inst, uint64_t Field, in decodeBDAddr64Disp20Operand() argument
405 return decodeBDAddr20Operand(Inst, Field, SystemZMC::GR64Regs); in decodeBDAddr64Disp20Operand()
408 static DecodeStatus decodeBDXAddr64Disp12Operand(MCInst &Inst, uint64_t Field, in decodeBDXAddr64Disp12Operand() argument
411 return decodeBDXAddr12Operand(Inst, Field, SystemZMC::GR64Regs); in decodeBDXAddr64Disp12Operand()
414 static DecodeStatus decodeBDXAddr64Disp20Operand(MCInst &Inst, uint64_t Field, in decodeBDXAddr64Disp20Operand() argument
417 return decodeBDXAddr20Operand(Inst, Field, SystemZMC::GR64Regs); in decodeBDXAddr64Disp20Operand()
421 uint64_t Field, in decodeBDLAddr64Disp12Len4Operand() argument
424 return decodeBDLAddr12Len4Operand(Inst, Field, SystemZMC::GR64Regs); in decodeBDLAddr64Disp12Len4Operand()
428 uint64_t Field, in decodeBDLAddr64Disp12Len8Operand() argument
431 return decodeBDLAddr12Len8Operand(Inst, Field, SystemZMC::GR64Regs); in decodeBDLAddr64Disp12Len8Operand()
435 uint64_t Field, in decodeBDRAddr64Disp12Operand() argument
438 return decodeBDRAddr12Operand(Inst, Field, SystemZMC::GR64Regs); in decodeBDRAddr64Disp12Operand()
441 static DecodeStatus decodeBDVAddr64Disp12Operand(MCInst &Inst, uint64_t Field, in decodeBDVAddr64Disp12Operand() argument
444 return decodeBDVAddr12Operand(Inst, Field, SystemZMC::GR64Regs); in decodeBDVAddr64Disp12Operand()