Searched refs:imm16 (Results 1 – 7 of 7) sorted by relevance
829 void Assembler::cmpw(const Operand& op, Immediate imm16) { in cmpw() argument830 ASSERT(imm16.is_int16()); in cmpw()836 emit_w(imm16); in cmpw()1291 void Assembler::ret(int imm16) { in ret() argument1294 ASSERT(is_uint16(imm16)); in ret()1295 if (imm16 == 0) { in ret()1299 EMIT(imm16 & 0xFF); in ret()1300 EMIT((imm16 >> 8) & 0xFF); in ret()
537 void cmpw(const Operand& op, Immediate imm16);614 void ret(int imm16);
1619 void Assembler::ret(int imm16) { in ret() argument1622 ASSERT(is_uint16(imm16)); in ret()1623 if (imm16 == 0) { in ret()1627 emit(imm16 & 0xFF); in ret()1628 emit((imm16 >> 8) & 0xFF); in ret()
890 void ret(int imm16);
1114 void Assembler::bkpt(uint32_t imm16) { // v5 and above in bkpt() argument1115 ASSERT(is_uint16(imm16)); in bkpt()1116 emit(al | B24 | B21 | (imm16 >> 4)*B8 | 7*B4 | (imm16 & 0xf)); in bkpt()
584 void bkpt(uint32_t imm16); // v5 and above
3021 long imm16 = hi | lo; in print_insn_arm_internal() local3022 func (stream, "#%lu\t; 0x%lx", imm16, imm16); in print_insn_arm_internal()