Go to the documentation of this file.
28 #define CODEGEN_HPP_ 1
38 #define gen_bound_check \
40 M_ILD(REG_ITMP3, s1, OFFSET(java_arrayheader, size));\
41 M_CMPULT(s2, REG_ITMP3, REG_ITMP3);\
42 M_BEQZ(REG_ITMP3, 0);\
43 codegen_add_arrayindexoutofboundsexception_ref(cd, s2); \
49 #define MCODECHECK(icnt) \
51 if ((cd->mcodeptr + (icnt) * 4) > cd->mcodeend) \
52 codegen_increase(cd); \
56 #define ALIGNCODENOP \
57 if ((s4) ((ptrint) cd->mcodeptr & 7)) { \
62 #define ICONST(d,c) emit_iconst(cd, (d), (c))
63 #define LCONST(d,c) emit_lconst(cd, (d), (c))
76 #define PATCHER_CALL_SIZE 1 * 4
78 #define PATCHER_NOPS \
95 #define M_MEM(Opcode,Ra,Rb,Memory_disp) \
97 *((uint32_t *) cd->mcodeptr) = ((((Opcode)) << 26) | ((Ra) << 21) | ((Rb) << 16) | ((Memory_disp) & 0xffff)); \
101 #define M_MEM_GET_Opcode(x) ( (((x) >> 26) & 0x3f ))
102 #define M_MEM_GET_Ra(x) ( (((x) >> 21) & 0x1f ))
103 #define M_MEM_GET_Rb(x) ( (((x) >> 16) & 0x1f ))
104 #define M_MEM_GET_Memory_disp(x) ((int16_t) ( (x) & 0xffff))
115 #define M_BRA(Opcode,Ra,Branch_disp) \
117 *((uint32_t *) cd->mcodeptr) = ((((Opcode)) << 26) | ((Ra) << 21) | ((Branch_disp) & 0x1fffff)); \
136 #define M_OP3(op,fu,a,b,c,const) \
138 *((u4 *) cd->mcodeptr) = ((((s4) (op)) << 26) | ((a) << 21) | ((b) << (16 - 3 * (const))) | ((const) << 12) | ((fu) << 5) | ((c))); \
142 #define M_OP3_GET_Opcode(x) ( (((x) >> 26) & 0x3f ))
152 #define M_FOP3(op,fu,a,b,c) \
154 *((u4 *) cd->mcodeptr) = ((((s4) (op)) << 26) | ((a) << 21) | ((b) << 16) | ((fu) << 5) | (c)); \
161 #define M_LDA_INTERN(a,b,disp) M_MEM(0x08,a,b,disp)
163 #define M_LDA(a,b,disp) \
165 s4 lo = (short) (disp); \
166 s4 hi = (short) (((disp) - lo) >> 16); \
168 M_LDA_INTERN(a,b,lo); \
171 M_LDA_INTERN(a,a,lo); \
175 #define M_LDAH(a,b,disp) M_MEM (0x09,a,b,disp)
177 #define M_BLDU(a,b,disp) M_MEM (0x0a,a,b,disp)
178 #define M_SLDU(a,b,disp) M_MEM (0x0c,a,b,disp)
180 #define M_ILD_INTERN(a,b,disp) M_MEM(0x28,a,b,disp)
181 #define M_LLD_INTERN(a,b,disp) M_MEM(0x29,a,b,disp)
183 #define M_ILD(a,b,disp) \
185 s4 lo = (short) (disp); \
186 s4 hi = (short) (((disp) - lo) >> 16); \
188 M_ILD_INTERN(a,b,lo); \
191 M_ILD_INTERN(a,a,lo); \
195 #define M_LLD(a,b,disp) \
197 s4 lo = (short) (disp); \
198 s4 hi = (short) (((disp) - lo) >> 16); \
200 M_LLD_INTERN(a,b,lo); \
203 M_LLD_INTERN(a,a,lo); \
207 #define M_ALD_INTERN(a,b,disp) M_LLD_INTERN(a,b,disp)
208 #define M_ALD(a,b,disp) M_LLD(a,b,disp)
209 #define M_ALD_DSEG(a,disp) M_LLD(a,REG_PV,disp)
211 #define M_BST(a,b,disp) M_MEM(0x0e,a,b,disp)
212 #define M_SST(a,b,disp) M_MEM(0x0d,a,b,disp)
214 #define M_IST_INTERN(a,b,disp) M_MEM(0x2c,a,b,disp)
215 #define M_LST_INTERN(a,b,disp) M_MEM(0x2d,a,b,disp)
221 #define M_IST(a,b,disp) \
223 s4 lo = (short) (disp); \
224 s4 hi = (short) (((disp) - lo) >> 16); \
226 M_IST_INTERN(a,b,lo); \
228 M_LDAH(REG_ITMP3,b,hi); \
229 M_IST_INTERN(a,REG_ITMP3,lo); \
233 #define M_LST(a,b,disp) \
235 s4 lo = (short) (disp); \
236 s4 hi = (short) (((disp) - lo) >> 16); \
238 M_LST_INTERN(a,b,lo); \
240 M_LDAH(REG_ITMP3,b,hi); \
241 M_LST_INTERN(a,REG_ITMP3,lo); \
245 #define M_AST(a,b,disp) M_LST(a,b,disp)
247 #define M_BSEXT(b,c) M_OP3 (0x1c,0x0,REG_ZERO,b,c,0)
248 #define M_SSEXT(b,c) M_OP3 (0x1c,0x1,REG_ZERO,b,c,0)
250 #define M_BR(disp) M_BRA (0x30,REG_ZERO,disp)
251 #define M_BSR(ra,disp) M_BRA (0x34,ra,disp)
252 #define M_BEQZ(a,disp) M_BRA (0x39,a,disp)
253 #define M_BLTZ(a,disp) M_BRA (0x3a,a,disp)
254 #define M_BLEZ(a,disp) M_BRA (0x3b,a,disp)
255 #define M_BNEZ(a,disp) M_BRA (0x3d,a,disp)
256 #define M_BGEZ(a,disp) M_BRA (0x3e,a,disp)
257 #define M_BGTZ(a,disp) M_BRA (0x3f,a,disp)
259 #define M_JMP(a,b) M_MEM (0x1a,a,b,0x0000)
260 #define M_JSR(a,b) M_MEM (0x1a,a,b,0x4000)
261 #define M_RET(a,b) M_MEM (0x1a,a,b,0x8000)
263 #define M_IADD(a,b,c) M_OP3 (0x10,0x0, a,b,c,0)
264 #define M_LADD(a,b,c) M_OP3 (0x10,0x20, a,b,c,0)
265 #define M_ISUB(a,b,c) M_OP3 (0x10,0x09, a,b,c,0)
266 #define M_LSUB(a,b,c) M_OP3 (0x10,0x29, a,b,c,0)
267 #define M_IMUL(a,b,c) M_OP3 (0x13,0x00, a,b,c,0)
268 #define M_LMUL(a,b,c) M_OP3 (0x13,0x20, a,b,c,0)
270 #define M_IADD_IMM(a,b,c) M_OP3 (0x10,0x0, a,b,c,1)
271 #define M_LADD_IMM(a,b,c) M_OP3 (0x10,0x20, a,b,c,1)
272 #define M_ISUB_IMM(a,b,c) M_OP3 (0x10,0x09, a,b,c,1)
273 #define M_LSUB_IMM(a,b,c) M_OP3 (0x10,0x29, a,b,c,1)
274 #define M_IMUL_IMM(a,b,c) M_OP3 (0x13,0x00, a,b,c,1)
275 #define M_LMUL_IMM(a,b,c) M_OP3 (0x13,0x20, a,b,c,1)
277 #define M_AADD_IMM(a,b,c) M_LADD_IMM(a,b,c)
278 #define M_ASUB_IMM(a,b,c) M_LSUB_IMM(a,b,c)
280 #define M_CMPEQ(a,b,c) M_OP3 (0x10,0x2d, a,b,c,0)
281 #define M_CMPLT(a,b,c) M_OP3 (0x10,0x4d, a,b,c,0)
282 #define M_CMPLE(a,b,c) M_OP3 (0x10,0x6d, a,b,c,0)
284 #define M_CMPULE(a,b,c) M_OP3 (0x10,0x3d, a,b,c,0)
285 #define M_CMPULT(a,b,c) M_OP3 (0x10,0x1d, a,b,c,0)
287 #define M_CMPEQ_IMM(a,b,c) M_OP3 (0x10,0x2d, a,b,c,1)
288 #define M_CMPLT_IMM(a,b,c) M_OP3 (0x10,0x4d, a,b,c,1)
289 #define M_CMPLE_IMM(a,b,c) M_OP3 (0x10,0x6d, a,b,c,1)
291 #define M_CMPULE_IMM(a,b,c) M_OP3 (0x10,0x3d, a,b,c,1)
292 #define M_CMPULT_IMM(a,b,c) M_OP3 (0x10,0x1d, a,b,c,1)
294 #define M_AND(a,b,c) M_OP3 (0x11,0x00, a,b,c,0)
295 #define M_OR( a,b,c) M_OP3 (0x11,0x20, a,b,c,0)
296 #define M_XOR(a,b,c) M_OP3 (0x11,0x40, a,b,c,0)
298 #define M_AND_IMM(a,b,c) M_OP3 (0x11,0x00, a,b,c,1)
299 #define M_OR_IMM( a,b,c) M_OP3 (0x11,0x20, a,b,c,1)
300 #define M_XOR_IMM(a,b,c) M_OP3 (0x11,0x40, a,b,c,1)
302 #define M_MOV(a,c) M_OR (a,a,c)
303 #define M_CLR(c) M_OR (31,31,c)
304 #define M_NOP M_OR (31,31,31)
306 #define M_SLL(a,b,c) M_OP3 (0x12,0x39, a,b,c,0)
307 #define M_SRA(a,b,c) M_OP3 (0x12,0x3c, a,b,c,0)
308 #define M_SRL(a,b,c) M_OP3 (0x12,0x34, a,b,c,0)
310 #define M_SLL_IMM(a,b,c) M_OP3 (0x12,0x39, a,b,c,1)
311 #define M_SRA_IMM(a,b,c) M_OP3 (0x12,0x3c, a,b,c,1)
312 #define M_SRL_IMM(a,b,c) M_OP3 (0x12,0x34, a,b,c,1)
314 #define M_FLD_INTERN(a,b,disp) M_MEM(0x22,a,b,disp)
315 #define M_DLD_INTERN(a,b,disp) M_MEM(0x23,a,b,disp)
317 #define M_FLD(a,b,disp) \
319 s4 lo = (short) (disp); \
320 s4 hi = (short) (((disp) - lo) >> 16); \
322 M_FLD_INTERN(a,b,lo); \
324 M_LDAH(REG_ITMP3,b,hi); \
325 M_FLD_INTERN(a,REG_ITMP3,lo); \
329 #define M_DLD(a,b,disp) \
331 s4 lo = (short) (disp); \
332 s4 hi = (short) (((disp) - lo) >> 16); \
334 M_DLD_INTERN(a,b,lo); \
336 M_LDAH(REG_ITMP3,b,hi); \
337 M_DLD_INTERN(a,REG_ITMP3,lo); \
341 #define M_FST_INTERN(a,b,disp) M_MEM(0x26,a,b,disp)
342 #define M_DST_INTERN(a,b,disp) M_MEM(0x27,a,b,disp)
348 #define M_FST(a,b,disp) \
350 s4 lo = (short) (disp); \
351 s4 hi = (short) (((disp) - lo) >> 16); \
353 M_FST_INTERN(a,b,lo); \
355 M_LDAH(REG_ITMP3,b,hi); \
356 M_FST_INTERN(a,REG_ITMP3,lo); \
360 #define M_DST(a,b,disp) \
362 s4 lo = (short) (disp); \
363 s4 hi = (short) (((disp) - lo) >> 16); \
365 M_DST_INTERN(a,b,lo); \
367 M_LDAH(REG_ITMP3,b,hi); \
368 M_DST_INTERN(a,REG_ITMP3,lo); \
373 #define M_FADD(a,b,c) M_FOP3 (0x16, 0x080, a,b,c)
374 #define M_DADD(a,b,c) M_FOP3 (0x16, 0x0a0, a,b,c)
375 #define M_FSUB(a,b,c) M_FOP3 (0x16, 0x081, a,b,c)
376 #define M_DSUB(a,b,c) M_FOP3 (0x16, 0x0a1, a,b,c)
377 #define M_FMUL(a,b,c) M_FOP3 (0x16, 0x082, a,b,c)
378 #define M_DMUL(a,b,c) M_FOP3 (0x16, 0x0a2, a,b,c)
379 #define M_FDIV(a,b,c) M_FOP3 (0x16, 0x083, a,b,c)
380 #define M_DDIV(a,b,c) M_FOP3 (0x16, 0x0a3, a,b,c)
382 #define M_FADDS(a,b,c) M_FOP3 (0x16, 0x580, a,b,c)
383 #define M_DADDS(a,b,c) M_FOP3 (0x16, 0x5a0, a,b,c)
384 #define M_FSUBS(a,b,c) M_FOP3 (0x16, 0x581, a,b,c)
385 #define M_DSUBS(a,b,c) M_FOP3 (0x16, 0x5a1, a,b,c)
386 #define M_FMULS(a,b,c) M_FOP3 (0x16, 0x582, a,b,c)
387 #define M_DMULS(a,b,c) M_FOP3 (0x16, 0x5a2, a,b,c)
388 #define M_FDIVS(a,b,c) M_FOP3 (0x16, 0x583, a,b,c)
389 #define M_DDIVS(a,b,c) M_FOP3 (0x16, 0x5a3, a,b,c)
391 #define M_CVTDF(b,c) M_FOP3 (0x16, 0x0ac, 31,b,c)
392 #define M_CVTLF(b,c) M_FOP3 (0x16, 0x0bc, 31,b,c)
393 #define M_CVTLD(b,c) M_FOP3 (0x16, 0x0be, 31,b,c)
394 #define M_CVTDL(b,c) M_FOP3 (0x16, 0x1af, 31,b,c)
395 #define M_CVTDL_C(b,c) M_FOP3 (0x16, 0x12f, 31,b,c)
396 #define M_CVTLI(b,c) M_FOP3 (0x17, 0x130, 31,b,c)
398 #define M_CVTDFS(b,c) M_FOP3 (0x16, 0x5ac, 31,b,c)
399 #define M_CVTFDS(b,c) M_FOP3 (0x16, 0x6ac, 31,b,c)
400 #define M_CVTDLS(b,c) M_FOP3 (0x16, 0x5af, 31,b,c)
401 #define M_CVTDL_CS(b,c) M_FOP3 (0x16, 0x52f, 31,b,c)
402 #define M_CVTLIS(b,c) M_FOP3 (0x17, 0x530, 31,b,c)
404 #define M_FCMPEQ(a,b,c) M_FOP3 (0x16, 0x0a5, a,b,c)
405 #define M_FCMPLT(a,b,c) M_FOP3 (0x16, 0x0a6, a,b,c)
407 #define M_FCMPEQS(a,b,c) M_FOP3 (0x16, 0x5a5, a,b,c)
408 #define M_FCMPLTS(a,b,c) M_FOP3 (0x16, 0x5a6, a,b,c)
410 #define M_FMOV(fa,fb) M_FOP3 (0x17, 0x020, fa,fa,fb)
411 #define M_DMOV(fa,fb) M_FMOV (fa,fb)
412 #define M_FMOVN(fa,fb) M_FOP3 (0x17, 0x021, fa,fa,fb)
414 #define M_FNOP M_FMOV (31,31)
416 #define M_FBEQZ(fa,disp) M_BRA (0x31,fa,disp)
420 #define M_TRAPB M_MEM (0x18,0,0,0x0000)
422 #define M_S4ADDL(a,b,c) M_OP3 (0x10,0x02, a,b,c,0)
423 #define M_S4ADDQ(a,b,c) M_OP3 (0x10,0x22, a,b,c,0)
424 #define M_S4SUBL(a,b,c) M_OP3 (0x10,0x0b, a,b,c,0)
425 #define M_S4SUBQ(a,b,c) M_OP3 (0x10,0x2b, a,b,c,0)
426 #define M_S8ADDL(a,b,c) M_OP3 (0x10,0x12, a,b,c,0)
427 #define M_S8ADDQ(a,b,c) M_OP3 (0x10,0x32, a,b,c,0)
428 #define M_S8SUBL(a,b,c) M_OP3 (0x10,0x1b, a,b,c,0)
429 #define M_S8SUBQ(a,b,c) M_OP3 (0x10,0x3b, a,b,c,0)
430 #define M_SAADDQ(a,b,c) M_S8ADDQ(a,b,c)
432 #define M_S4ADDL_IMM(a,b,c) M_OP3 (0x10,0x02, a,b,c,1)
433 #define M_S4ADDQ_IMM(a,b,c) M_OP3 (0x10,0x22, a,b,c,1)
434 #define M_S4SUBL_IMM(a,b,c) M_OP3 (0x10,0x0b, a,b,c,1)
435 #define M_S4SUBQ_IMM(a,b,c) M_OP3 (0x10,0x2b, a,b,c,1)
436 #define M_S8ADDL_IMM(a,b,c) M_OP3 (0x10,0x12, a,b,c,1)
437 #define M_S8ADDQ_IMM(a,b,c) M_OP3 (0x10,0x32, a,b,c,1)
438 #define M_S8SUBL_IMM(a,b,c) M_OP3 (0x10,0x1b, a,b,c,1)
439 #define M_S8SUBQ_IMM(a,b,c) M_OP3 (0x10,0x3b, a,b,c,1)
441 #define M_LLD_U(a,b,disp) M_MEM (0x0b,a,b,disp)
442 #define M_LST_U(a,b,disp) M_MEM (0x0f,a,b,disp)
444 #define M_ZAP(a,b,c) M_OP3 (0x12,0x30, a,b,c,0)
445 #define M_ZAPNOT(a,b,c) M_OP3 (0x12,0x31, a,b,c,0)
447 #define M_ZAP_IMM(a,b,c) M_OP3 (0x12,0x30, a,b,c,1)
448 #define M_ZAPNOT_IMM(a,b,c) M_OP3 (0x12,0x31, a,b,c,1)
450 #define M_BZEXT(a,b) M_ZAPNOT_IMM(a, 0x01, b)
451 #define M_CZEXT(a,b) M_ZAPNOT_IMM(a, 0x03, b)
452 #define M_IZEXT(a,b) M_ZAPNOT_IMM(a, 0x0f, b)
454 #define M_EXTBL(a,b,c) M_OP3 (0x12,0x06, a,b,c,0)
455 #define M_EXTWL(a,b,c) M_OP3 (0x12,0x16, a,b,c,0)
456 #define M_EXTLL(a,b,c) M_OP3 (0x12,0x26, a,b,c,0)
457 #define M_EXTQL(a,b,c) M_OP3 (0x12,0x36, a,b,c,0)
458 #define M_EXTWH(a,b,c) M_OP3 (0x12,0x5a, a,b,c,0)
459 #define M_EXTLH(a,b,c) M_OP3 (0x12,0x6a, a,b,c,0)
460 #define M_EXTQH(a,b,c) M_OP3 (0x12,0x7a, a,b,c,0)
461 #define M_INSBL(a,b,c) M_OP3 (0x12,0x0b, a,b,c,0)
462 #define M_INSWL(a,b,c) M_OP3 (0x12,0x1b, a,b,c,0)
463 #define M_INSLL(a,b,c) M_OP3 (0x12,0x2b, a,b,c,0)
464 #define M_INSQL(a,b,c) M_OP3 (0x12,0x3b, a,b,c,0)
465 #define M_INSWH(a,b,c) M_OP3 (0x12,0x57, a,b,c,0)
466 #define M_INSLH(a,b,c) M_OP3 (0x12,0x67, a,b,c,0)
467 #define M_INSQH(a,b,c) M_OP3 (0x12,0x77, a,b,c,0)
468 #define M_MSKBL(a,b,c) M_OP3 (0x12,0x02, a,b,c,0)
469 #define M_MSKWL(a,b,c) M_OP3 (0x12,0x12, a,b,c,0)
470 #define M_MSKLL(a,b,c) M_OP3 (0x12,0x22, a,b,c,0)
471 #define M_MSKQL(a,b,c) M_OP3 (0x12,0x32, a,b,c,0)
472 #define M_MSKWH(a,b,c) M_OP3 (0x12,0x52, a,b,c,0)
473 #define M_MSKLH(a,b,c) M_OP3 (0x12,0x62, a,b,c,0)
474 #define M_MSKQH(a,b,c) M_OP3 (0x12,0x72, a,b,c,0)
476 #define M_EXTBL_IMM(a,b,c) M_OP3 (0x12,0x06, a,b,c,1)
477 #define M_EXTWL_IMM(a,b,c) M_OP3 (0x12,0x16, a,b,c,1)
478 #define M_EXTLL_IMM(a,b,c) M_OP3 (0x12,0x26, a,b,c,1)
479 #define M_EXTQL_IMM(a,b,c) M_OP3 (0x12,0x36, a,b,c,1)
480 #define M_EXTWH_IMM(a,b,c) M_OP3 (0x12,0x5a, a,b,c,1)
481 #define M_EXTLH_IMM(a,b,c) M_OP3 (0x12,0x6a, a,b,c,1)
482 #define M_EXTQH_IMM(a,b,c) M_OP3 (0x12,0x7a, a,b,c,1)
483 #define M_INSBL_IMM(a,b,c) M_OP3 (0x12,0x0b, a,b,c,1)
484 #define M_INSWL_IMM(a,b,c) M_OP3 (0x12,0x1b, a,b,c,1)
485 #define M_INSLL_IMM(a,b,c) M_OP3 (0x12,0x2b, a,b,c,1)
486 #define M_INSQL_IMM(a,b,c) M_OP3 (0x12,0x3b, a,b,c,1)
487 #define M_INSWH_IMM(a,b,c) M_OP3 (0x12,0x57, a,b,c,1)
488 #define M_INSLH_IMM(a,b,c) M_OP3 (0x12,0x67, a,b,c,1)
489 #define M_INSQH_IMM(a,b,c) M_OP3 (0x12,0x77, a,b,c,1)
490 #define M_MSKBL_IMM(a,b,c) M_OP3 (0x12,0x02, a,b,c,1)
491 #define M_MSKWL_IMM(a,b,c) M_OP3 (0x12,0x12, a,b,c,1)
492 #define M_MSKLL_IMM(a,b,c) M_OP3 (0x12,0x22, a,b,c,1)
493 #define M_MSKQL_IMM(a,b,c) M_OP3 (0x12,0x32, a,b,c,1)
494 #define M_MSKWH_IMM(a,b,c) M_OP3 (0x12,0x52, a,b,c,1)
495 #define M_MSKLH_IMM(a,b,c) M_OP3 (0x12,0x62, a,b,c,1)
496 #define M_MSKQH_IMM(a,b,c) M_OP3 (0x12,0x72, a,b,c,1)
498 #define M_UMULH(a,b,c) M_OP3 (0x13,0x30, a,b,c,0)
500 #define M_UMULH_IMM(a,b,c) M_OP3 (0x13,0x30, a,b,c,1)
502 #define M_CMOVEQ(a,b,c) M_OP3 (0x11,0x24, a,b,c,0)
503 #define M_CMOVNE(a,b,c) M_OP3 (0x11,0x26, a,b,c,0)
504 #define M_CMOVLT(a,b,c) M_OP3 (0x11,0x44, a,b,c,0)
505 #define M_CMOVGE(a,b,c) M_OP3 (0x11,0x46, a,b,c,0)
506 #define M_CMOVLE(a,b,c) M_OP3 (0x11,0x64, a,b,c,0)
507 #define M_CMOVGT(a,b,c) M_OP3 (0x11,0x66, a,b,c,0)
509 #define M_CMOVEQ_IMM(a,b,c) M_OP3 (0x11,0x24, a,b,c,1)
510 #define M_CMOVNE_IMM(a,b,c) M_OP3 (0x11,0x26, a,b,c,1)
511 #define M_CMOVLT_IMM(a,b,c) M_OP3 (0x11,0x44, a,b,c,1)
512 #define M_CMOVGE_IMM(a,b,c) M_OP3 (0x11,0x46, a,b,c,1)
513 #define M_CMOVLE_IMM(a,b,c) M_OP3 (0x11,0x64, a,b,c,1)
514 #define M_CMOVGT_IMM(a,b,c) M_OP3 (0x11,0x66, a,b,c,1)
518 #define M_UNDEFINED M_OP3(0x04, 0, 0, 0, 0, 0)
522 #define M_ANDNOT(a,b,c,const) M_OP3 (0x11,0x08, a,b,c,const)
523 #define M_ORNOT(a,b,c,const) M_OP3 (0x11,0x28, a,b,c,const)
524 #define M_XORNOT(a,b,c,const) M_OP3 (0x11,0x48, a,b,c,const)
526 #define M_CMPBGE(a,b,c,const) M_OP3 (0x10,0x0f, a,b,c,const)
528 #define M_FCMPUN(a,b,c) M_FOP3 (0x16, 0x0a4, a,b,c)
529 #define M_FCMPLE(a,b,c) M_FOP3 (0x16, 0x0a7, a,b,c)
531 #define M_FCMPUNS(a,b,c) M_FOP3 (0x16, 0x5a4, a,b,c)
532 #define M_FCMPLES(a,b,c) M_FOP3 (0x16, 0x5a7, a,b,c)
534 #define M_FBNEZ(fa,disp) M_BRA (0x35,fa,disp)
535 #define M_FBLEZ(fa,disp) M_BRA (0x33,fa,disp)
537 #define M_JMP_CO(a,b) M_MEM (0x1a,a,b,0xc000)
539 #endif // CODEGEN_HPP_