diff options
author | Paul Burton <paul.burton@imgtec.com> | 2014-03-16 16:58:05 +0400 |
---|---|---|
committer | Paul Burton <paul.burton@imgtec.com> | 2014-05-28 19:20:26 +0400 |
commit | 49e9529b9d43773307b8c73bd251b71784830c3d (patch) | |
tree | 15cda21aec6828b811af3f8af30a3bf438525dcb /arch/mips/include/asm/uasm.h | |
parent | 8dee5901b20c5c95278aa3a462eb82826ff98b37 (diff) | |
download | linux-49e9529b9d43773307b8c73bd251b71784830c3d.tar.xz |
MIPS: uasm: add jalr instruction
This patch allows use of the jalr instruction from uasm. It will be used
by a subsequent patch.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Diffstat (limited to 'arch/mips/include/asm/uasm.h')
-rw-r--r-- | arch/mips/include/asm/uasm.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/mips/include/asm/uasm.h b/arch/mips/include/asm/uasm.h index d1275a287770..a3d88aec4d3f 100644 --- a/arch/mips/include/asm/uasm.h +++ b/arch/mips/include/asm/uasm.h @@ -74,6 +74,9 @@ void ISAOPC(op)(u32 **buf, unsigned int a, unsigned int b, unsigned int c, \ #define Ip_u1u2(op) \ void ISAOPC(op)(u32 **buf, unsigned int a, unsigned int b) +#define Ip_u2u1(op) \ +void ISAOPC(op)(u32 **buf, unsigned int a, unsigned int b) + #define Ip_u1s2(op) \ void ISAOPC(op)(u32 **buf, unsigned int a, signed int b) @@ -114,6 +117,7 @@ Ip_u2u1msbu3(_ext); Ip_u2u1msbu3(_ins); Ip_u1(_j); Ip_u1(_jal); +Ip_u2u1(_jalr); Ip_u1(_jr); Ip_u2s3u1(_ld); Ip_u3u1u2(_ldx); |