MIPS: uasm: Add mflo uasm instruction
authorMarkos Chandras <markos.chandras@imgtec.com>
Mon, 14 Apr 2014 14:42:31 +0000 (15:42 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Fri, 30 May 2014 13:57:44 +0000 (15:57 +0200)
It will be used later on by bpf-jit

[ralf@linux-mips.org: Resolved conflict.]

Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
arch/mips/include/asm/uasm.h
arch/mips/include/uapi/asm/inst.h
arch/mips/mm/uasm-micromips.c
arch/mips/mm/uasm-mips.c
arch/mips/mm/uasm.c

index 95954ba24d318bb50f2c17cfd065c721067885b6..719a88401afa769eec06e101ebbe66b951376f89 100644 (file)
@@ -133,6 +133,7 @@ Ip_u2s3u1(_lw);
 Ip_u3u1u2(_lwx);
 Ip_u1u2u3(_mfc0);
 Ip_u1(_mfhi);
+Ip_u1(_mflo);
 Ip_u1u2u3(_mtc0);
 Ip_u3u1u2(_mul);
 Ip_u3u1u2(_or);
index 67933839ce6a902e5f1fd37d65bbf8fd6313e4e4..4b7160259292f004cb30fc04b07a2e7608caf1c8 100644 (file)
@@ -316,6 +316,7 @@ enum mm_32axf_minor_op {
        mm_mfhi32_op = 0x035,
        mm_jalr_op = 0x03c,
        mm_tlbr_op = 0x04d,
+       mm_mflo32_op = 0x075,
        mm_jalrhb_op = 0x07c,
        mm_tlbwi_op = 0x08d,
        mm_tlbwr_op = 0x0cd,
index 9d42f1066a1f4265b10a4ef825529fd77be915d3..1c390a1f386299069fe799e2c33bb84797bd2bdd 100644 (file)
@@ -89,6 +89,7 @@ static struct insn insn_table_MM[] = {
        { insn_lw, M(mm_lw32_op, 0, 0, 0, 0, 0), RT | RS | SIMM },
        { insn_mfc0, M(mm_pool32a_op, 0, 0, 0, mm_mfc0_op, mm_pool32axf_op), RT | RS | RD },
        { insn_mfhi, M(mm_pool32a_op, 0, 0, 0, mm_mfhi32_op, mm_pool32axf_op), RS },
+       { insn_mflo, M(mm_pool32a_op, 0, 0, 0, mm_mflo32_op, mm_pool32axf_op), RS },
        { insn_mtc0, M(mm_pool32a_op, 0, 0, 0, mm_mtc0_op, mm_pool32axf_op), RT | RS | RD },
        { insn_mul, M(mm_pool32a_op, 0, 0, 0, 0, mm_mul_op), RT | RS | RD },
        { insn_or, M(mm_pool32a_op, 0, 0, 0, 0, mm_or32_op), RT | RS | RD },
index 9dd15168e849c0f1449cb0031995fe622d283b62..4f9114b2ff34adc4020976393134e006490e32ad 100644 (file)
@@ -96,6 +96,7 @@ static struct insn insn_table[] = {
        { insn_lwx, M(spec3_op, 0, 0, 0, lwx_op, lx_op), RS | RT | RD },
        { insn_mfc0,  M(cop0_op, mfc_op, 0, 0, 0, 0),  RT | RD | SET},
        { insn_mfhi,  M(spec_op, 0, 0, 0, 0, mfhi_op), RD },
+       { insn_mflo,  M(spec_op, 0, 0, 0, 0, mflo_op), RD },
        { insn_mtc0,  M(cop0_op, mtc_op, 0, 0, 0, 0),  RT | RD | SET},
        { insn_mul, M(spec2_op, 0, 0, 0, 0, mul_op), RS | RT | RD},
        { insn_ori,  M(ori_op, 0, 0, 0, 0, 0),  RS | RT | UIMM },
index 1c8bed31ec3d2425aad2da27ce49ef93fe25bc36..8cf1fb21cedf2fc7c2d9ea91f53f6c5fcea53b4d 100644 (file)
@@ -51,11 +51,12 @@ enum opcode {
        insn_dsll32, insn_dsra, insn_dsrl, insn_dsrl32, insn_dsubu, insn_eret,
        insn_ext, insn_ins, insn_j, insn_jal, insn_jalr, insn_jr, insn_ld,
        insn_ldx, insn_lh, insn_ll, insn_lld, insn_lui, insn_lw, insn_lwx,
-       insn_mfc0, insn_mfhi, insn_mtc0, insn_mul, insn_or, insn_ori, insn_pref,
-       insn_rfe, insn_rotr, insn_sc, insn_scd, insn_sd, insn_sll, insn_sllv,
-       insn_sltiu, insn_sltu, insn_sra, insn_srl, insn_srlv, insn_subu,
-       insn_sw, insn_sync, insn_syscall, insn_tlbp, insn_tlbr, insn_tlbwi,
-       insn_tlbwr, insn_wait, insn_wsbh, insn_xor, insn_xori, insn_yield,
+       insn_mfc0, insn_mfhi, insn_mflo, insn_mtc0, insn_mul, insn_or,
+       insn_ori, insn_pref, insn_rfe, insn_rotr, insn_sc, insn_scd, insn_sd,
+       insn_sll, insn_sllv, insn_sltiu, insn_sltu, insn_sra, insn_srl,
+       insn_srlv, insn_subu, insn_sw, insn_sync, insn_syscall, insn_tlbp,
+       insn_tlbr, insn_tlbwi, insn_tlbwr, insn_wait, insn_wsbh, insn_xor,
+       insn_xori, insn_yield,
 };
 
 struct insn {
@@ -276,6 +277,7 @@ I_u1s2(_lui)
 I_u2s3u1(_lw)
 I_u1u2u3(_mfc0)
 I_u1(_mfhi)
+I_u1(_mflo)
 I_u1u2u3(_mtc0)
 I_u3u1u2(_mul)
 I_u2u1u3(_ori)