aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/mm/uasm-mips.c
diff options
context:
space:
mode:
authorMarkos Chandras <markos.chandras@imgtec.com>2014-04-16 08:49:57 -0400
committerRalf Baechle <ralf@linux-mips.org>2014-05-30 10:10:19 -0400
commit8248881835da58fa075299926c2994d12b56895b (patch)
treed7b0ca159c830f13e2ea0686b36b0eb9957a3f3b /arch/mips/mm/uasm-mips.c
parent16d21a812f6bfcbfa84ccc19d38abe797c71b73e (diff)
MIPS: uasm: Add lb uasm instruction
It will be used later on by bpf-jit [ralf@linux-mips.org: Resolved conflict.] Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Diffstat (limited to 'arch/mips/mm/uasm-mips.c')
-rw-r--r--arch/mips/mm/uasm-mips.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/mm/uasm-mips.c b/arch/mips/mm/uasm-mips.c
index 4f9114b2ff34..38792c2364f5 100644
--- a/arch/mips/mm/uasm-mips.c
+++ b/arch/mips/mm/uasm-mips.c
@@ -86,6 +86,7 @@ static struct insn insn_table[] = {
86 { insn_jalr, M(spec_op, 0, 0, 0, 0, jalr_op), RS | RD }, 86 { insn_jalr, M(spec_op, 0, 0, 0, 0, jalr_op), RS | RD },
87 { insn_j, M(j_op, 0, 0, 0, 0, 0), JIMM }, 87 { insn_j, M(j_op, 0, 0, 0, 0, 0), JIMM },
88 { insn_jr, M(spec_op, 0, 0, 0, 0, jr_op), RS }, 88 { insn_jr, M(spec_op, 0, 0, 0, 0, jr_op), RS },
89 { insn_lb, M(lb_op, 0, 0, 0, 0, 0), RS | RT | SIMM },
89 { insn_ld, M(ld_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, 90 { insn_ld, M(ld_op, 0, 0, 0, 0, 0), RS | RT | SIMM },
90 { insn_ldx, M(spec3_op, 0, 0, 0, ldx_op, lx_op), RS | RT | RD }, 91 { insn_ldx, M(spec3_op, 0, 0, 0, ldx_op, lx_op), RS | RT | RD },
91 { insn_lh, M(lw_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, 92 { insn_lh, M(lw_op, 0, 0, 0, 0, 0), RS | RT | SIMM },