Lines Matching refs:fsaveds

268 		|| (fr > (SLJIT_FS0 - compiler->fsaveds) && fr <= SLJIT_FS0)  in function_check_is_freg()
1371 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_emit_enter() argument
1386 …CHECK(check_sljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds,… in sljit_emit_enter()
1387 set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
1404 if (fsaveds > 0 || fscratches >= SLJIT_FIRST_SAVED_FLOAT_REG) { in sljit_emit_enter()
1410 if (fsaveds + fscratches >= SLJIT_NUMBER_OF_FLOAT_REGISTERS) { in sljit_emit_enter()
1413 if (fsaveds > 0) in sljit_emit_enter()
1414 FAIL_IF(push_inst32(compiler, VPUSH | VD4(SLJIT_FS0) | ((sljit_uw)fsaveds << 1))); in sljit_emit_enter()
1581 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_set_context() argument
1586 …CHECK(check_sljit_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds in sljit_set_context()
1587 set_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_set_context()
1592 if ((size & SSIZE_OF(sw)) != 0 && (fsaveds > 0 || fscratches >= SLJIT_FIRST_SAVED_FLOAT_REG)) in sljit_set_context()
1621 sljit_s32 local_size, fscratches, fsaveds, i, tmp; in emit_stack_frame_release() local
1630 fsaveds = compiler->fsaveds; in emit_stack_frame_release()
1632 if (fsaveds > 0 || fscratches >= SLJIT_FIRST_SAVED_FLOAT_REG) { in emit_stack_frame_release()
1636 if (fsaveds + fscratches >= SLJIT_NUMBER_OF_FLOAT_REGISTERS) { in emit_stack_frame_release()
1641 if (fsaveds > 0) in emit_stack_frame_release()
1642 FAIL_IF(push_inst32(compiler, VPOP | VD4(SLJIT_FS0) | ((sljit_uw)fsaveds << 1))); in emit_stack_frame_release()
2176 if (compiler->fsaveds > 0 || compiler->fscratches >= SLJIT_FIRST_SAVED_FLOAT_REG) { in sljit_emit_op_dst()
2181 size += GET_SAVED_FLOAT_REGISTERS_SIZE(compiler->fscratches, compiler->fsaveds, f64); in sljit_emit_op_dst()