Home | History | Annotate | Download | only in arm

Lines Matching full:imm16

676 void Arm32Assembler::movw(Register rd, uint16_t imm16, Condition cond) {
679 B25 | B24 | ((imm16 >> 12) << 16) |
680 static_cast<int32_t>(rd) << kRdShift | (imm16 & 0xfff);
685 void Arm32Assembler::movt(Register rd, uint16_t imm16, Condition cond) {
688 B25 | B24 | B22 | ((imm16 >> 12) << 16) |
689 static_cast<int32_t>(rd) << kRdShift | (imm16 & 0xfff);
1152 void Arm32Assembler::bkpt(uint16_t imm16) {
1154 ((imm16 >> 4) << 8) | B6 | B5 | B4 | (imm16 & 0xf);