Lines Matching refs:Disp
271 uint64_t Disp = Field & 0xfff; in decodeBDAddr12Operand() local
274 Inst.addOperand(MCOperand::createImm(Disp)); in decodeBDAddr12Operand()
281 uint64_t Disp = ((Field << 12) & 0xff000) | ((Field >> 8) & 0xfff); in decodeBDAddr20Operand() local
284 Inst.addOperand(MCOperand::createImm(SignExtend64<20>(Disp))); in decodeBDAddr20Operand()
292 uint64_t Disp = Field & 0xfff; in decodeBDXAddr12Operand() local
295 Inst.addOperand(MCOperand::createImm(Disp)); in decodeBDXAddr12Operand()
304 uint64_t Disp = ((Field & 0xfff00) >> 8) | ((Field & 0xff) << 12); in decodeBDXAddr20Operand() local
307 Inst.addOperand(MCOperand::createImm(SignExtend64<20>(Disp))); in decodeBDXAddr20Operand()
316 uint64_t Disp = Field & 0xfff; in decodeBDLAddr12Len8Operand() local
319 Inst.addOperand(MCOperand::createImm(Disp)); in decodeBDLAddr12Len8Operand()
328 uint64_t Disp = Field & 0xfff; in decodeBDVAddr12Operand() local
331 Inst.addOperand(MCOperand::createImm(Disp)); in decodeBDVAddr12Operand()