Merge tag 'gpio-v3.17-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[deliverable/linux.git] / arch / mips / mm / uasm.c
CommitLineData
e30ec452
TS
1/*
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 *
70342287 10 * Copyright (C) 2004, 2005, 2006, 2008 Thiemo Seufer
e30ec452
TS
11 * Copyright (C) 2005, 2007 Maciej W. Rozycki
12 * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org)
abc597fe 13 * Copyright (C) 2012, 2013 MIPS Technologies, Inc. All rights reserved.
e30ec452
TS
14 */
15
e30ec452
TS
16enum 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,
58b9e223
DD
26 SET = 0x200,
27 SCIMM = 0x400
e30ec452
TS
28};
29
30#define OP_MASK 0x3f
31#define OP_SH 26
e30ec452
TS
32#define RD_MASK 0x1f
33#define RD_SH 11
34#define RE_MASK 0x1f
35#define RE_SH 6
36#define IMM_MASK 0xffff
37#define IMM_SH 0
38#define JIMM_MASK 0x3ffffff
39#define JIMM_SH 0
40#define FUNC_MASK 0x3f
41#define FUNC_SH 0
42#define SET_MASK 0x7
43#define SET_SH 0
44
45enum opcode {
46 insn_invalid,
71a1c776
SH
47 insn_addiu, insn_addu, insn_and, insn_andi, insn_bbit0, insn_bbit1,
48 insn_beq, insn_beql, insn_bgez, insn_bgezl, insn_bltz, insn_bltzl,
49 insn_bne, insn_cache, insn_daddiu, insn_daddu, insn_dins, insn_dinsm,
4c12a854 50 insn_divu, insn_dmfc0, insn_dmtc0, insn_drotr, insn_drotr32, insn_dsll,
71a1c776 51 insn_dsll32, insn_dsra, insn_dsrl, insn_dsrl32, insn_dsubu, insn_eret,
82488818
MC
52 insn_ext, insn_ins, insn_j, insn_jal, insn_jalr, insn_jr, insn_lb,
53 insn_ld, insn_ldx, insn_lh, insn_ll, insn_lld, insn_lui, insn_lw,
54 insn_lwx, insn_mfc0, insn_mfhi, insn_mflo, insn_mtc0, insn_mul,
55 insn_or, insn_ori, insn_pref, insn_rfe, insn_rotr, insn_sc, insn_scd,
7682f9e8 56 insn_sd, insn_sll, insn_sllv, insn_slt, insn_sltiu, insn_sltu, insn_sra,
82488818
MC
57 insn_srl, insn_srlv, insn_subu, insn_sw, insn_sync, insn_syscall,
58 insn_tlbp, insn_tlbr, insn_tlbwi, insn_tlbwr, insn_wait, insn_wsbh,
59 insn_xor, insn_xori, insn_yield,
e30ec452
TS
60};
61
62struct insn {
63 enum opcode opcode;
64 u32 match;
65 enum fields fields;
66};
67
078a55fc 68static inline u32 build_rs(u32 arg)
e30ec452 69{
8d662c8d 70 WARN(arg & ~RS_MASK, KERN_WARNING "Micro-assembler field overflow\n");
e30ec452
TS
71
72 return (arg & RS_MASK) << RS_SH;
73}
74
078a55fc 75static inline u32 build_rt(u32 arg)
e30ec452 76{
8d662c8d 77 WARN(arg & ~RT_MASK, KERN_WARNING "Micro-assembler field overflow\n");
e30ec452
TS
78
79 return (arg & RT_MASK) << RT_SH;
80}
81
078a55fc 82static inline u32 build_rd(u32 arg)
e30ec452 83{
8d662c8d 84 WARN(arg & ~RD_MASK, KERN_WARNING "Micro-assembler field overflow\n");
e30ec452
TS
85
86 return (arg & RD_MASK) << RD_SH;
87}
88
078a55fc 89static inline u32 build_re(u32 arg)
e30ec452 90{
8d662c8d 91 WARN(arg & ~RE_MASK, KERN_WARNING "Micro-assembler field overflow\n");
e30ec452
TS
92
93 return (arg & RE_MASK) << RE_SH;
94}
95
078a55fc 96static inline u32 build_simm(s32 arg)
e30ec452 97{
8d662c8d
DD
98 WARN(arg > 0x7fff || arg < -0x8000,
99 KERN_WARNING "Micro-assembler field overflow\n");
e30ec452
TS
100
101 return arg & 0xffff;
102}
103
078a55fc 104static inline u32 build_uimm(u32 arg)
e30ec452 105{
8d662c8d 106 WARN(arg & ~IMM_MASK, KERN_WARNING "Micro-assembler field overflow\n");
e30ec452
TS
107
108 return arg & IMM_MASK;
109}
110
078a55fc 111static inline u32 build_scimm(u32 arg)
58b9e223 112{
8d662c8d
DD
113 WARN(arg & ~SCIMM_MASK,
114 KERN_WARNING "Micro-assembler field overflow\n");
58b9e223
DD
115
116 return (arg & SCIMM_MASK) << SCIMM_SH;
117}
118
078a55fc 119static inline u32 build_func(u32 arg)
e30ec452 120{
8d662c8d 121 WARN(arg & ~FUNC_MASK, KERN_WARNING "Micro-assembler field overflow\n");
e30ec452
TS
122
123 return arg & FUNC_MASK;
124}
125
078a55fc 126static inline u32 build_set(u32 arg)
e30ec452 127{
8d662c8d 128 WARN(arg & ~SET_MASK, KERN_WARNING "Micro-assembler field overflow\n");
e30ec452
TS
129
130 return arg & SET_MASK;
131}
132
078a55fc 133static void build_insn(u32 **buf, enum opcode opc, ...);
e30ec452
TS
134
135#define I_u1u2u3(op) \
136Ip_u1u2u3(op) \
137{ \
138 build_insn(buf, insn##op, a, b, c); \
22b0763a
DD
139} \
140UASM_EXPORT_SYMBOL(uasm_i##op);
e30ec452 141
9d987369
MC
142#define I_s3s1s2(op) \
143Ip_s3s1s2(op) \
144{ \
145 build_insn(buf, insn##op, b, c, a); \
146} \
147UASM_EXPORT_SYMBOL(uasm_i##op);
148
e30ec452
TS
149#define I_u2u1u3(op) \
150Ip_u2u1u3(op) \
151{ \
152 build_insn(buf, insn##op, b, a, c); \
22b0763a
DD
153} \
154UASM_EXPORT_SYMBOL(uasm_i##op);
e30ec452 155
beef8e02
MC
156#define I_u3u2u1(op) \
157Ip_u3u2u1(op) \
158{ \
159 build_insn(buf, insn##op, c, b, a); \
160} \
161UASM_EXPORT_SYMBOL(uasm_i##op);
162
e30ec452
TS
163#define I_u3u1u2(op) \
164Ip_u3u1u2(op) \
165{ \
166 build_insn(buf, insn##op, b, c, a); \
22b0763a
DD
167} \
168UASM_EXPORT_SYMBOL(uasm_i##op);
e30ec452
TS
169
170#define I_u1u2s3(op) \
171Ip_u1u2s3(op) \
172{ \
173 build_insn(buf, insn##op, a, b, c); \
22b0763a
DD
174} \
175UASM_EXPORT_SYMBOL(uasm_i##op);
e30ec452
TS
176
177#define I_u2s3u1(op) \
178Ip_u2s3u1(op) \
179{ \
180 build_insn(buf, insn##op, c, a, b); \
22b0763a
DD
181} \
182UASM_EXPORT_SYMBOL(uasm_i##op);
e30ec452
TS
183
184#define I_u2u1s3(op) \
185Ip_u2u1s3(op) \
186{ \
187 build_insn(buf, insn##op, b, a, c); \
22b0763a
DD
188} \
189UASM_EXPORT_SYMBOL(uasm_i##op);
e30ec452 190
92078e06
DD
191#define I_u2u1msbu3(op) \
192Ip_u2u1msbu3(op) \
193{ \
194 build_insn(buf, insn##op, b, a, c+d-1, c); \
22b0763a
DD
195} \
196UASM_EXPORT_SYMBOL(uasm_i##op);
92078e06 197
c42aef09
DD
198#define I_u2u1msb32u3(op) \
199Ip_u2u1msbu3(op) \
200{ \
201 build_insn(buf, insn##op, b, a, c+d-33, c); \
202} \
203UASM_EXPORT_SYMBOL(uasm_i##op);
204
70342287 205#define I_u2u1msbdu3(op) \
e6de1a09
SH
206Ip_u2u1msbu3(op) \
207{ \
208 build_insn(buf, insn##op, b, a, d-1, c); \
209} \
210UASM_EXPORT_SYMBOL(uasm_i##op);
211
e30ec452
TS
212#define I_u1u2(op) \
213Ip_u1u2(op) \
214{ \
215 build_insn(buf, insn##op, a, b); \
22b0763a
DD
216} \
217UASM_EXPORT_SYMBOL(uasm_i##op);
e30ec452 218
d674dd14
PB
219#define I_u2u1(op) \
220Ip_u1u2(op) \
221{ \
222 build_insn(buf, insn##op, b, a); \
223} \
224UASM_EXPORT_SYMBOL(uasm_i##op);
225
e30ec452
TS
226#define I_u1s2(op) \
227Ip_u1s2(op) \
228{ \
229 build_insn(buf, insn##op, a, b); \
22b0763a
DD
230} \
231UASM_EXPORT_SYMBOL(uasm_i##op);
e30ec452
TS
232
233#define I_u1(op) \
234Ip_u1(op) \
235{ \
236 build_insn(buf, insn##op, a); \
22b0763a
DD
237} \
238UASM_EXPORT_SYMBOL(uasm_i##op);
e30ec452
TS
239
240#define I_0(op) \
241Ip_0(op) \
242{ \
243 build_insn(buf, insn##op); \
22b0763a
DD
244} \
245UASM_EXPORT_SYMBOL(uasm_i##op);
e30ec452
TS
246
247I_u2u1s3(_addiu)
248I_u3u1u2(_addu)
249I_u2u1u3(_andi)
250I_u3u1u2(_and)
251I_u1u2s3(_beq)
252I_u1u2s3(_beql)
253I_u1s2(_bgez)
254I_u1s2(_bgezl)
255I_u1s2(_bltz)
256I_u1s2(_bltzl)
257I_u1u2s3(_bne)
fb2a27e7 258I_u2s3u1(_cache)
e30ec452
TS
259I_u1u2u3(_dmfc0)
260I_u1u2u3(_dmtc0)
261I_u2u1s3(_daddiu)
262I_u3u1u2(_daddu)
4c12a854 263I_u1u2(_divu)
e30ec452
TS
264I_u2u1u3(_dsll)
265I_u2u1u3(_dsll32)
266I_u2u1u3(_dsra)
267I_u2u1u3(_dsrl)
268I_u2u1u3(_dsrl32)
92078e06 269I_u2u1u3(_drotr)
de6d5b55 270I_u2u1u3(_drotr32)
e30ec452
TS
271I_u3u1u2(_dsubu)
272I_0(_eret)
e6de1a09
SH
273I_u2u1msbdu3(_ext)
274I_u2u1msbu3(_ins)
e30ec452
TS
275I_u1(_j)
276I_u1(_jal)
49e9529b 277I_u2u1(_jalr)
e30ec452 278I_u1(_jr)
82488818 279I_u2s3u1(_lb)
e30ec452 280I_u2s3u1(_ld)
d6b3314b 281I_u2s3u1(_lh)
e30ec452
TS
282I_u2s3u1(_ll)
283I_u2s3u1(_lld)
284I_u1s2(_lui)
285I_u2s3u1(_lw)
286I_u1u2u3(_mfc0)
f3ec7a23 287I_u1(_mfhi)
16d21a81 288I_u1(_mflo)
e30ec452 289I_u1u2u3(_mtc0)
a8e897ad 290I_u3u1u2(_mul)
e30ec452 291I_u2u1u3(_ori)
5808184f 292I_u3u1u2(_or)
e30ec452
TS
293I_0(_rfe)
294I_u2s3u1(_sc)
295I_u2s3u1(_scd)
296I_u2s3u1(_sd)
297I_u2u1u3(_sll)
bef581ba 298I_u3u2u1(_sllv)
7682f9e8 299I_s3s1s2(_slt)
390363ed 300I_u2u1s3(_sltiu)
e8ef868b 301I_u3u1u2(_sltu)
e30ec452
TS
302I_u2u1u3(_sra)
303I_u2u1u3(_srl)
f31318fd 304I_u3u2u1(_srlv)
32546f38 305I_u2u1u3(_rotr)
e30ec452
TS
306I_u3u1u2(_subu)
307I_u2s3u1(_sw)
729ff561 308I_u1(_sync)
e30ec452 309I_0(_tlbp)
32546f38 310I_0(_tlbr)
e30ec452
TS
311I_0(_tlbwi)
312I_0(_tlbwr)
53ed1389 313I_u1(_wait);
ab9e4fa0 314I_u2u1(_wsbh)
e30ec452
TS
315I_u3u1u2(_xor)
316I_u2u1u3(_xori)
d674dd14 317I_u2u1(_yield)
92078e06 318I_u2u1msbu3(_dins);
c42aef09 319I_u2u1msb32u3(_dinsm);
58b9e223 320I_u1(_syscall);
5b97c3f7
DD
321I_u1u2s3(_bbit0);
322I_u1u2s3(_bbit1);
bb3d68c3
DD
323I_u3u1u2(_lwx)
324I_u3u1u2(_ldx)
e30ec452 325
c9941158
DD
326#ifdef CONFIG_CPU_CAVIUM_OCTEON
327#include <asm/octeon/octeon.h>
078a55fc 328void ISAFUNC(uasm_i_pref)(u32 **buf, unsigned int a, signed int b,
c9941158
DD
329 unsigned int c)
330{
331 if (OCTEON_IS_MODEL(OCTEON_CN63XX_PASS1_X) && a <= 24 && a != 5)
332 /*
333 * As per erratum Core-14449, replace prefetches 0-4,
334 * 6-24 with 'pref 28'.
335 */
336 build_insn(buf, insn_pref, c, 28, b);
337 else
338 build_insn(buf, insn_pref, c, a, b);
339}
abc597fe 340UASM_EXPORT_SYMBOL(ISAFUNC(uasm_i_pref));
c9941158
DD
341#else
342I_u2s3u1(_pref)
343#endif
344
e30ec452 345/* Handle labels. */
078a55fc 346void ISAFUNC(uasm_build_label)(struct uasm_label **lab, u32 *addr, int lid)
e30ec452
TS
347{
348 (*lab)->addr = addr;
349 (*lab)->lab = lid;
350 (*lab)++;
351}
abc597fe 352UASM_EXPORT_SYMBOL(ISAFUNC(uasm_build_label));
e30ec452 353
078a55fc 354int ISAFUNC(uasm_in_compat_space_p)(long addr)
e30ec452
TS
355{
356 /* Is this address in 32bit compat space? */
357#ifdef CONFIG_64BIT
358 return (((addr) & 0xffffffff00000000L) == 0xffffffff00000000L);
359#else
360 return 1;
361#endif
362}
abc597fe 363UASM_EXPORT_SYMBOL(ISAFUNC(uasm_in_compat_space_p));
e30ec452 364
078a55fc 365static int uasm_rel_highest(long val)
e30ec452
TS
366{
367#ifdef CONFIG_64BIT
368 return ((((val + 0x800080008000L) >> 48) & 0xffff) ^ 0x8000) - 0x8000;
369#else
370 return 0;
371#endif
372}
373
078a55fc 374static int uasm_rel_higher(long val)
e30ec452
TS
375{
376#ifdef CONFIG_64BIT
377 return ((((val + 0x80008000L) >> 32) & 0xffff) ^ 0x8000) - 0x8000;
378#else
379 return 0;
380#endif
381}
382
078a55fc 383int ISAFUNC(uasm_rel_hi)(long val)
e30ec452
TS
384{
385 return ((((val + 0x8000L) >> 16) & 0xffff) ^ 0x8000) - 0x8000;
386}
abc597fe 387UASM_EXPORT_SYMBOL(ISAFUNC(uasm_rel_hi));
e30ec452 388
078a55fc 389int ISAFUNC(uasm_rel_lo)(long val)
e30ec452
TS
390{
391 return ((val & 0xffff) ^ 0x8000) - 0x8000;
392}
abc597fe 393UASM_EXPORT_SYMBOL(ISAFUNC(uasm_rel_lo));
e30ec452 394
078a55fc 395void ISAFUNC(UASM_i_LA_mostly)(u32 **buf, unsigned int rs, long addr)
e30ec452 396{
abc597fe
SH
397 if (!ISAFUNC(uasm_in_compat_space_p)(addr)) {
398 ISAFUNC(uasm_i_lui)(buf, rs, uasm_rel_highest(addr));
e30ec452 399 if (uasm_rel_higher(addr))
abc597fe
SH
400 ISAFUNC(uasm_i_daddiu)(buf, rs, rs, uasm_rel_higher(addr));
401 if (ISAFUNC(uasm_rel_hi(addr))) {
402 ISAFUNC(uasm_i_dsll)(buf, rs, rs, 16);
403 ISAFUNC(uasm_i_daddiu)(buf, rs, rs,
404 ISAFUNC(uasm_rel_hi)(addr));
405 ISAFUNC(uasm_i_dsll)(buf, rs, rs, 16);
e30ec452 406 } else
abc597fe 407 ISAFUNC(uasm_i_dsll32)(buf, rs, rs, 0);
e30ec452 408 } else
abc597fe 409 ISAFUNC(uasm_i_lui)(buf, rs, ISAFUNC(uasm_rel_hi(addr)));
e30ec452 410}
abc597fe 411UASM_EXPORT_SYMBOL(ISAFUNC(UASM_i_LA_mostly));
e30ec452 412
078a55fc 413void ISAFUNC(UASM_i_LA)(u32 **buf, unsigned int rs, long addr)
e30ec452 414{
abc597fe
SH
415 ISAFUNC(UASM_i_LA_mostly)(buf, rs, addr);
416 if (ISAFUNC(uasm_rel_lo(addr))) {
417 if (!ISAFUNC(uasm_in_compat_space_p)(addr))
418 ISAFUNC(uasm_i_daddiu)(buf, rs, rs,
419 ISAFUNC(uasm_rel_lo(addr)));
e30ec452 420 else
abc597fe
SH
421 ISAFUNC(uasm_i_addiu)(buf, rs, rs,
422 ISAFUNC(uasm_rel_lo(addr)));
e30ec452
TS
423 }
424}
abc597fe 425UASM_EXPORT_SYMBOL(ISAFUNC(UASM_i_LA));
e30ec452
TS
426
427/* Handle relocations. */
078a55fc 428void ISAFUNC(uasm_r_mips_pc16)(struct uasm_reloc **rel, u32 *addr, int lid)
e30ec452
TS
429{
430 (*rel)->addr = addr;
431 (*rel)->type = R_MIPS_PC16;
432 (*rel)->lab = lid;
433 (*rel)++;
434}
abc597fe 435UASM_EXPORT_SYMBOL(ISAFUNC(uasm_r_mips_pc16));
e30ec452 436
078a55fc
PG
437static inline void __resolve_relocs(struct uasm_reloc *rel,
438 struct uasm_label *lab);
e30ec452 439
078a55fc
PG
440void ISAFUNC(uasm_resolve_relocs)(struct uasm_reloc *rel,
441 struct uasm_label *lab)
e30ec452
TS
442{
443 struct uasm_label *l;
444
445 for (; rel->lab != UASM_LABEL_INVALID; rel++)
446 for (l = lab; l->lab != UASM_LABEL_INVALID; l++)
447 if (rel->lab == l->lab)
448 __resolve_relocs(rel, l);
449}
abc597fe 450UASM_EXPORT_SYMBOL(ISAFUNC(uasm_resolve_relocs));
e30ec452 451
078a55fc
PG
452void ISAFUNC(uasm_move_relocs)(struct uasm_reloc *rel, u32 *first, u32 *end,
453 long off)
e30ec452
TS
454{
455 for (; rel->lab != UASM_LABEL_INVALID; rel++)
456 if (rel->addr >= first && rel->addr < end)
457 rel->addr += off;
458}
abc597fe 459UASM_EXPORT_SYMBOL(ISAFUNC(uasm_move_relocs));
e30ec452 460
078a55fc
PG
461void ISAFUNC(uasm_move_labels)(struct uasm_label *lab, u32 *first, u32 *end,
462 long off)
e30ec452
TS
463{
464 for (; lab->lab != UASM_LABEL_INVALID; lab++)
465 if (lab->addr >= first && lab->addr < end)
466 lab->addr += off;
467}
abc597fe 468UASM_EXPORT_SYMBOL(ISAFUNC(uasm_move_labels));
e30ec452 469
078a55fc
PG
470void ISAFUNC(uasm_copy_handler)(struct uasm_reloc *rel, struct uasm_label *lab,
471 u32 *first, u32 *end, u32 *target)
e30ec452
TS
472{
473 long off = (long)(target - first);
474
475 memcpy(target, first, (end - first) * sizeof(u32));
476
abc597fe
SH
477 ISAFUNC(uasm_move_relocs(rel, first, end, off));
478 ISAFUNC(uasm_move_labels(lab, first, end, off));
e30ec452 479}
abc597fe 480UASM_EXPORT_SYMBOL(ISAFUNC(uasm_copy_handler));
e30ec452 481
078a55fc 482int ISAFUNC(uasm_insn_has_bdelay)(struct uasm_reloc *rel, u32 *addr)
e30ec452
TS
483{
484 for (; rel->lab != UASM_LABEL_INVALID; rel++) {
485 if (rel->addr == addr
486 && (rel->type == R_MIPS_PC16
487 || rel->type == R_MIPS_26))
488 return 1;
489 }
490
491 return 0;
492}
abc597fe 493UASM_EXPORT_SYMBOL(ISAFUNC(uasm_insn_has_bdelay));
e30ec452
TS
494
495/* Convenience functions for labeled branches. */
078a55fc
PG
496void ISAFUNC(uasm_il_bltz)(u32 **p, struct uasm_reloc **r, unsigned int reg,
497 int lid)
e30ec452
TS
498{
499 uasm_r_mips_pc16(r, *p, lid);
abc597fe 500 ISAFUNC(uasm_i_bltz)(p, reg, 0);
e30ec452 501}
abc597fe 502UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_bltz));
e30ec452 503
078a55fc 504void ISAFUNC(uasm_il_b)(u32 **p, struct uasm_reloc **r, int lid)
e30ec452
TS
505{
506 uasm_r_mips_pc16(r, *p, lid);
abc597fe 507 ISAFUNC(uasm_i_b)(p, 0);
e30ec452 508}
abc597fe 509UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_b));
e30ec452 510
8dee5901
PB
511void ISAFUNC(uasm_il_beq)(u32 **p, struct uasm_reloc **r, unsigned int r1,
512 unsigned int r2, int lid)
513{
514 uasm_r_mips_pc16(r, *p, lid);
515 ISAFUNC(uasm_i_beq)(p, r1, r2, 0);
516}
517UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_beq));
518
078a55fc
PG
519void ISAFUNC(uasm_il_beqz)(u32 **p, struct uasm_reloc **r, unsigned int reg,
520 int lid)
e30ec452
TS
521{
522 uasm_r_mips_pc16(r, *p, lid);
abc597fe 523 ISAFUNC(uasm_i_beqz)(p, reg, 0);
e30ec452 524}
abc597fe 525UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_beqz));
e30ec452 526
078a55fc
PG
527void ISAFUNC(uasm_il_beqzl)(u32 **p, struct uasm_reloc **r, unsigned int reg,
528 int lid)
e30ec452
TS
529{
530 uasm_r_mips_pc16(r, *p, lid);
abc597fe 531 ISAFUNC(uasm_i_beqzl)(p, reg, 0);
e30ec452 532}
abc597fe 533UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_beqzl));
e30ec452 534
078a55fc
PG
535void ISAFUNC(uasm_il_bne)(u32 **p, struct uasm_reloc **r, unsigned int reg1,
536 unsigned int reg2, int lid)
fb2a27e7
TS
537{
538 uasm_r_mips_pc16(r, *p, lid);
abc597fe 539 ISAFUNC(uasm_i_bne)(p, reg1, reg2, 0);
fb2a27e7 540}
abc597fe 541UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_bne));
fb2a27e7 542
078a55fc
PG
543void ISAFUNC(uasm_il_bnez)(u32 **p, struct uasm_reloc **r, unsigned int reg,
544 int lid)
e30ec452
TS
545{
546 uasm_r_mips_pc16(r, *p, lid);
abc597fe 547 ISAFUNC(uasm_i_bnez)(p, reg, 0);
e30ec452 548}
abc597fe 549UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_bnez));
e30ec452 550
078a55fc
PG
551void ISAFUNC(uasm_il_bgezl)(u32 **p, struct uasm_reloc **r, unsigned int reg,
552 int lid)
e30ec452
TS
553{
554 uasm_r_mips_pc16(r, *p, lid);
abc597fe 555 ISAFUNC(uasm_i_bgezl)(p, reg, 0);
e30ec452 556}
abc597fe 557UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_bgezl));
e30ec452 558
078a55fc
PG
559void ISAFUNC(uasm_il_bgez)(u32 **p, struct uasm_reloc **r, unsigned int reg,
560 int lid)
e30ec452
TS
561{
562 uasm_r_mips_pc16(r, *p, lid);
abc597fe 563 ISAFUNC(uasm_i_bgez)(p, reg, 0);
e30ec452 564}
abc597fe 565UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_bgez));
5b97c3f7 566
078a55fc
PG
567void ISAFUNC(uasm_il_bbit0)(u32 **p, struct uasm_reloc **r, unsigned int reg,
568 unsigned int bit, int lid)
5b97c3f7
DD
569{
570 uasm_r_mips_pc16(r, *p, lid);
abc597fe 571 ISAFUNC(uasm_i_bbit0)(p, reg, bit, 0);
5b97c3f7 572}
abc597fe 573UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_bbit0));
5b97c3f7 574
078a55fc
PG
575void ISAFUNC(uasm_il_bbit1)(u32 **p, struct uasm_reloc **r, unsigned int reg,
576 unsigned int bit, int lid)
5b97c3f7
DD
577{
578 uasm_r_mips_pc16(r, *p, lid);
abc597fe 579 ISAFUNC(uasm_i_bbit1)(p, reg, bit, 0);
5b97c3f7 580}
abc597fe 581UASM_EXPORT_SYMBOL(ISAFUNC(uasm_il_bbit1));
This page took 0.447694 seconds and 5 git commands to generate.