Searched refs:imm16 (Results 1 – 11 of 11) sorted by relevance
1195 int16_t imm16 = instr->Imm16Field(); in DecodeTypeImmediate() local1201 uint32_t oe_imm16 = 0xffff & imm16; in DecodeTypeImmediate()1203 int32_t se_imm16 = imm16; in DecodeTypeImmediate()1261 next_pc = current_pc + (imm16 << 2) + Instruction::kInstructionSize; in DecodeTypeImmediate()1369 next_pc = current_pc + (imm16 << 2) + Instruction::kInstructionSize; in DecodeTypeImmediate()
356 int32_t imm16 = imm18 >> 2; in target_at_put() local357 ASSERT(is_int16(imm16)); in target_at_put()359 instr_at_put(pos, instr | (imm16 & kImm16Mask)); in target_at_put()
880 void Assembler::cmpw(const Operand& op, Immediate imm16) { in cmpw() argument881 ASSERT(imm16.is_int16()); in cmpw()887 emit_w(imm16); in cmpw()1376 void Assembler::ret(int imm16) { in ret() argument1379 ASSERT(is_uint16(imm16)); in ret()1380 if (imm16 == 0) { in ret()1384 EMIT(imm16 & 0xFF); in ret()1385 EMIT((imm16 >> 8) & 0xFF); in ret()
568 void cmpw(const Operand& op, Immediate imm16);648 void ret(int imm16);
1763 void Assembler::ret(int imm16) { in ret() argument1766 ASSERT(is_uint16(imm16)); in ret()1767 if (imm16 == 0) { in ret()1771 emit(imm16 & 0xFF); in ret()1772 emit((imm16 >> 8) & 0xFF); in ret()
967 void ret(int imm16);
1261 void Assembler::bkpt(uint32_t imm16) { // v5 and above in bkpt() argument1262 ASSERT(is_uint16(imm16)); in bkpt()1263 emit(al | B24 | B21 | (imm16 >> 4)*B8 | 7*B4 | (imm16 & 0xf)); in bkpt()
1239 void Assembler::bkpt(uint32_t imm16) { // v5 and above in bkpt() argument1240 ASSERT(is_uint16(imm16)); in bkpt()1241 emit(al | B24 | B21 | (imm16 >> 4)*B8 | 7*B4 | (imm16 & 0xf)); in bkpt()
745 void bkpt(uint32_t imm16); // v5 and above
3018 long imm16 = hi | lo; in print_insn_arm_internal() local3019 func (stream, "#%lu\t; 0x%lx", imm16, imm16); in print_insn_arm_internal()