Lines Matching refs:mem_flags

1166 	sljit_s32 dst_r, flags, mem_flags;  in sljit_emit_op1()  local
1185 mem_flags = WORD_SIZE; in sljit_emit_op1()
1188 mem_flags = BYTE_SIZE; in sljit_emit_op1()
1193 mem_flags = BYTE_SIZE | SIGNED; in sljit_emit_op1()
1198 mem_flags = HALF_SIZE; in sljit_emit_op1()
1203 mem_flags = HALF_SIZE | SIGNED; in sljit_emit_op1()
1208 mem_flags = INT_SIZE; in sljit_emit_op1()
1213 mem_flags = INT_SIZE | SIGNED; in sljit_emit_op1()
1219 mem_flags = 0; in sljit_emit_op1()
1228 FAIL_IF(emit_op_mem(compiler, mem_flags, dst_r, src, srcw, TMP_REG1)); in sljit_emit_op1()
1231 return emit_op_mem(compiler, mem_flags | STORE, dst_r, dst, dstw, TMP_REG2); in sljit_emit_op1()
1236 mem_flags = WORD_SIZE; in sljit_emit_op1()
1240 mem_flags = INT_SIZE; in sljit_emit_op1()
1247 FAIL_IF(emit_op_mem(compiler, mem_flags, TMP_REG2, src, srcw, TMP_REG2)); in sljit_emit_op1()
1254 return emit_op_mem(compiler, mem_flags | STORE, dst_r, dst, dstw, TMP_REG2); in sljit_emit_op1()
1263 sljit_s32 dst_r, flags, mem_flags; in sljit_emit_op2() local
1276 mem_flags = WORD_SIZE; in sljit_emit_op2()
1280 mem_flags = INT_SIZE; in sljit_emit_op2()
1287 FAIL_IF(emit_op_mem(compiler, mem_flags, TMP_REG1, src1, src1w, TMP_REG1)); in sljit_emit_op2()
1292 FAIL_IF(emit_op_mem(compiler, mem_flags, TMP_REG2, src2, src2w, TMP_REG2)); in sljit_emit_op2()
1309 return emit_op_mem(compiler, mem_flags | STORE, dst_r, dst, dstw, TMP_REG2); in sljit_emit_op2()
1482 sljit_s32 mem_flags = (op & SLJIT_F32_OP) ? INT_SIZE : WORD_SIZE; in sljit_emit_fop1_cmp() local
1486 emit_fop_mem(compiler, mem_flags, TMP_FREG1, src1, src1w); in sljit_emit_fop1_cmp()
1491 emit_fop_mem(compiler, mem_flags, TMP_FREG2, src2, src2w); in sljit_emit_fop1_cmp()
1502 sljit_s32 dst_r, mem_flags = (op & SLJIT_F32_OP) ? INT_SIZE : WORD_SIZE; in sljit_emit_fop1() local
1514 …_mem(compiler, (GET_OPCODE(op) == SLJIT_CONV_F64_FROM_F32) ? (mem_flags ^ 0x1) : mem_flags, dst_r,… in sljit_emit_fop1()
1539 return emit_fop_mem(compiler, mem_flags | STORE, dst_r, dst, dstw); in sljit_emit_fop1()
1548 sljit_s32 dst_r, mem_flags = (op & SLJIT_F32_OP) ? INT_SIZE : WORD_SIZE; in sljit_emit_fop2() local
1559 emit_fop_mem(compiler, mem_flags, TMP_FREG1, src1, src1w); in sljit_emit_fop2()
1563 emit_fop_mem(compiler, mem_flags, TMP_FREG2, src2, src2w); in sljit_emit_fop2()
1584 return emit_fop_mem(compiler, mem_flags | STORE, TMP_FREG1, dst, dstw); in sljit_emit_fop2()
1804 sljit_s32 dst_r, src_r, flags, mem_flags; in sljit_emit_op_flags() local
1818 mem_flags = (GET_OPCODE(op) == SLJIT_MOV ? WORD_SIZE : INT_SIZE) | STORE; in sljit_emit_op_flags()
1819 return emit_op_mem(compiler, mem_flags, TMP_REG1, dst, dstw, TMP_REG2); in sljit_emit_op_flags()
1826 mem_flags = WORD_SIZE; in sljit_emit_op_flags()
1830 mem_flags = INT_SIZE; in sljit_emit_op_flags()
1836 FAIL_IF(emit_op_mem(compiler, mem_flags, TMP_REG1, dst, dstw, TMP_REG1)); in sljit_emit_op_flags()
1844 return emit_op_mem(compiler, mem_flags | STORE, TMP_REG1, dst, dstw, TMP_REG2); in sljit_emit_op_flags()