Lines Matching refs:op
99 int func, fmt, op; in microMIPS32_to_MIPS32() local
143 op = insn.mm_fp0_format.func; in microMIPS32_to_MIPS32()
144 if (op == mm_32f_01_op) in microMIPS32_to_MIPS32()
146 else if (op == mm_32f_11_op) in microMIPS32_to_MIPS32()
148 else if (op == mm_32f_02_op) in microMIPS32_to_MIPS32()
150 else if (op == mm_32f_12_op) in microMIPS32_to_MIPS32()
152 else if (op == mm_32f_41_op) in microMIPS32_to_MIPS32()
154 else if (op == mm_32f_51_op) in microMIPS32_to_MIPS32()
156 else if (op == mm_32f_42_op) in microMIPS32_to_MIPS32()
169 op = insn.mm_fp5_format.op & 0x7; in microMIPS32_to_MIPS32()
170 if (op == mm_ldxc1_op) in microMIPS32_to_MIPS32()
172 else if (op == mm_sdxc1_op) in microMIPS32_to_MIPS32()
174 else if (op == mm_lwxc1_op) in microMIPS32_to_MIPS32()
176 else if (op == mm_swxc1_op) in microMIPS32_to_MIPS32()
192 op = -1; /* Invalid */ in microMIPS32_to_MIPS32()
193 if (insn.mm_fp2_format.op == mm_fmovt_op) in microMIPS32_to_MIPS32()
194 op = 1; in microMIPS32_to_MIPS32()
195 else if (insn.mm_fp2_format.op == mm_fmovf_op) in microMIPS32_to_MIPS32()
196 op = 0; in microMIPS32_to_MIPS32()
197 if (op != -1) { in microMIPS32_to_MIPS32()
202 (insn.mm_fp2_format.cc<<2) + op; in microMIPS32_to_MIPS32()
213 if (insn.mm_fp0_format.op == mm_fadd_op) in microMIPS32_to_MIPS32()
215 else if (insn.mm_fp0_format.op == mm_fsub_op) in microMIPS32_to_MIPS32()
217 else if (insn.mm_fp0_format.op == mm_fmul_op) in microMIPS32_to_MIPS32()
219 else if (insn.mm_fp0_format.op == mm_fdiv_op) in microMIPS32_to_MIPS32()
237 if (insn.mm_fp0_format.op == mm_fmovn_op) in microMIPS32_to_MIPS32()
239 else if (insn.mm_fp0_format.op == mm_fmovz_op) in microMIPS32_to_MIPS32()
256 switch (insn.mm_fp1_format.op) { in microMIPS32_to_MIPS32()
261 if ((insn.mm_fp1_format.op & 0x7f) == in microMIPS32_to_MIPS32()
263 op = 0; in microMIPS32_to_MIPS32()
265 op = 1; in microMIPS32_to_MIPS32()
269 (insn.mm_fp4_format.cc << 2) + op; in microMIPS32_to_MIPS32()
278 if ((insn.mm_fp1_format.op & 0x7f) == in microMIPS32_to_MIPS32()
301 if ((insn.mm_fp1_format.op & 0x7f) == in microMIPS32_to_MIPS32()
304 else if ((insn.mm_fp1_format.op & 0x7f) == in microMIPS32_to_MIPS32()
329 if (insn.mm_fp1_format.op == mm_ffloorl_op) in microMIPS32_to_MIPS32()
331 else if (insn.mm_fp1_format.op == mm_ffloorw_op) in microMIPS32_to_MIPS32()
333 else if (insn.mm_fp1_format.op == mm_fceill_op) in microMIPS32_to_MIPS32()
335 else if (insn.mm_fp1_format.op == mm_fceilw_op) in microMIPS32_to_MIPS32()
337 else if (insn.mm_fp1_format.op == mm_ftruncl_op) in microMIPS32_to_MIPS32()
339 else if (insn.mm_fp1_format.op == mm_ftruncw_op) in microMIPS32_to_MIPS32()
341 else if (insn.mm_fp1_format.op == mm_froundl_op) in microMIPS32_to_MIPS32()
343 else if (insn.mm_fp1_format.op == mm_froundw_op) in microMIPS32_to_MIPS32()
345 else if (insn.mm_fp1_format.op == mm_fcvtl_op) in microMIPS32_to_MIPS32()
362 if (insn.mm_fp1_format.op == mm_frsqrt_op) in microMIPS32_to_MIPS32()
364 else if (insn.mm_fp1_format.op == mm_fsqrt_op) in microMIPS32_to_MIPS32()
384 if (insn.mm_fp1_format.op == mm_mfc1_op) in microMIPS32_to_MIPS32()
385 op = mfc_op; in microMIPS32_to_MIPS32()
386 else if (insn.mm_fp1_format.op == mm_mtc1_op) in microMIPS32_to_MIPS32()
387 op = mtc_op; in microMIPS32_to_MIPS32()
388 else if (insn.mm_fp1_format.op == mm_cfc1_op) in microMIPS32_to_MIPS32()
389 op = cfc_op; in microMIPS32_to_MIPS32()
390 else if (insn.mm_fp1_format.op == mm_ctc1_op) in microMIPS32_to_MIPS32()
391 op = ctc_op; in microMIPS32_to_MIPS32()
392 else if (insn.mm_fp1_format.op == mm_mfhc1_op) in microMIPS32_to_MIPS32()
393 op = mfhc_op; in microMIPS32_to_MIPS32()
395 op = mthc_op; in microMIPS32_to_MIPS32()
397 mips32_insn.fp1_format.op = op; in microMIPS32_to_MIPS32()