aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/mm/uasm.c
diff options
context:
space:
mode:
authorMarkos Chandras <markos.chandras@imgtec.com>2014-04-08 07:47:02 -0400
committerRalf Baechle <ralf@linux-mips.org>2014-05-30 06:36:03 -0400
commitbeef8e020d43c31a8741d3fb4781914ad1f4e420 (patch)
treeea86bac7e5076c09a818a8b1d83f1c8a0c615860 /arch/mips/mm/uasm.c
parentc410352699e2a1adc77969f19eb63030e610d048 (diff)
MIPS: uasm: Add u3u2u1 instruction builders
It will be used later on by the sllv and srlv instructions. Signed-off-by: Markos Chandras <markos.chandras@imgtec.com> Cc: linux-mips@linux-mips.org Patchwork: http://patchwork.linux-mips.org/patch/6723/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm/uasm.c')
-rw-r--r--arch/mips/mm/uasm.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/mips/mm/uasm.c b/arch/mips/mm/uasm.c
index 55a1fdfb76ef..0969a52384b4 100644
--- a/arch/mips/mm/uasm.c
+++ b/arch/mips/mm/uasm.c
@@ -144,6 +144,13 @@ Ip_u2u1u3(op) \
144} \ 144} \
145UASM_EXPORT_SYMBOL(uasm_i##op); 145UASM_EXPORT_SYMBOL(uasm_i##op);
146 146
147#define I_u3u2u1(op) \
148Ip_u3u2u1(op) \
149{ \
150 build_insn(buf, insn##op, c, b, a); \
151} \
152UASM_EXPORT_SYMBOL(uasm_i##op);
153
147#define I_u3u1u2(op) \ 154#define I_u3u1u2(op) \
148Ip_u3u1u2(op) \ 155Ip_u3u1u2(op) \
149{ \ 156{ \