xref: /OK3568_Linux_fs/kernel/arch/mips/mm/uasm-mips.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * This file is subject to the terms and conditions of the GNU General Public
3*4882a593Smuzhiyun  * License.  See the file "COPYING" in the main directory of this archive
4*4882a593Smuzhiyun  * for more details.
5*4882a593Smuzhiyun  *
6*4882a593Smuzhiyun  * A small micro-assembler. It is intentionally kept simple, does only
7*4882a593Smuzhiyun  * support a subset of instructions, and does not try to hide pipeline
8*4882a593Smuzhiyun  * effects like branch delay slots.
9*4882a593Smuzhiyun  *
10*4882a593Smuzhiyun  * Copyright (C) 2004, 2005, 2006, 2008	 Thiemo Seufer
11*4882a593Smuzhiyun  * Copyright (C) 2005, 2007  Maciej W. Rozycki
12*4882a593Smuzhiyun  * Copyright (C) 2006  Ralf Baechle (ralf@linux-mips.org)
13*4882a593Smuzhiyun  * Copyright (C) 2012, 2013  MIPS Technologies, Inc.  All rights reserved.
14*4882a593Smuzhiyun  */
15*4882a593Smuzhiyun 
16*4882a593Smuzhiyun #include <linux/kernel.h>
17*4882a593Smuzhiyun #include <linux/types.h>
18*4882a593Smuzhiyun 
19*4882a593Smuzhiyun #include <asm/inst.h>
20*4882a593Smuzhiyun #include <asm/elf.h>
21*4882a593Smuzhiyun #include <asm/bugs.h>
22*4882a593Smuzhiyun #include <asm/uasm.h>
23*4882a593Smuzhiyun 
24*4882a593Smuzhiyun #define RS_MASK		0x1f
25*4882a593Smuzhiyun #define RS_SH		21
26*4882a593Smuzhiyun #define RT_MASK		0x1f
27*4882a593Smuzhiyun #define RT_SH		16
28*4882a593Smuzhiyun #define SCIMM_MASK	0xfffff
29*4882a593Smuzhiyun #define SCIMM_SH	6
30*4882a593Smuzhiyun 
31*4882a593Smuzhiyun /* This macro sets the non-variable bits of an instruction. */
32*4882a593Smuzhiyun #define M(a, b, c, d, e, f)					\
33*4882a593Smuzhiyun 	((a) << OP_SH						\
34*4882a593Smuzhiyun 	 | (b) << RS_SH						\
35*4882a593Smuzhiyun 	 | (c) << RT_SH						\
36*4882a593Smuzhiyun 	 | (d) << RD_SH						\
37*4882a593Smuzhiyun 	 | (e) << RE_SH						\
38*4882a593Smuzhiyun 	 | (f) << FUNC_SH)
39*4882a593Smuzhiyun 
40*4882a593Smuzhiyun /* This macro sets the non-variable bits of an R6 instruction. */
41*4882a593Smuzhiyun #define M6(a, b, c, d, e)					\
42*4882a593Smuzhiyun 	((a) << OP_SH						\
43*4882a593Smuzhiyun 	 | (b) << RS_SH						\
44*4882a593Smuzhiyun 	 | (c) << RT_SH						\
45*4882a593Smuzhiyun 	 | (d) << SIMM9_SH					\
46*4882a593Smuzhiyun 	 | (e) << FUNC_SH)
47*4882a593Smuzhiyun 
48*4882a593Smuzhiyun #include "uasm.c"
49*4882a593Smuzhiyun 
50*4882a593Smuzhiyun static const struct insn insn_table[insn_invalid] = {
51*4882a593Smuzhiyun 	[insn_addiu]	= {M(addiu_op, 0, 0, 0, 0, 0), RS | RT | SIMM},
52*4882a593Smuzhiyun 	[insn_addu]	= {M(spec_op, 0, 0, 0, 0, addu_op), RS | RT | RD},
53*4882a593Smuzhiyun 	[insn_and]	= {M(spec_op, 0, 0, 0, 0, and_op), RS | RT | RD},
54*4882a593Smuzhiyun 	[insn_andi]	= {M(andi_op, 0, 0, 0, 0, 0), RS | RT | UIMM},
55*4882a593Smuzhiyun 	[insn_bbit0]	= {M(lwc2_op, 0, 0, 0, 0, 0), RS | RT | BIMM},
56*4882a593Smuzhiyun 	[insn_bbit1]	= {M(swc2_op, 0, 0, 0, 0, 0), RS | RT | BIMM},
57*4882a593Smuzhiyun 	[insn_beq]	= {M(beq_op, 0, 0, 0, 0, 0), RS | RT | BIMM},
58*4882a593Smuzhiyun 	[insn_beql]	= {M(beql_op, 0, 0, 0, 0, 0), RS | RT | BIMM},
59*4882a593Smuzhiyun 	[insn_bgez]	= {M(bcond_op, 0, bgez_op, 0, 0, 0), RS | BIMM},
60*4882a593Smuzhiyun 	[insn_bgezl]	= {M(bcond_op, 0, bgezl_op, 0, 0, 0), RS | BIMM},
61*4882a593Smuzhiyun 	[insn_bgtz]	= {M(bgtz_op, 0, 0, 0, 0, 0), RS | BIMM},
62*4882a593Smuzhiyun 	[insn_blez]	= {M(blez_op, 0, 0, 0, 0, 0), RS | BIMM},
63*4882a593Smuzhiyun 	[insn_bltz]	= {M(bcond_op, 0, bltz_op, 0, 0, 0), RS | BIMM},
64*4882a593Smuzhiyun 	[insn_bltzl]	= {M(bcond_op, 0, bltzl_op, 0, 0, 0), RS | BIMM},
65*4882a593Smuzhiyun 	[insn_bne]	= {M(bne_op, 0, 0, 0, 0, 0), RS | RT | BIMM},
66*4882a593Smuzhiyun 	[insn_break]	= {M(spec_op, 0, 0, 0, 0, break_op), SCIMM},
67*4882a593Smuzhiyun #ifndef CONFIG_CPU_MIPSR6
68*4882a593Smuzhiyun 	[insn_cache]	= {M(cache_op, 0, 0, 0, 0, 0),  RS | RT | SIMM},
69*4882a593Smuzhiyun #else
70*4882a593Smuzhiyun 	[insn_cache]	= {M6(spec3_op, 0, 0, 0, cache6_op),  RS | RT | SIMM9},
71*4882a593Smuzhiyun #endif
72*4882a593Smuzhiyun 	[insn_cfc1]	= {M(cop1_op, cfc_op, 0, 0, 0, 0), RT | RD},
73*4882a593Smuzhiyun 	[insn_cfcmsa]	= {M(msa_op, 0, msa_cfc_op, 0, 0, msa_elm_op), RD | RE},
74*4882a593Smuzhiyun 	[insn_ctc1]	= {M(cop1_op, ctc_op, 0, 0, 0, 0), RT | RD},
75*4882a593Smuzhiyun 	[insn_ctcmsa]	= {M(msa_op, 0, msa_ctc_op, 0, 0, msa_elm_op), RD | RE},
76*4882a593Smuzhiyun 	[insn_daddiu]	= {M(daddiu_op, 0, 0, 0, 0, 0), RS | RT | SIMM},
77*4882a593Smuzhiyun 	[insn_daddu]	= {M(spec_op, 0, 0, 0, 0, daddu_op), RS | RT | RD},
78*4882a593Smuzhiyun 	[insn_ddivu]	= {M(spec_op, 0, 0, 0, 0, ddivu_op), RS | RT},
79*4882a593Smuzhiyun 	[insn_ddivu_r6]	= {M(spec_op, 0, 0, 0, ddivu_ddivu6_op, ddivu_op),
80*4882a593Smuzhiyun 				RS | RT | RD},
81*4882a593Smuzhiyun 	[insn_di]	= {M(cop0_op, mfmc0_op, 0, 12, 0, 0), RT},
82*4882a593Smuzhiyun 	[insn_dins]	= {M(spec3_op, 0, 0, 0, 0, dins_op), RS | RT | RD | RE},
83*4882a593Smuzhiyun 	[insn_dinsm]	= {M(spec3_op, 0, 0, 0, 0, dinsm_op), RS | RT | RD | RE},
84*4882a593Smuzhiyun 	[insn_dinsu]	= {M(spec3_op, 0, 0, 0, 0, dinsu_op), RS | RT | RD | RE},
85*4882a593Smuzhiyun 	[insn_divu]	= {M(spec_op, 0, 0, 0, 0, divu_op), RS | RT},
86*4882a593Smuzhiyun 	[insn_divu_r6]	= {M(spec_op, 0, 0, 0, divu_divu6_op, divu_op),
87*4882a593Smuzhiyun 				RS | RT | RD},
88*4882a593Smuzhiyun 	[insn_dmfc0]	= {M(cop0_op, dmfc_op, 0, 0, 0, 0), RT | RD | SET},
89*4882a593Smuzhiyun 	[insn_dmodu]	= {M(spec_op, 0, 0, 0, ddivu_dmodu_op, ddivu_op),
90*4882a593Smuzhiyun 				RS | RT | RD},
91*4882a593Smuzhiyun 	[insn_dmtc0]	= {M(cop0_op, dmtc_op, 0, 0, 0, 0), RT | RD | SET},
92*4882a593Smuzhiyun 	[insn_dmultu]	= {M(spec_op, 0, 0, 0, 0, dmultu_op), RS | RT},
93*4882a593Smuzhiyun 	[insn_dmulu]	= {M(spec_op, 0, 0, 0, dmult_dmul_op, dmultu_op),
94*4882a593Smuzhiyun 				RS | RT | RD},
95*4882a593Smuzhiyun 	[insn_drotr]	= {M(spec_op, 1, 0, 0, 0, dsrl_op), RT | RD | RE},
96*4882a593Smuzhiyun 	[insn_drotr32]	= {M(spec_op, 1, 0, 0, 0, dsrl32_op), RT | RD | RE},
97*4882a593Smuzhiyun 	[insn_dsbh]	= {M(spec3_op, 0, 0, 0, dsbh_op, dbshfl_op), RT | RD},
98*4882a593Smuzhiyun 	[insn_dshd]	= {M(spec3_op, 0, 0, 0, dshd_op, dbshfl_op), RT | RD},
99*4882a593Smuzhiyun 	[insn_dsll]	= {M(spec_op, 0, 0, 0, 0, dsll_op), RT | RD | RE},
100*4882a593Smuzhiyun 	[insn_dsll32]	= {M(spec_op, 0, 0, 0, 0, dsll32_op), RT | RD | RE},
101*4882a593Smuzhiyun 	[insn_dsllv]	= {M(spec_op, 0, 0, 0, 0, dsllv_op),  RS | RT | RD},
102*4882a593Smuzhiyun 	[insn_dsra]	= {M(spec_op, 0, 0, 0, 0, dsra_op), RT | RD | RE},
103*4882a593Smuzhiyun 	[insn_dsra32]	= {M(spec_op, 0, 0, 0, 0, dsra32_op), RT | RD | RE},
104*4882a593Smuzhiyun 	[insn_dsrav]	= {M(spec_op, 0, 0, 0, 0, dsrav_op),  RS | RT | RD},
105*4882a593Smuzhiyun 	[insn_dsrl]	= {M(spec_op, 0, 0, 0, 0, dsrl_op), RT | RD | RE},
106*4882a593Smuzhiyun 	[insn_dsrl32]	= {M(spec_op, 0, 0, 0, 0, dsrl32_op), RT | RD | RE},
107*4882a593Smuzhiyun 	[insn_dsrlv]	= {M(spec_op, 0, 0, 0, 0, dsrlv_op),  RS | RT | RD},
108*4882a593Smuzhiyun 	[insn_dsubu]	= {M(spec_op, 0, 0, 0, 0, dsubu_op), RS | RT | RD},
109*4882a593Smuzhiyun 	[insn_eret]	= {M(cop0_op, cop_op, 0, 0, 0, eret_op),  0},
110*4882a593Smuzhiyun 	[insn_ext]	= {M(spec3_op, 0, 0, 0, 0, ext_op), RS | RT | RD | RE},
111*4882a593Smuzhiyun 	[insn_ins]	= {M(spec3_op, 0, 0, 0, 0, ins_op), RS | RT | RD | RE},
112*4882a593Smuzhiyun 	[insn_j]	= {M(j_op, 0, 0, 0, 0, 0),  JIMM},
113*4882a593Smuzhiyun 	[insn_jal]	= {M(jal_op, 0, 0, 0, 0, 0),	JIMM},
114*4882a593Smuzhiyun 	[insn_jalr]	= {M(spec_op, 0, 0, 0, 0, jalr_op), RS | RD},
115*4882a593Smuzhiyun #ifndef CONFIG_CPU_MIPSR6
116*4882a593Smuzhiyun 	[insn_jr]	= {M(spec_op, 0, 0, 0, 0, jr_op),  RS},
117*4882a593Smuzhiyun #else
118*4882a593Smuzhiyun 	[insn_jr]	= {M(spec_op, 0, 0, 0, 0, jalr_op),  RS},
119*4882a593Smuzhiyun #endif
120*4882a593Smuzhiyun 	[insn_lb]	= {M(lb_op, 0, 0, 0, 0, 0), RS | RT | SIMM},
121*4882a593Smuzhiyun 	[insn_lbu]	= {M(lbu_op, 0, 0, 0, 0, 0), RS | RT | SIMM},
122*4882a593Smuzhiyun 	[insn_ld]	= {M(ld_op, 0, 0, 0, 0, 0),  RS | RT | SIMM},
123*4882a593Smuzhiyun 	[insn_lddir]	= {M(lwc2_op, 0, 0, 0, lddir_op, mult_op), RS | RT | RD},
124*4882a593Smuzhiyun 	[insn_ldpte]	= {M(lwc2_op, 0, 0, 0, ldpte_op, mult_op), RS | RD},
125*4882a593Smuzhiyun 	[insn_ldx]	= {M(spec3_op, 0, 0, 0, ldx_op, lx_op), RS | RT | RD},
126*4882a593Smuzhiyun 	[insn_lh]	= {M(lh_op, 0, 0, 0, 0, 0),  RS | RT | SIMM},
127*4882a593Smuzhiyun 	[insn_lhu]	= {M(lhu_op, 0, 0, 0, 0, 0),  RS | RT | SIMM},
128*4882a593Smuzhiyun #ifndef CONFIG_CPU_MIPSR6
129*4882a593Smuzhiyun 	[insn_ll]	= {M(ll_op, 0, 0, 0, 0, 0),  RS | RT | SIMM},
130*4882a593Smuzhiyun 	[insn_lld]	= {M(lld_op, 0, 0, 0, 0, 0),	RS | RT | SIMM},
131*4882a593Smuzhiyun #else
132*4882a593Smuzhiyun 	[insn_ll]	= {M6(spec3_op, 0, 0, 0, ll6_op),  RS | RT | SIMM9},
133*4882a593Smuzhiyun 	[insn_lld]	= {M6(spec3_op, 0, 0, 0, lld6_op),  RS | RT | SIMM9},
134*4882a593Smuzhiyun #endif
135*4882a593Smuzhiyun 	[insn_lui]	= {M(lui_op, 0, 0, 0, 0, 0),	RT | SIMM},
136*4882a593Smuzhiyun 	[insn_lw]	= {M(lw_op, 0, 0, 0, 0, 0),  RS | RT | SIMM},
137*4882a593Smuzhiyun 	[insn_lwu]	= {M(lwu_op, 0, 0, 0, 0, 0),  RS | RT | SIMM},
138*4882a593Smuzhiyun 	[insn_lwx]	= {M(spec3_op, 0, 0, 0, lwx_op, lx_op), RS | RT | RD},
139*4882a593Smuzhiyun 	[insn_mfc0]	= {M(cop0_op, mfc_op, 0, 0, 0, 0),  RT | RD | SET},
140*4882a593Smuzhiyun 	[insn_mfhc0]	= {M(cop0_op, mfhc0_op, 0, 0, 0, 0),  RT | RD | SET},
141*4882a593Smuzhiyun 	[insn_mfhi]	= {M(spec_op, 0, 0, 0, 0, mfhi_op), RD},
142*4882a593Smuzhiyun 	[insn_mflo]	= {M(spec_op, 0, 0, 0, 0, mflo_op), RD},
143*4882a593Smuzhiyun 	[insn_modu]	= {M(spec_op, 0, 0, 0, divu_modu_op, divu_op),
144*4882a593Smuzhiyun 				RS | RT | RD},
145*4882a593Smuzhiyun 	[insn_movn]	= {M(spec_op, 0, 0, 0, 0, movn_op), RS | RT | RD},
146*4882a593Smuzhiyun 	[insn_movz]	= {M(spec_op, 0, 0, 0, 0, movz_op), RS | RT | RD},
147*4882a593Smuzhiyun 	[insn_mtc0]	= {M(cop0_op, mtc_op, 0, 0, 0, 0),  RT | RD | SET},
148*4882a593Smuzhiyun 	[insn_mthc0]	= {M(cop0_op, mthc0_op, 0, 0, 0, 0),  RT | RD | SET},
149*4882a593Smuzhiyun 	[insn_mthi]	= {M(spec_op, 0, 0, 0, 0, mthi_op), RS},
150*4882a593Smuzhiyun 	[insn_mtlo]	= {M(spec_op, 0, 0, 0, 0, mtlo_op), RS},
151*4882a593Smuzhiyun 	[insn_mulu]	= {M(spec_op, 0, 0, 0, multu_mulu_op, multu_op),
152*4882a593Smuzhiyun 				RS | RT | RD},
153*4882a593Smuzhiyun #ifndef CONFIG_CPU_MIPSR6
154*4882a593Smuzhiyun 	[insn_mul]	= {M(spec2_op, 0, 0, 0, 0, mul_op), RS | RT | RD},
155*4882a593Smuzhiyun #else
156*4882a593Smuzhiyun 	[insn_mul]	= {M(spec_op, 0, 0, 0, mult_mul_op, mult_op), RS | RT | RD},
157*4882a593Smuzhiyun #endif
158*4882a593Smuzhiyun 	[insn_multu]	= {M(spec_op, 0, 0, 0, 0, multu_op), RS | RT},
159*4882a593Smuzhiyun 	[insn_nor]	= {M(spec_op, 0, 0, 0, 0, nor_op),  RS | RT | RD},
160*4882a593Smuzhiyun 	[insn_or]	= {M(spec_op, 0, 0, 0, 0, or_op),  RS | RT | RD},
161*4882a593Smuzhiyun 	[insn_ori]	= {M(ori_op, 0, 0, 0, 0, 0),	RS | RT | UIMM},
162*4882a593Smuzhiyun #ifndef CONFIG_CPU_MIPSR6
163*4882a593Smuzhiyun 	[insn_pref]	= {M(pref_op, 0, 0, 0, 0, 0),  RS | RT | SIMM},
164*4882a593Smuzhiyun #else
165*4882a593Smuzhiyun 	[insn_pref]	= {M6(spec3_op, 0, 0, 0, pref6_op),  RS | RT | SIMM9},
166*4882a593Smuzhiyun #endif
167*4882a593Smuzhiyun 	[insn_rfe]	= {M(cop0_op, cop_op, 0, 0, 0, rfe_op),  0},
168*4882a593Smuzhiyun 	[insn_rotr]	= {M(spec_op, 1, 0, 0, 0, srl_op),  RT | RD | RE},
169*4882a593Smuzhiyun 	[insn_sb]	= {M(sb_op, 0, 0, 0, 0, 0),  RS | RT | SIMM},
170*4882a593Smuzhiyun #ifndef CONFIG_CPU_MIPSR6
171*4882a593Smuzhiyun 	[insn_sc]	= {M(sc_op, 0, 0, 0, 0, 0),  RS | RT | SIMM},
172*4882a593Smuzhiyun 	[insn_scd]	= {M(scd_op, 0, 0, 0, 0, 0),	RS | RT | SIMM},
173*4882a593Smuzhiyun #else
174*4882a593Smuzhiyun 	[insn_sc]	= {M6(spec3_op, 0, 0, 0, sc6_op),  RS | RT | SIMM9},
175*4882a593Smuzhiyun 	[insn_scd]	= {M6(spec3_op, 0, 0, 0, scd6_op),  RS | RT | SIMM9},
176*4882a593Smuzhiyun #endif
177*4882a593Smuzhiyun 	[insn_sd]	= {M(sd_op, 0, 0, 0, 0, 0),  RS | RT | SIMM},
178*4882a593Smuzhiyun 	[insn_seleqz]	= {M(spec_op, 0, 0, 0, 0, seleqz_op), RS | RT | RD},
179*4882a593Smuzhiyun 	[insn_selnez]	= {M(spec_op, 0, 0, 0, 0, selnez_op), RS | RT | RD},
180*4882a593Smuzhiyun 	[insn_sh]	= {M(sh_op, 0, 0, 0, 0, 0),  RS | RT | SIMM},
181*4882a593Smuzhiyun 	[insn_sll]	= {M(spec_op, 0, 0, 0, 0, sll_op),  RT | RD | RE},
182*4882a593Smuzhiyun 	[insn_sllv]	= {M(spec_op, 0, 0, 0, 0, sllv_op),  RS | RT | RD},
183*4882a593Smuzhiyun 	[insn_slt]	= {M(spec_op, 0, 0, 0, 0, slt_op),  RS | RT | RD},
184*4882a593Smuzhiyun 	[insn_slti]	= {M(slti_op, 0, 0, 0, 0, 0), RS | RT | SIMM},
185*4882a593Smuzhiyun 	[insn_sltiu]	= {M(sltiu_op, 0, 0, 0, 0, 0), RS | RT | SIMM},
186*4882a593Smuzhiyun 	[insn_sltu]	= {M(spec_op, 0, 0, 0, 0, sltu_op), RS | RT | RD},
187*4882a593Smuzhiyun 	[insn_sra]	= {M(spec_op, 0, 0, 0, 0, sra_op),  RT | RD | RE},
188*4882a593Smuzhiyun 	[insn_srav]	= {M(spec_op, 0, 0, 0, 0, srav_op), RS | RT | RD},
189*4882a593Smuzhiyun 	[insn_srl]	= {M(spec_op, 0, 0, 0, 0, srl_op),  RT | RD | RE},
190*4882a593Smuzhiyun 	[insn_srlv]	= {M(spec_op, 0, 0, 0, 0, srlv_op),  RS | RT | RD},
191*4882a593Smuzhiyun 	[insn_subu]	= {M(spec_op, 0, 0, 0, 0, subu_op),	RS | RT | RD},
192*4882a593Smuzhiyun 	[insn_sw]	= {M(sw_op, 0, 0, 0, 0, 0),  RS | RT | SIMM},
193*4882a593Smuzhiyun 	[insn_sync]	= {M(spec_op, 0, 0, 0, 0, sync_op), RE},
194*4882a593Smuzhiyun 	[insn_syscall]	= {M(spec_op, 0, 0, 0, 0, syscall_op), SCIMM},
195*4882a593Smuzhiyun 	[insn_tlbp]	= {M(cop0_op, cop_op, 0, 0, 0, tlbp_op),  0},
196*4882a593Smuzhiyun 	[insn_tlbr]	= {M(cop0_op, cop_op, 0, 0, 0, tlbr_op),  0},
197*4882a593Smuzhiyun 	[insn_tlbwi]	= {M(cop0_op, cop_op, 0, 0, 0, tlbwi_op),  0},
198*4882a593Smuzhiyun 	[insn_tlbwr]	= {M(cop0_op, cop_op, 0, 0, 0, tlbwr_op),  0},
199*4882a593Smuzhiyun 	[insn_wait]	= {M(cop0_op, cop_op, 0, 0, 0, wait_op), SCIMM},
200*4882a593Smuzhiyun 	[insn_wsbh]	= {M(spec3_op, 0, 0, 0, wsbh_op, bshfl_op), RT | RD},
201*4882a593Smuzhiyun 	[insn_xor]	= {M(spec_op, 0, 0, 0, 0, xor_op),  RS | RT | RD},
202*4882a593Smuzhiyun 	[insn_xori]	= {M(xori_op, 0, 0, 0, 0, 0),  RS | RT | UIMM},
203*4882a593Smuzhiyun 	[insn_yield]	= {M(spec3_op, 0, 0, 0, 0, yield_op), RS | RD},
204*4882a593Smuzhiyun };
205*4882a593Smuzhiyun 
206*4882a593Smuzhiyun #undef M
207*4882a593Smuzhiyun 
build_bimm(s32 arg)208*4882a593Smuzhiyun static inline u32 build_bimm(s32 arg)
209*4882a593Smuzhiyun {
210*4882a593Smuzhiyun 	WARN(arg > 0x1ffff || arg < -0x20000,
211*4882a593Smuzhiyun 	     KERN_WARNING "Micro-assembler field overflow\n");
212*4882a593Smuzhiyun 
213*4882a593Smuzhiyun 	WARN(arg & 0x3, KERN_WARNING "Invalid micro-assembler branch target\n");
214*4882a593Smuzhiyun 
215*4882a593Smuzhiyun 	return ((arg < 0) ? (1 << 15) : 0) | ((arg >> 2) & 0x7fff);
216*4882a593Smuzhiyun }
217*4882a593Smuzhiyun 
build_jimm(u32 arg)218*4882a593Smuzhiyun static inline u32 build_jimm(u32 arg)
219*4882a593Smuzhiyun {
220*4882a593Smuzhiyun 	WARN(arg & ~(JIMM_MASK << 2),
221*4882a593Smuzhiyun 	     KERN_WARNING "Micro-assembler field overflow\n");
222*4882a593Smuzhiyun 
223*4882a593Smuzhiyun 	return (arg >> 2) & JIMM_MASK;
224*4882a593Smuzhiyun }
225*4882a593Smuzhiyun 
226*4882a593Smuzhiyun /*
227*4882a593Smuzhiyun  * The order of opcode arguments is implicitly left to right,
228*4882a593Smuzhiyun  * starting with RS and ending with FUNC or IMM.
229*4882a593Smuzhiyun  */
build_insn(u32 ** buf,enum opcode opc,...)230*4882a593Smuzhiyun static void build_insn(u32 **buf, enum opcode opc, ...)
231*4882a593Smuzhiyun {
232*4882a593Smuzhiyun 	const struct insn *ip;
233*4882a593Smuzhiyun 	va_list ap;
234*4882a593Smuzhiyun 	u32 op;
235*4882a593Smuzhiyun 
236*4882a593Smuzhiyun 	if (opc < 0 || opc >= insn_invalid ||
237*4882a593Smuzhiyun 	    (opc == insn_daddiu && r4k_daddiu_bug()) ||
238*4882a593Smuzhiyun 	    (insn_table[opc].match == 0 && insn_table[opc].fields == 0))
239*4882a593Smuzhiyun 		panic("Unsupported Micro-assembler instruction %d", opc);
240*4882a593Smuzhiyun 
241*4882a593Smuzhiyun 	ip = &insn_table[opc];
242*4882a593Smuzhiyun 
243*4882a593Smuzhiyun 	op = ip->match;
244*4882a593Smuzhiyun 	va_start(ap, opc);
245*4882a593Smuzhiyun 	if (ip->fields & RS)
246*4882a593Smuzhiyun 		op |= build_rs(va_arg(ap, u32));
247*4882a593Smuzhiyun 	if (ip->fields & RT)
248*4882a593Smuzhiyun 		op |= build_rt(va_arg(ap, u32));
249*4882a593Smuzhiyun 	if (ip->fields & RD)
250*4882a593Smuzhiyun 		op |= build_rd(va_arg(ap, u32));
251*4882a593Smuzhiyun 	if (ip->fields & RE)
252*4882a593Smuzhiyun 		op |= build_re(va_arg(ap, u32));
253*4882a593Smuzhiyun 	if (ip->fields & SIMM)
254*4882a593Smuzhiyun 		op |= build_simm(va_arg(ap, s32));
255*4882a593Smuzhiyun 	if (ip->fields & UIMM)
256*4882a593Smuzhiyun 		op |= build_uimm(va_arg(ap, u32));
257*4882a593Smuzhiyun 	if (ip->fields & BIMM)
258*4882a593Smuzhiyun 		op |= build_bimm(va_arg(ap, s32));
259*4882a593Smuzhiyun 	if (ip->fields & JIMM)
260*4882a593Smuzhiyun 		op |= build_jimm(va_arg(ap, u32));
261*4882a593Smuzhiyun 	if (ip->fields & FUNC)
262*4882a593Smuzhiyun 		op |= build_func(va_arg(ap, u32));
263*4882a593Smuzhiyun 	if (ip->fields & SET)
264*4882a593Smuzhiyun 		op |= build_set(va_arg(ap, u32));
265*4882a593Smuzhiyun 	if (ip->fields & SCIMM)
266*4882a593Smuzhiyun 		op |= build_scimm(va_arg(ap, u32));
267*4882a593Smuzhiyun 	if (ip->fields & SIMM9)
268*4882a593Smuzhiyun 		op |= build_scimm9(va_arg(ap, u32));
269*4882a593Smuzhiyun 	va_end(ap);
270*4882a593Smuzhiyun 
271*4882a593Smuzhiyun 	**buf = op;
272*4882a593Smuzhiyun 	(*buf)++;
273*4882a593Smuzhiyun }
274*4882a593Smuzhiyun 
275*4882a593Smuzhiyun static inline void
__resolve_relocs(struct uasm_reloc * rel,struct uasm_label * lab)276*4882a593Smuzhiyun __resolve_relocs(struct uasm_reloc *rel, struct uasm_label *lab)
277*4882a593Smuzhiyun {
278*4882a593Smuzhiyun 	long laddr = (long)lab->addr;
279*4882a593Smuzhiyun 	long raddr = (long)rel->addr;
280*4882a593Smuzhiyun 
281*4882a593Smuzhiyun 	switch (rel->type) {
282*4882a593Smuzhiyun 	case R_MIPS_PC16:
283*4882a593Smuzhiyun 		*rel->addr |= build_bimm(laddr - (raddr + 4));
284*4882a593Smuzhiyun 		break;
285*4882a593Smuzhiyun 
286*4882a593Smuzhiyun 	default:
287*4882a593Smuzhiyun 		panic("Unsupported Micro-assembler relocation %d",
288*4882a593Smuzhiyun 		      rel->type);
289*4882a593Smuzhiyun 	}
290*4882a593Smuzhiyun }
291