blob: 3affd08a262b17dc3183dbdb1aedfc9e0ae0e0e2 [file] [log] [blame]
Thiemo Seufere30ec452008-01-28 20:05:38 +00001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * A small micro-assembler. It is intentionally kept simple, does only
7 * support a subset of instructions, and does not try to hide pipeline
8 * effects like branch delay slots.
9 *
Ralf Baechle70342282013-01-22 12:59:30 +010010 * Copyright (C) 2004, 2005, 2006, 2008 Thiemo Seufer
Thiemo Seufere30ec452008-01-28 20:05:38 +000011 * Copyright (C) 2005, 2007 Maciej W. Rozycki
12 * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org)
Steven J. Hillabc597f2013-02-05 16:52:01 -060013 * Copyright (C) 2012, 2013 MIPS Technologies, Inc. All rights reserved.
Thiemo Seufere30ec452008-01-28 20:05:38 +000014 */
15
Thiemo Seufere30ec452008-01-28 20:05:38 +000016enum fields {
17 RS = 0x001,
18 RT = 0x002,
19 RD = 0x004,
20 RE = 0x008,
21 SIMM = 0x010,
22 UIMM = 0x020,
23 BIMM = 0x040,
24 JIMM = 0x080,
25 FUNC = 0x100,
David Daney58b9e222010-02-18 16:13:03 -080026 SET = 0x200,
Leonid Yegoshin51eec48e2014-11-18 16:24:15 +000027 SCIMM = 0x400,
28 SIMM9 = 0x800,
Thiemo Seufere30ec452008-01-28 20:05:38 +000029};
30
31#define OP_MASK 0x3f
32#define OP_SH 26
Thiemo Seufere30ec452008-01-28 20:05:38 +000033#define RD_MASK 0x1f
34#define RD_SH 11
35#define RE_MASK 0x1f
36#define RE_SH 6
37#define IMM_MASK 0xffff
38#define IMM_SH 0
39#define JIMM_MASK 0x3ffffff
40#define JIMM_SH 0
41#define FUNC_MASK 0x3f
42#define FUNC_SH 0
43#define SET_MASK 0x7
44#define SET_SH 0
Leonid Yegoshin51eec48e2014-11-18 16:24:15 +000045#define SIMM9_SH 7
46#define SIMM9_MASK 0x1ff
Thiemo Seufere30ec452008-01-28 20:05:38 +000047
48enum opcode {
49 insn_invalid,
Steven J. Hill71a1c772012-06-19 19:59:29 +010050 insn_addiu, insn_addu, insn_and, insn_andi, insn_bbit0, insn_bbit1,
51 insn_beq, insn_beql, insn_bgez, insn_bgezl, insn_bltz, insn_bltzl,
James Hogan59e35592016-06-23 17:34:35 +010052 insn_bne, insn_cache, insn_cfc1, insn_cfcmsa, insn_ctc1, insn_ctcmsa,
53 insn_daddiu, insn_daddu, insn_dins, insn_dinsm, insn_divu, insn_dmfc0,
54 insn_dmtc0, insn_drotr, insn_drotr32, insn_dsll, insn_dsll32, insn_dsra,
55 insn_dsrl, insn_dsrl32, insn_dsubu, insn_eret, insn_ext, insn_ins,
56 insn_j, insn_jal, insn_jalr, insn_jr, insn_lb, insn_ld, insn_ldx,
57 insn_lh, insn_ll, insn_lld, insn_lui, insn_lw, insn_lwx, insn_mfc0,
58 insn_mfhc0, insn_mfhi, insn_mflo, insn_mtc0, insn_mthc0, insn_mul,
59 insn_or, insn_ori, insn_pref, insn_rfe, insn_rotr, insn_sc, insn_scd,
60 insn_sd, insn_sll, insn_sllv, insn_slt, insn_sltiu, insn_sltu, insn_sra,
61 insn_srl, insn_srlv, insn_subu, insn_sw, insn_sync, insn_syscall,
62 insn_tlbp, insn_tlbr, insn_tlbwi, insn_tlbwr, insn_wait, insn_wsbh,
63 insn_xor, insn_xori, insn_yield, insn_lddir, insn_ldpte,
Thiemo Seufere30ec452008-01-28 20:05:38 +000064};
65
66struct insn {
67 enum opcode opcode;
68 u32 match;
69 enum fields fields;
70};
71
Paul Gortmaker078a55f2013-06-18 13:38:59 +000072static inline u32 build_rs(u32 arg)
Thiemo Seufere30ec452008-01-28 20:05:38 +000073{
David Daney8d662c8d2010-12-27 18:18:29 -080074 WARN(arg & ~RS_MASK, KERN_WARNING "Micro-assembler field overflow\n");
Thiemo Seufere30ec452008-01-28 20:05:38 +000075
76 return (arg & RS_MASK) << RS_SH;
77}
78
Paul Gortmaker078a55f2013-06-18 13:38:59 +000079static inline u32 build_rt(u32 arg)
Thiemo Seufere30ec452008-01-28 20:05:38 +000080{
David Daney8d662c8d2010-12-27 18:18:29 -080081 WARN(arg & ~RT_MASK, KERN_WARNING "Micro-assembler field overflow\n");
Thiemo Seufere30ec452008-01-28 20:05:38 +000082
83 return (arg & RT_MASK) << RT_SH;
84}
85
Paul Gortmaker078a55f2013-06-18 13:38:59 +000086static inline u32 build_rd(u32 arg)
Thiemo Seufere30ec452008-01-28 20:05:38 +000087{
David Daney8d662c8d2010-12-27 18:18:29 -080088 WARN(arg & ~RD_MASK, KERN_WARNING "Micro-assembler field overflow\n");
Thiemo Seufere30ec452008-01-28 20:05:38 +000089
90 return (arg & RD_MASK) << RD_SH;
91}
92
Paul Gortmaker078a55f2013-06-18 13:38:59 +000093static inline u32 build_re(u32 arg)
Thiemo Seufere30ec452008-01-28 20:05:38 +000094{
David Daney8d662c8d2010-12-27 18:18:29 -080095 WARN(arg & ~RE_MASK, KERN_WARNING "Micro-assembler field overflow\n");
Thiemo Seufere30ec452008-01-28 20:05:38 +000096
97 return (arg & RE_MASK) << RE_SH;
98}
99
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000100static inline u32 build_simm(s32 arg)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000101{
David Daney8d662c8d2010-12-27 18:18:29 -0800102 WARN(arg > 0x7fff || arg < -0x8000,
103 KERN_WARNING "Micro-assembler field overflow\n");
Thiemo Seufere30ec452008-01-28 20:05:38 +0000104
105 return arg & 0xffff;
106}
107
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000108static inline u32 build_uimm(u32 arg)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000109{
David Daney8d662c8d2010-12-27 18:18:29 -0800110 WARN(arg & ~IMM_MASK, KERN_WARNING "Micro-assembler field overflow\n");
Thiemo Seufere30ec452008-01-28 20:05:38 +0000111
112 return arg & IMM_MASK;
113}
114
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000115static inline u32 build_scimm(u32 arg)
David Daney58b9e222010-02-18 16:13:03 -0800116{
David Daney8d662c8d2010-12-27 18:18:29 -0800117 WARN(arg & ~SCIMM_MASK,
118 KERN_WARNING "Micro-assembler field overflow\n");
David Daney58b9e222010-02-18 16:13:03 -0800119
120 return (arg & SCIMM_MASK) << SCIMM_SH;
121}
122
Leonid Yegoshin51eec48e2014-11-18 16:24:15 +0000123static inline u32 build_scimm9(s32 arg)
124{
125 WARN((arg > 0xff || arg < -0x100),
126 KERN_WARNING "Micro-assembler field overflow\n");
127
128 return (arg & SIMM9_MASK) << SIMM9_SH;
129}
130
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000131static inline u32 build_func(u32 arg)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000132{
David Daney8d662c8d2010-12-27 18:18:29 -0800133 WARN(arg & ~FUNC_MASK, KERN_WARNING "Micro-assembler field overflow\n");
Thiemo Seufere30ec452008-01-28 20:05:38 +0000134
135 return arg & FUNC_MASK;
136}
137
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000138static inline u32 build_set(u32 arg)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000139{
David Daney8d662c8d2010-12-27 18:18:29 -0800140 WARN(arg & ~SET_MASK, KERN_WARNING "Micro-assembler field overflow\n");
Thiemo Seufere30ec452008-01-28 20:05:38 +0000141
142 return arg & SET_MASK;
143}
144
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000145static void build_insn(u32 **buf, enum opcode opc, ...);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000146
147#define I_u1u2u3(op) \
148Ip_u1u2u3(op) \
149{ \
150 build_insn(buf, insn##op, a, b, c); \
David Daney22b07632010-07-23 18:41:43 -0700151} \
152UASM_EXPORT_SYMBOL(uasm_i##op);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000153
Markos Chandras9d987362014-06-23 10:38:44 +0100154#define I_s3s1s2(op) \
155Ip_s3s1s2(op) \
156{ \
157 build_insn(buf, insn##op, b, c, a); \
158} \
159UASM_EXPORT_SYMBOL(uasm_i##op);
160
Thiemo Seufere30ec452008-01-28 20:05:38 +0000161#define I_u2u1u3(op) \
162Ip_u2u1u3(op) \
163{ \
164 build_insn(buf, insn##op, b, a, c); \
David Daney22b07632010-07-23 18:41:43 -0700165} \
166UASM_EXPORT_SYMBOL(uasm_i##op);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000167
Markos Chandrasbeef8e02014-04-08 12:47:02 +0100168#define I_u3u2u1(op) \
169Ip_u3u2u1(op) \
170{ \
171 build_insn(buf, insn##op, c, b, a); \
172} \
173UASM_EXPORT_SYMBOL(uasm_i##op);
174
Thiemo Seufere30ec452008-01-28 20:05:38 +0000175#define I_u3u1u2(op) \
176Ip_u3u1u2(op) \
177{ \
178 build_insn(buf, insn##op, b, c, a); \
David Daney22b07632010-07-23 18:41:43 -0700179} \
180UASM_EXPORT_SYMBOL(uasm_i##op);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000181
182#define I_u1u2s3(op) \
183Ip_u1u2s3(op) \
184{ \
185 build_insn(buf, insn##op, a, b, c); \
David Daney22b07632010-07-23 18:41:43 -0700186} \
187UASM_EXPORT_SYMBOL(uasm_i##op);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000188
189#define I_u2s3u1(op) \
190Ip_u2s3u1(op) \
191{ \
192 build_insn(buf, insn##op, c, a, b); \
David Daney22b07632010-07-23 18:41:43 -0700193} \
194UASM_EXPORT_SYMBOL(uasm_i##op);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000195
196#define I_u2u1s3(op) \
197Ip_u2u1s3(op) \
198{ \
199 build_insn(buf, insn##op, b, a, c); \
David Daney22b07632010-07-23 18:41:43 -0700200} \
201UASM_EXPORT_SYMBOL(uasm_i##op);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000202
David Daney92078e02009-10-14 12:16:55 -0700203#define I_u2u1msbu3(op) \
204Ip_u2u1msbu3(op) \
205{ \
206 build_insn(buf, insn##op, b, a, c+d-1, c); \
David Daney22b07632010-07-23 18:41:43 -0700207} \
208UASM_EXPORT_SYMBOL(uasm_i##op);
David Daney92078e02009-10-14 12:16:55 -0700209
David Daneyc42aef02010-12-21 14:19:10 -0800210#define I_u2u1msb32u3(op) \
211Ip_u2u1msbu3(op) \
212{ \
213 build_insn(buf, insn##op, b, a, c+d-33, c); \
214} \
215UASM_EXPORT_SYMBOL(uasm_i##op);
216
Ralf Baechle70342282013-01-22 12:59:30 +0100217#define I_u2u1msbdu3(op) \
Steven J. Hille6de1a02012-07-12 17:21:31 +0000218Ip_u2u1msbu3(op) \
219{ \
220 build_insn(buf, insn##op, b, a, d-1, c); \
221} \
222UASM_EXPORT_SYMBOL(uasm_i##op);
223
Thiemo Seufere30ec452008-01-28 20:05:38 +0000224#define I_u1u2(op) \
225Ip_u1u2(op) \
226{ \
227 build_insn(buf, insn##op, a, b); \
David Daney22b07632010-07-23 18:41:43 -0700228} \
229UASM_EXPORT_SYMBOL(uasm_i##op);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000230
Paul Burtond674dd12014-03-04 15:12:36 +0000231#define I_u2u1(op) \
232Ip_u1u2(op) \
233{ \
234 build_insn(buf, insn##op, b, a); \
235} \
236UASM_EXPORT_SYMBOL(uasm_i##op);
237
Thiemo Seufere30ec452008-01-28 20:05:38 +0000238#define I_u1s2(op) \
239Ip_u1s2(op) \
240{ \
241 build_insn(buf, insn##op, a, b); \
David Daney22b07632010-07-23 18:41:43 -0700242} \
243UASM_EXPORT_SYMBOL(uasm_i##op);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000244
245#define I_u1(op) \
246Ip_u1(op) \
247{ \
248 build_insn(buf, insn##op, a); \
David Daney22b07632010-07-23 18:41:43 -0700249} \
250UASM_EXPORT_SYMBOL(uasm_i##op);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000251
252#define I_0(op) \
253Ip_0(op) \
254{ \
255 build_insn(buf, insn##op); \
David Daney22b07632010-07-23 18:41:43 -0700256} \
257UASM_EXPORT_SYMBOL(uasm_i##op);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000258
259I_u2u1s3(_addiu)
260I_u3u1u2(_addu)
261I_u2u1u3(_andi)
262I_u3u1u2(_and)
263I_u1u2s3(_beq)
264I_u1u2s3(_beql)
265I_u1s2(_bgez)
266I_u1s2(_bgezl)
267I_u1s2(_bltz)
268I_u1s2(_bltzl)
269I_u1u2s3(_bne)
Thiemo Seuferfb2a27e72008-02-18 19:32:49 +0000270I_u2s3u1(_cache)
James Hoganc29732a2016-06-23 17:34:34 +0100271I_u1u2(_cfc1)
James Hogan59e35592016-06-23 17:34:35 +0100272I_u2u1(_cfcmsa)
James Hoganc29732a2016-06-23 17:34:34 +0100273I_u1u2(_ctc1)
James Hogan59e35592016-06-23 17:34:35 +0100274I_u2u1(_ctcmsa)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000275I_u1u2u3(_dmfc0)
276I_u1u2u3(_dmtc0)
277I_u2u1s3(_daddiu)
278I_u3u1u2(_daddu)
Markos Chandras4c12a852014-04-08 12:47:06 +0100279I_u1u2(_divu)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000280I_u2u1u3(_dsll)
281I_u2u1u3(_dsll32)
282I_u2u1u3(_dsra)
283I_u2u1u3(_dsrl)
284I_u2u1u3(_dsrl32)
David Daney92078e02009-10-14 12:16:55 -0700285I_u2u1u3(_drotr)
David Daneyde6d5b552010-07-23 18:41:41 -0700286I_u2u1u3(_drotr32)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000287I_u3u1u2(_dsubu)
288I_0(_eret)
Steven J. Hille6de1a02012-07-12 17:21:31 +0000289I_u2u1msbdu3(_ext)
290I_u2u1msbu3(_ins)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000291I_u1(_j)
292I_u1(_jal)
Paul Burton49e9529b2014-03-16 12:58:05 +0000293I_u2u1(_jalr)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000294I_u1(_jr)
Markos Chandras82488812014-04-16 13:49:57 +0100295I_u2s3u1(_lb)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000296I_u2s3u1(_ld)
Markos Chandrasd6b33142014-04-08 12:47:12 +0100297I_u2s3u1(_lh)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000298I_u2s3u1(_ll)
299I_u2s3u1(_lld)
300I_u1s2(_lui)
301I_u2s3u1(_lw)
302I_u1u2u3(_mfc0)
Steven J. Hille2965cd2014-11-13 09:52:02 -0600303I_u1u2u3(_mfhc0)
Markos Chandrasf3ec7a22014-04-08 12:47:07 +0100304I_u1(_mfhi)
Markos Chandras16d21a82014-04-14 15:42:31 +0100305I_u1(_mflo)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000306I_u1u2u3(_mtc0)
Steven J. Hille2965cd2014-11-13 09:52:02 -0600307I_u1u2u3(_mthc0)
Markos Chandrasa8e897a2014-04-08 12:47:13 +0100308I_u3u1u2(_mul)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000309I_u2u1u3(_ori)
Ralf Baechle58081842010-03-23 15:54:50 +0100310I_u3u1u2(_or)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000311I_0(_rfe)
312I_u2s3u1(_sc)
313I_u2s3u1(_scd)
314I_u2s3u1(_sd)
315I_u2u1u3(_sll)
Markos Chandrasbef581b2014-04-08 12:47:04 +0100316I_u3u2u1(_sllv)
Markos Chandras7682f9e2014-06-23 10:38:45 +0100317I_s3s1s2(_slt)
Markos Chandras390363e2014-04-08 12:47:09 +0100318I_u2u1s3(_sltiu)
Markos Chandrase8ef8682014-04-08 12:47:10 +0100319I_u3u1u2(_sltu)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000320I_u2u1u3(_sra)
321I_u2u1u3(_srl)
Markos Chandrasf31318f2014-04-08 12:47:05 +0100322I_u3u2u1(_srlv)
David Daney32546f32010-02-10 15:12:46 -0800323I_u2u1u3(_rotr)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000324I_u3u1u2(_subu)
325I_u2s3u1(_sw)
Paul Burton729ff562013-12-24 03:49:45 +0000326I_u1(_sync)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000327I_0(_tlbp)
David Daney32546f32010-02-10 15:12:46 -0800328I_0(_tlbr)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000329I_0(_tlbwi)
330I_0(_tlbwr)
Paul Burton53ed1382013-12-24 03:50:35 +0000331I_u1(_wait);
Markos Chandrasab9e4fa2014-04-08 12:47:11 +0100332I_u2u1(_wsbh)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000333I_u3u1u2(_xor)
334I_u2u1u3(_xori)
Paul Burtond674dd12014-03-04 15:12:36 +0000335I_u2u1(_yield)
David Daney92078e02009-10-14 12:16:55 -0700336I_u2u1msbu3(_dins);
David Daneyc42aef02010-12-21 14:19:10 -0800337I_u2u1msb32u3(_dinsm);
David Daney58b9e222010-02-18 16:13:03 -0800338I_u1(_syscall);
David Daney5b97c3f2010-07-23 18:41:42 -0700339I_u1u2s3(_bbit0);
340I_u1u2s3(_bbit1);
David Daneybb3d68c2010-12-27 18:07:56 -0800341I_u3u1u2(_lwx)
342I_u3u1u2(_ldx)
Huacai Chen380cd582016-03-03 09:45:12 +0800343I_u1u2(_ldpte)
344I_u2u1u3(_lddir)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000345
David Daneyc9941152010-10-07 16:03:53 -0700346#ifdef CONFIG_CPU_CAVIUM_OCTEON
347#include <asm/octeon/octeon.h>
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000348void ISAFUNC(uasm_i_pref)(u32 **buf, unsigned int a, signed int b,
David Daneyc9941152010-10-07 16:03:53 -0700349 unsigned int c)
350{
David Daneye3d0ead2015-01-15 16:11:13 +0300351 if (CAVIUM_OCTEON_DCACHE_PREFETCH_WAR && a <= 24 && a != 5)
David Daneyc9941152010-10-07 16:03:53 -0700352 /*
353 * As per erratum Core-14449, replace prefetches 0-4,
354 * 6-24 with 'pref 28'.
355 */
356 build_insn(buf, insn_pref, c, 28, b);
357 else
358 build_insn(buf, insn_pref, c, a, b);
359}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600360UASM_EXPORT_SYMBOL(ISAFUNC(uasm_i_pref));
David Daneyc9941152010-10-07 16:03:53 -0700361#else
362I_u2s3u1(_pref)
363#endif
364
Thiemo Seufere30ec452008-01-28 20:05:38 +0000365/* Handle labels. */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000366void ISAFUNC(uasm_build_label)(struct uasm_label **lab, u32 *addr, int lid)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000367{
368 (*lab)->addr = addr;
369 (*lab)->lab = lid;
370 (*lab)++;
371}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600372UASM_EXPORT_SYMBOL(ISAFUNC(uasm_build_label));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000373
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000374int ISAFUNC(uasm_in_compat_space_p)(long addr)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000375{
376 /* Is this address in 32bit compat space? */
377#ifdef CONFIG_64BIT
378 return (((addr) & 0xffffffff00000000L) == 0xffffffff00000000L);
379#else
380 return 1;
381#endif
382}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600383UASM_EXPORT_SYMBOL(ISAFUNC(uasm_in_compat_space_p));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000384
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000385static int uasm_rel_highest(long val)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000386{
387#ifdef CONFIG_64BIT
388 return ((((val + 0x800080008000L) >> 48) & 0xffff) ^ 0x8000) - 0x8000;
389#else
390 return 0;
391#endif
392}
393
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000394static int uasm_rel_higher(long val)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000395{
396#ifdef CONFIG_64BIT
397 return ((((val + 0x80008000L) >> 32) & 0xffff) ^ 0x8000) - 0x8000;
398#else
399 return 0;
400#endif
401}
402
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000403int ISAFUNC(uasm_rel_hi)(long val)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000404{
405 return ((((val + 0x8000L) >> 16) & 0xffff) ^ 0x8000) - 0x8000;
406}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600407UASM_EXPORT_SYMBOL(ISAFUNC(uasm_rel_hi));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000408
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000409int ISAFUNC(uasm_rel_lo)(long val)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000410{
411 return ((val & 0xffff) ^ 0x8000) - 0x8000;
412}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600413UASM_EXPORT_SYMBOL(ISAFUNC(uasm_rel_lo));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000414
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000415void ISAFUNC(UASM_i_LA_mostly)(u32 **buf, unsigned int rs, long addr)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000416{
Steven J. Hillabc597f2013-02-05 16:52:01 -0600417 if (!ISAFUNC(uasm_in_compat_space_p)(addr)) {
418 ISAFUNC(uasm_i_lui)(buf, rs, uasm_rel_highest(addr));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000419 if (uasm_rel_higher(addr))
Steven J. Hillabc597f2013-02-05 16:52:01 -0600420 ISAFUNC(uasm_i_daddiu)(buf, rs, rs, uasm_rel_higher(addr));
421 if (ISAFUNC(uasm_rel_hi(addr))) {
422 ISAFUNC(uasm_i_dsll)(buf, rs, rs, 16);
423 ISAFUNC(uasm_i_daddiu)(buf, rs, rs,
424 ISAFUNC(uasm_rel_hi)(addr));
425 ISAFUNC(uasm_i_dsll)(buf, rs, rs, 16);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000426 } else
Steven J. Hillabc597f2013-02-05 16:52:01 -0600427 ISAFUNC(uasm_i_dsll32)(buf, rs, rs, 0);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000428 } else
Steven J. Hillabc597f2013-02-05 16:52:01 -0600429 ISAFUNC(uasm_i_lui)(buf, rs, ISAFUNC(uasm_rel_hi(addr)));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000430}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600431UASM_EXPORT_SYMBOL(ISAFUNC(UASM_i_LA_mostly));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000432
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000433void ISAFUNC(UASM_i_LA)(u32 **buf, unsigned int rs, long addr)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000434{
Steven J. Hillabc597f2013-02-05 16:52:01 -0600435 ISAFUNC(UASM_i_LA_mostly)(buf, rs, addr);
436 if (ISAFUNC(uasm_rel_lo(addr))) {
437 if (!ISAFUNC(uasm_in_compat_space_p)(addr))
438 ISAFUNC(uasm_i_daddiu)(buf, rs, rs,
439 ISAFUNC(uasm_rel_lo(addr)));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000440 else
Steven J. Hillabc597f2013-02-05 16:52:01 -0600441 ISAFUNC(uasm_i_addiu)(buf, rs, rs,
442 ISAFUNC(uasm_rel_lo(addr)));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000443 }
444}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600445UASM_EXPORT_SYMBOL(ISAFUNC(UASM_i_LA));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000446
447/* Handle relocations. */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000448void ISAFUNC(uasm_r_mips_pc16)(struct uasm_reloc **rel, u32 *addr, int lid)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000449{
450 (*rel)->addr = addr;
451 (*rel)->type = R_MIPS_PC16;
452 (*rel)->lab = lid;
453 (*rel)++;
454}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600455UASM_EXPORT_SYMBOL(ISAFUNC(uasm_r_mips_pc16));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000456
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000457static inline void __resolve_relocs(struct uasm_reloc *rel,
458 struct uasm_label *lab);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000459
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000460void ISAFUNC(uasm_resolve_relocs)(struct uasm_reloc *rel,
461 struct uasm_label *lab)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000462{
463 struct uasm_label *l;
464
465 for (; rel->lab != UASM_LABEL_INVALID; rel++)
466 for (l = lab; l->lab != UASM_LABEL_INVALID; l++)
467 if (rel->lab == l->lab)
468 __resolve_relocs(rel, l);
469}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600470UASM_EXPORT_SYMBOL(ISAFUNC(uasm_resolve_relocs));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000471
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000472void ISAFUNC(uasm_move_relocs)(struct uasm_reloc *rel, u32 *first, u32 *end,
473 long off)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000474{
475 for (; rel->lab != UASM_LABEL_INVALID; rel++)
476 if (rel->addr >= first && rel->addr < end)
477 rel->addr += off;
478}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600479UASM_EXPORT_SYMBOL(ISAFUNC(uasm_move_relocs));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000480
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000481void ISAFUNC(uasm_move_labels)(struct uasm_label *lab, u32 *first, u32 *end,
482 long off)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000483{
484 for (; lab->lab != UASM_LABEL_INVALID; lab++)
485 if (lab->addr >= first && lab->addr < end)
486 lab->addr += off;
487}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600488UASM_EXPORT_SYMBOL(ISAFUNC(uasm_move_labels));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000489
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000490void ISAFUNC(uasm_copy_handler)(struct uasm_reloc *rel, struct uasm_label *lab,
491 u32 *first, u32 *end, u32 *target)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000492{
493 long off = (long)(target - first);
494
495 memcpy(target, first, (end - first) * sizeof(u32));
496
Steven J. Hillabc597f2013-02-05 16:52:01 -0600497 ISAFUNC(uasm_move_relocs(rel, first, end, off));
498 ISAFUNC(uasm_move_labels(lab, first, end, off));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000499}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600500UASM_EXPORT_SYMBOL(ISAFUNC(uasm_copy_handler));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000501
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000502int ISAFUNC(uasm_insn_has_bdelay)(struct uasm_reloc *rel, u32 *addr)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000503{
504 for (; rel->lab != UASM_LABEL_INVALID; rel++) {
505 if (rel->addr == addr
506 && (rel->type == R_MIPS_PC16
507 || rel->type == R_MIPS_26))
508 return 1;
509 }
510
511 return 0;
512}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600513UASM_EXPORT_SYMBOL(ISAFUNC(uasm_insn_has_bdelay));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000514
515/* Convenience functions for labeled branches. */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000516void ISAFUNC(uasm_il_bltz)(u32 **p, struct uasm_reloc **r, unsigned int reg,
517 int lid)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000518{
519 uasm_r_mips_pc16(r, *p, lid);
Steven J. Hillabc597f2013-02-05 16:52:01 -0600520 ISAFUNC(uasm_i_bltz)(p, reg, 0);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000521}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600522UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_bltz));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000523
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000524void ISAFUNC(uasm_il_b)(u32 **p, struct uasm_reloc **r, int lid)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000525{
526 uasm_r_mips_pc16(r, *p, lid);
Steven J. Hillabc597f2013-02-05 16:52:01 -0600527 ISAFUNC(uasm_i_b)(p, 0);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000528}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600529UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_b));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000530
Paul Burton8dee5902013-12-24 03:51:39 +0000531void ISAFUNC(uasm_il_beq)(u32 **p, struct uasm_reloc **r, unsigned int r1,
532 unsigned int r2, int lid)
533{
534 uasm_r_mips_pc16(r, *p, lid);
535 ISAFUNC(uasm_i_beq)(p, r1, r2, 0);
536}
537UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_beq));
538
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000539void ISAFUNC(uasm_il_beqz)(u32 **p, struct uasm_reloc **r, unsigned int reg,
540 int lid)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000541{
542 uasm_r_mips_pc16(r, *p, lid);
Steven J. Hillabc597f2013-02-05 16:52:01 -0600543 ISAFUNC(uasm_i_beqz)(p, reg, 0);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000544}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600545UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_beqz));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000546
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000547void ISAFUNC(uasm_il_beqzl)(u32 **p, struct uasm_reloc **r, unsigned int reg,
548 int lid)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000549{
550 uasm_r_mips_pc16(r, *p, lid);
Steven J. Hillabc597f2013-02-05 16:52:01 -0600551 ISAFUNC(uasm_i_beqzl)(p, reg, 0);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000552}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600553UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_beqzl));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000554
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000555void ISAFUNC(uasm_il_bne)(u32 **p, struct uasm_reloc **r, unsigned int reg1,
556 unsigned int reg2, int lid)
Thiemo Seuferfb2a27e72008-02-18 19:32:49 +0000557{
558 uasm_r_mips_pc16(r, *p, lid);
Steven J. Hillabc597f2013-02-05 16:52:01 -0600559 ISAFUNC(uasm_i_bne)(p, reg1, reg2, 0);
Thiemo Seuferfb2a27e72008-02-18 19:32:49 +0000560}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600561UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_bne));
Thiemo Seuferfb2a27e72008-02-18 19:32:49 +0000562
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000563void ISAFUNC(uasm_il_bnez)(u32 **p, struct uasm_reloc **r, unsigned int reg,
564 int lid)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000565{
566 uasm_r_mips_pc16(r, *p, lid);
Steven J. Hillabc597f2013-02-05 16:52:01 -0600567 ISAFUNC(uasm_i_bnez)(p, reg, 0);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000568}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600569UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_bnez));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000570
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000571void ISAFUNC(uasm_il_bgezl)(u32 **p, struct uasm_reloc **r, unsigned int reg,
572 int lid)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000573{
574 uasm_r_mips_pc16(r, *p, lid);
Steven J. Hillabc597f2013-02-05 16:52:01 -0600575 ISAFUNC(uasm_i_bgezl)(p, reg, 0);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000576}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600577UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_bgezl));
Thiemo Seufere30ec452008-01-28 20:05:38 +0000578
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000579void ISAFUNC(uasm_il_bgez)(u32 **p, struct uasm_reloc **r, unsigned int reg,
580 int lid)
Thiemo Seufere30ec452008-01-28 20:05:38 +0000581{
582 uasm_r_mips_pc16(r, *p, lid);
Steven J. Hillabc597f2013-02-05 16:52:01 -0600583 ISAFUNC(uasm_i_bgez)(p, reg, 0);
Thiemo Seufere30ec452008-01-28 20:05:38 +0000584}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600585UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_bgez));
David Daney5b97c3f2010-07-23 18:41:42 -0700586
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000587void ISAFUNC(uasm_il_bbit0)(u32 **p, struct uasm_reloc **r, unsigned int reg,
588 unsigned int bit, int lid)
David Daney5b97c3f2010-07-23 18:41:42 -0700589{
590 uasm_r_mips_pc16(r, *p, lid);
Steven J. Hillabc597f2013-02-05 16:52:01 -0600591 ISAFUNC(uasm_i_bbit0)(p, reg, bit, 0);
David Daney5b97c3f2010-07-23 18:41:42 -0700592}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600593UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_bbit0));
David Daney5b97c3f2010-07-23 18:41:42 -0700594
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000595void ISAFUNC(uasm_il_bbit1)(u32 **p, struct uasm_reloc **r, unsigned int reg,
596 unsigned int bit, int lid)
David Daney5b97c3f2010-07-23 18:41:42 -0700597{
598 uasm_r_mips_pc16(r, *p, lid);
Steven J. Hillabc597f2013-02-05 16:52:01 -0600599 ISAFUNC(uasm_i_bbit1)(p, reg, bit, 0);
David Daney5b97c3f2010-07-23 18:41:42 -0700600}
Steven J. Hillabc597f2013-02-05 16:52:01 -0600601UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_bbit1));