Lines Matching refs:base_format
117 Format base_format = instr->format;
118 base_format = (Format)((uint32_t)base_format & ~(uint32_t)Format::SDWA);
119 base_format = (Format)((uint32_t)base_format & ~(uint32_t)Format::DPP16);
120 base_format = (Format)((uint32_t)base_format & ~(uint32_t)Format::DPP8);
121 if ((uint32_t)base_format & (uint32_t)Format::VOP1)
122 base_format = Format::VOP1;
123 else if ((uint32_t)base_format & (uint32_t)Format::VOP2)
124 base_format = Format::VOP2;
125 else if ((uint32_t)base_format & (uint32_t)Format::VOPC)
126 base_format = Format::VOPC;
127 else if ((uint32_t)base_format & (uint32_t)Format::VINTRP) {
135 base_format = Format::VOP3;
137 base_format = Format::VINTRP;
140 check(base_format == instr_info.format[(int)instr->opcode],
145 check(base_format == Format::VOP2 || base_format == Format::VOP1 ||
146 base_format == Format::VOPC || base_format == Format::VINTRP,
152 check(base_format == Format::VOP2 || base_format == Format::VOP1 ||
153 base_format == Format::VOPC,
162 if (base_format == Format::VOPC) {