Lines Matching refs:imm16
832 void Assembler::cmpw(const Operand& op, Immediate imm16) { in cmpw() argument
833 DCHECK(imm16.is_int16()); in cmpw()
838 emit_w(imm16); in cmpw()
1314 void Assembler::test_w(Register reg, Immediate imm16) { in test_w() argument
1315 DCHECK(imm16.is_int16() || imm16.is_uint16()); in test_w()
1319 emit_w(imm16); in test_w()
1324 emit_w(imm16); in test_w()
1335 void Assembler::test_w(const Operand& op, Immediate imm16) { in test_w() argument
1336 DCHECK(imm16.is_int16() || imm16.is_uint16()); in test_w()
1338 test_w(op.reg(), imm16); in test_w()
1345 emit_w(imm16); in test_w()
1424 void Assembler::ret(int imm16) { in ret() argument
1426 DCHECK(is_uint16(imm16)); in ret()
1427 if (imm16 == 0) { in ret()
1431 EMIT(imm16 & 0xFF); in ret()
1432 EMIT((imm16 >> 8) & 0xFF); in ret()