diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2014-04-08 12:47:06 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-05-30 14:53:06 +0200 |
commit | 4c12a854d81db5454436c015ec30f39882e923a4 (patch) | |
tree | e93e7a339a0e80d0e9900c80e0ad048b809bc9ac /arch/mips/mm/uasm-micromips.c | |
parent | f31318fdf324901ce5a17ccc3d71213117fb44af (diff) | |
download | op-kernel-dev-4c12a854d81db5454436c015ec30f39882e923a4.zip op-kernel-dev-4c12a854d81db5454436c015ec30f39882e923a4.tar.gz |
MIPS: uasm: Add divu 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>
Cc: linux-mips@linux-mips.org
Patchwork: http://patchwork.linux-mips.org/patch/6727/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm/uasm-micromips.c')
-rw-r--r-- | arch/mips/mm/uasm-micromips.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/mm/uasm-micromips.c b/arch/mips/mm/uasm-micromips.c index b234800..aefe744 100644 --- a/arch/mips/mm/uasm-micromips.c +++ b/arch/mips/mm/uasm-micromips.c @@ -63,6 +63,7 @@ static struct insn insn_table_MM[] = { { insn_cache, M(mm_pool32b_op, 0, 0, mm_cache_func, 0, 0), RT | RS | SIMM }, { insn_daddu, 0, 0 }, { insn_daddiu, 0, 0 }, + { insn_divu, M(mm_pool32a_op, 0, 0, 0, mm_divu_op, mm_pool32axf_op), RT | RS }, { insn_dmfc0, 0, 0 }, { insn_dmtc0, 0, 0 }, { insn_dsll, 0, 0 }, |