Lines Matching defs:cmode
2707 // Currently only supports the first row and op=0 && cmode=1110.
2708 static bool FitsVmovIntImm(uint64_t imm, uint32_t* encoding, uint8_t* cmode) {
2713 *cmode = 0;
2719 *cmode = 0xe;
2728 uint8_t cmode;
2730 if (CpuFeatures::IsSupported(NEON) && FitsVmovIntImm(imm, &enc, &cmode)) {
2733 // 001i1(27-23) | D(22) | 000(21-19) | imm3(18-16) | Vd(15-12) | cmode(11-8)
2737 emit(kSpecialCondition | 0x05 * B23 | d * B22 | vd * B12 | cmode * B8 |
2746 uint8_t cmode;
2748 if (CpuFeatures::IsSupported(NEON) && FitsVmovIntImm(imm, &enc, &cmode)) {
2751 // 001i1(27-23) | D(22) | 000(21-19) | imm3(18-16) | Vd(15-12) | cmode(11-8)
2755 emit(kSpecialCondition | 0x05 * B23 | d * B22 | vd * B12 | cmode * B8 |