Lines Matching refs:Field
291 static DecodeStatus decodeBDAddr12Operand(MCInst &Inst, uint64_t Field, in decodeBDAddr12Operand() argument
293 uint64_t Base = Field >> 12; in decodeBDAddr12Operand()
294 uint64_t Disp = Field & 0xfff; in decodeBDAddr12Operand()
301 static DecodeStatus decodeBDAddr20Operand(MCInst &Inst, uint64_t Field, in decodeBDAddr20Operand() argument
303 uint64_t Base = Field >> 20; in decodeBDAddr20Operand()
304 uint64_t Disp = ((Field << 12) & 0xff000) | ((Field >> 8) & 0xfff); in decodeBDAddr20Operand()
311 static DecodeStatus decodeBDXAddr12Operand(MCInst &Inst, uint64_t Field, in decodeBDXAddr12Operand() argument
313 uint64_t Index = Field >> 16; in decodeBDXAddr12Operand()
314 uint64_t Base = (Field >> 12) & 0xf; in decodeBDXAddr12Operand()
315 uint64_t Disp = Field & 0xfff; in decodeBDXAddr12Operand()
323 static DecodeStatus decodeBDXAddr20Operand(MCInst &Inst, uint64_t Field, in decodeBDXAddr20Operand() argument
325 uint64_t Index = Field >> 24; in decodeBDXAddr20Operand()
326 uint64_t Base = (Field >> 20) & 0xf; in decodeBDXAddr20Operand()
327 uint64_t Disp = ((Field & 0xfff00) >> 8) | ((Field & 0xff) << 12); in decodeBDXAddr20Operand()
335 static DecodeStatus decodeBDLAddr12Len4Operand(MCInst &Inst, uint64_t Field, in decodeBDLAddr12Len4Operand() argument
337 uint64_t Length = Field >> 16; in decodeBDLAddr12Len4Operand()
338 uint64_t Base = (Field >> 12) & 0xf; in decodeBDLAddr12Len4Operand()
339 uint64_t Disp = Field & 0xfff; in decodeBDLAddr12Len4Operand()
347 static DecodeStatus decodeBDLAddr12Len8Operand(MCInst &Inst, uint64_t Field, in decodeBDLAddr12Len8Operand() argument
349 uint64_t Length = Field >> 16; in decodeBDLAddr12Len8Operand()
350 uint64_t Base = (Field >> 12) & 0xf; in decodeBDLAddr12Len8Operand()
351 uint64_t Disp = Field & 0xfff; in decodeBDLAddr12Len8Operand()
359 static DecodeStatus decodeBDRAddr12Operand(MCInst &Inst, uint64_t Field, in decodeBDRAddr12Operand() argument
361 uint64_t Length = Field >> 16; in decodeBDRAddr12Operand()
362 uint64_t Base = (Field >> 12) & 0xf; in decodeBDRAddr12Operand()
363 uint64_t Disp = Field & 0xfff; in decodeBDRAddr12Operand()
371 static DecodeStatus decodeBDVAddr12Operand(MCInst &Inst, uint64_t Field, in decodeBDVAddr12Operand() argument
373 uint64_t Index = Field >> 16; in decodeBDVAddr12Operand()
374 uint64_t Base = (Field >> 12) & 0xf; in decodeBDVAddr12Operand()
375 uint64_t Disp = Field & 0xfff; in decodeBDVAddr12Operand()
383 static DecodeStatus decodeBDAddr32Disp12Operand(MCInst &Inst, uint64_t Field, in decodeBDAddr32Disp12Operand() argument
386 return decodeBDAddr12Operand(Inst, Field, SystemZMC::GR32Regs); in decodeBDAddr32Disp12Operand()
389 static DecodeStatus decodeBDAddr32Disp20Operand(MCInst &Inst, uint64_t Field, in decodeBDAddr32Disp20Operand() argument
392 return decodeBDAddr20Operand(Inst, Field, SystemZMC::GR32Regs); in decodeBDAddr32Disp20Operand()
395 static DecodeStatus decodeBDAddr64Disp12Operand(MCInst &Inst, uint64_t Field, in decodeBDAddr64Disp12Operand() argument
398 return decodeBDAddr12Operand(Inst, Field, SystemZMC::GR64Regs); in decodeBDAddr64Disp12Operand()
401 static DecodeStatus decodeBDAddr64Disp20Operand(MCInst &Inst, uint64_t Field, in decodeBDAddr64Disp20Operand() argument
404 return decodeBDAddr20Operand(Inst, Field, SystemZMC::GR64Regs); in decodeBDAddr64Disp20Operand()
407 static DecodeStatus decodeBDXAddr64Disp12Operand(MCInst &Inst, uint64_t Field, in decodeBDXAddr64Disp12Operand() argument
410 return decodeBDXAddr12Operand(Inst, Field, SystemZMC::GR64Regs); in decodeBDXAddr64Disp12Operand()
413 static DecodeStatus decodeBDXAddr64Disp20Operand(MCInst &Inst, uint64_t Field, in decodeBDXAddr64Disp20Operand() argument
416 return decodeBDXAddr20Operand(Inst, Field, SystemZMC::GR64Regs); in decodeBDXAddr64Disp20Operand()
420 uint64_t Field, in decodeBDLAddr64Disp12Len4Operand() argument
423 return decodeBDLAddr12Len4Operand(Inst, Field, SystemZMC::GR64Regs); in decodeBDLAddr64Disp12Len4Operand()
427 uint64_t Field, in decodeBDLAddr64Disp12Len8Operand() argument
430 return decodeBDLAddr12Len8Operand(Inst, Field, SystemZMC::GR64Regs); in decodeBDLAddr64Disp12Len8Operand()
434 uint64_t Field, in decodeBDRAddr64Disp12Operand() argument
437 return decodeBDRAddr12Operand(Inst, Field, SystemZMC::GR64Regs); in decodeBDRAddr64Disp12Operand()
440 static DecodeStatus decodeBDVAddr64Disp12Operand(MCInst &Inst, uint64_t Field, in decodeBDVAddr64Disp12Operand() argument
443 return decodeBDVAddr12Operand(Inst, Field, SystemZMC::GR64Regs); in decodeBDVAddr64Disp12Operand()