Lines Matching refs:SLJIT_32

100 	((op) & ~(SLJIT_32 | SLJIT_SET_Z | VARIABLE_FLAG_MASK))
106 ((op) & (SLJIT_32 | SLJIT_SET_Z | VARIABLE_FLAG_MASK))
390 SLJIT_COMPILE_ASSERT(SLJIT_REWRITABLE_JUMP != SLJIT_32, in sljit_create_compiler()
559 compiler->last_flags = GET_FLAG_TYPE(current_flags) | (current_flags & (SLJIT_32 | SLJIT_SET_Z)); in sljit_set_current_flags()
1251 fprintf(compiler->verbose, " return%s%s ", !(op & SLJIT_32) ? "" : "32", in check_sljit_emit_return()
1255 fprintf(compiler->verbose, " return%s ", !(op & SLJIT_32) ? ".f64" : ".f32"); in check_sljit_emit_return()
1300 || ((op & ~SLJIT_32) >= SLJIT_DIVMOD_UW && (op & ~SLJIT_32) <= SLJIT_DIV_SW) in check_sljit_emit_op0()
1311 fprintf(compiler->verbose, (op & SLJIT_32) ? "32" : "w"); in check_sljit_emit_op0()
1340 CHECK_ARGUMENT(!(op & (SLJIT_32 | SLJIT_SET_Z | VARIABLE_FLAG_MASK))); in check_sljit_emit_op1()
1353 compiler->last_flags = GET_FLAG_TYPE(op) | (op & (SLJIT_32 | SLJIT_SET_Z)); in check_sljit_emit_op1()
1360 fprintf(compiler->verbose, " mov%s%s ", !(op & SLJIT_32) ? "" : "32", in check_sljit_emit_op1()
1365 …verbose, " %s%s%s%s%s ", op1_names[GET_OPCODE(op) - SLJIT_OP1_BASE], !(op & SLJIT_32) ? "" : "32", in check_sljit_emit_op1()
1424 CHECK_ARGUMENT((op & SLJIT_32) == (compiler->last_flags & SLJIT_32)); in check_sljit_emit_op2()
1442 compiler->last_flags = GET_FLAG_TYPE(op) | (op & (SLJIT_32 | SLJIT_SET_Z)); in check_sljit_emit_op2()
1446 …verbose, " %s%s%s%s%s ", op2_names[GET_OPCODE(op) - SLJIT_OP2_BASE], !(op & SLJIT_32) ? "" : "32", in check_sljit_emit_op2()
1471 CHECK_ARGUMENT((op & ~(0xff | SLJIT_32 | SLJIT_SHIFT_INTO_NON_ZERO)) == 0); in check_sljit_emit_shift_into()
1478 …erbose, " %s%s.into%s ", op2_names[GET_OPCODE(op) - SLJIT_OP2_BASE], !(op & SLJIT_32) ? "" : "32", in check_sljit_emit_shift_into()
1593 (op & SLJIT_32) ? ".f32.from.f64" : ".f64.from.f32"); in check_sljit_emit_fop1()
1596 (op & SLJIT_32) ? ".f32" : ".f64"); in check_sljit_emit_fop1()
1612 compiler->last_flags = GET_FLAG_TYPE(op) | (op & SLJIT_32); in check_sljit_emit_fop1_cmp()
1631 …fprintf(compiler->verbose, " %s%s", fop1_names[SLJIT_CMP_F64 - SLJIT_FOP1_BASE], (op & SLJIT_32) … in check_sljit_emit_fop1_cmp()
1665 (op & SLJIT_32) ? ".f32" : ".f64"); in check_sljit_emit_fop1_conv_sw_from_f64()
1694 (op & SLJIT_32) ? ".f32" : ".f64", in check_sljit_emit_fop1_conv_f64_from_sw()
1720 …verbose, " %s%s ", fop2_names[GET_OPCODE(op) - SLJIT_FOP2_BASE], (op & SLJIT_32) ? ".f32" : ".f64… in check_sljit_emit_fop2()
1840 CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_REWRITABLE_JUMP | SLJIT_32))); in check_sljit_emit_cmp()
1848 fprintf(compiler->verbose, " cmp%s%s %s, ", (type & SLJIT_32) ? "32" : "", in check_sljit_emit_cmp()
1865 CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_REWRITABLE_JUMP | SLJIT_32))); in check_sljit_emit_fcmp()
1874 fprintf(compiler->verbose, " fcmp%s%s %s, ", (type & SLJIT_32) ? ".f32" : ".f64", in check_sljit_emit_fcmp()
1972 compiler->last_flags = GET_FLAG_TYPE(op) | (op & (SLJIT_32 | SLJIT_SET_Z)); in check_sljit_emit_op_flags()
1978 …GET_OPCODE(op) < SLJIT_OP2_BASE ? op1_names[GET_OPCODE(op) - SLJIT_OP1_BASE] : ((op & SLJIT_32) ? … in check_sljit_emit_op_flags()
1992 sljit_s32 cond = type & ~SLJIT_32; in check_sljit_emit_cmov()
2014 !(type & SLJIT_32) ? "" : "32", in check_sljit_emit_cmov()
2015 jump_names[type & ~SLJIT_32]); in check_sljit_emit_cmov()
2059 CHECK_ARGUMENT((type & ~(0xff | SLJIT_32 | SLJIT_MEM_STORE | allowed_flags)) == 0); in check_sljit_emit_mem()
2068 …CHECK_ARGUMENT(!(type & SLJIT_32) || ((type & 0xff) >= SLJIT_MOV_U8 && (type & 0xff) <= SLJIT_MOV_… in check_sljit_emit_mem()
2082 !(type & SLJIT_32) ? "" : "32", in check_sljit_emit_mem()
2121 …CHECK_ARGUMENT((type & ~(0xff | SLJIT_32 | SLJIT_MEM_STORE | SLJIT_MEM_SUPP | SLJIT_MEM_POST)) == … in check_sljit_emit_mem_update()
2142 !(type & SLJIT_32) ? "" : "32", in check_sljit_emit_mem_update()
2168 CHECK_ARGUMENT(!(type & SLJIT_32)); in check_sljit_emit_fmem()
2171 …CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_32 | SLJIT_MEM_STORE | SLJIT_MEM_UNALIGNED | SLJIT_MEM_UNAL… in check_sljit_emit_fmem()
2179 !(type & SLJIT_32) ? "f64" : "f32"); in check_sljit_emit_fmem()
2204 …CHECK_ARGUMENT((type & ~(0xff | SLJIT_32 | SLJIT_MEM_STORE | SLJIT_MEM_SUPP | SLJIT_MEM_POST)) == … in check_sljit_emit_fmem_update()
2219 !(type & SLJIT_32) ? "f64" : "f32", in check_sljit_emit_fmem_update()
2325 sljit_s32 op = (type & SLJIT_32) ? SLJIT_MOV32 : SLJIT_MOV; in sljit_emit_cmov_generic()
2328 jump = sljit_emit_jump(compiler, (type & ~SLJIT_32) ^ 0x1); in sljit_emit_cmov_generic()
2354 return sljit_emit_op1(compiler, type & (0xff | SLJIT_32), mem, memw, reg, 0); in sljit_emit_mem_unaligned()
2355 return sljit_emit_op1(compiler, type & (0xff | SLJIT_32), reg, 0, mem, memw); in sljit_emit_mem_unaligned()
2370 return sljit_emit_fop1(compiler, type & (0xff | SLJIT_32), mem, memw, freg, 0); in sljit_emit_fmem_unaligned()
2371 return sljit_emit_fop1(compiler, type & (0xff | SLJIT_32), freg, 0, mem, memw); in sljit_emit_fmem_unaligned()
2523 type = condition | (type & (SLJIT_32 | SLJIT_REWRITABLE_JUMP)); in sljit_emit_cmp()
2539 SLJIT_SUB | flags | (type & SLJIT_32), src1, src1w, src2, src2w)); in sljit_emit_cmp()
2542 return sljit_emit_jump(compiler, condition | (type & (SLJIT_REWRITABLE_JUMP | SLJIT_32))); in sljit_emit_cmp()
2573 …piler, SLJIT_CMP_F64 | ((type & 0xff) << VARIABLE_FLAG_SHIFT) | (type & SLJIT_32), src1, src1w, sr… in sljit_emit_fcmp()