Lines Matching defs:imm9
2429 void Assembler::c_bnez(Register rs1, int16_t imm9) {
2430 DCHECK(((rs1.code() & 0b11000) == 0b01000) && is_int9(imm9));
2431 uint8_t uimm8 = ((imm9 & 0x20) >> 5) | ((imm9 & 0x6)) | ((imm9 & 0xc0) >> 3) |
2432 ((imm9 & 0x18) << 2) | ((imm9 & 0x100) >> 1);
2436 void Assembler::c_beqz(Register rs1, int16_t imm9) {
2437 DCHECK(((rs1.code() & 0b11000) == 0b01000) && is_int9(imm9));
2438 uint8_t uimm8 = ((imm9 & 0x20) >> 5) | ((imm9 & 0x6)) | ((imm9 & 0xc0) >> 3) |
2439 ((imm9 & 0x18) << 2) | ((imm9 & 0x100) >> 1);