diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2014-04-08 12:47:13 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-05-30 15:54:39 +0200 |
commit | a8e897ad00d3cfd0ab9029978f0c3f8ecd6fba61 (patch) | |
tree | ddd6a13c011c4330e9897ea354943e27c27330ed /arch/mips/include/asm | |
parent | d6b3314b49e12e8c349deb4ca28e7028db00728f (diff) | |
download | op-kernel-dev-a8e897ad00d3cfd0ab9029978f0c3f8ecd6fba61.zip op-kernel-dev-a8e897ad00d3cfd0ab9029978f0c3f8ecd6fba61.tar.gz |
MIPS: uasm: Add mul 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/6736/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/include/asm')
-rw-r--r-- | arch/mips/include/asm/uasm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/include/asm/uasm.h b/arch/mips/include/asm/uasm.h index a096581..95954ba 100644 --- a/arch/mips/include/asm/uasm.h +++ b/arch/mips/include/asm/uasm.h @@ -134,6 +134,7 @@ Ip_u3u1u2(_lwx); Ip_u1u2u3(_mfc0); Ip_u1(_mfhi); Ip_u1u2u3(_mtc0); +Ip_u3u1u2(_mul); Ip_u3u1u2(_or); Ip_u2u1u3(_ori); Ip_u2s3u1(_pref); |