Lines Matching refs:fsaveds

202 		|| (fr > (SLJIT_FS0 - compiler->fsaveds) && fr <= SLJIT_FS0)  in function_check_is_freg()
1229 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_emit_enter() argument
1243 …CHECK(check_sljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds,… in sljit_emit_enter()
1244 set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
1268 if (fsaveds > 0 || fscratches >= SLJIT_FIRST_SAVED_FLOAT_REG) { in sljit_emit_enter()
1274 if (fsaveds + fscratches >= SLJIT_NUMBER_OF_FLOAT_REGISTERS) { in sljit_emit_enter()
1277 if (fsaveds > 0) in sljit_emit_enter()
1278 FAIL_IF(push_inst(compiler, VPUSH | VD(SLJIT_FS0) | ((sljit_ins)fsaveds << 1))); in sljit_emit_enter()
1395 sljit_s32 fscratches, sljit_s32 fsaveds, sljit_s32 local_size) in sljit_set_context() argument
1400 …CHECK(check_sljit_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds in sljit_set_context()
1401 set_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_set_context()
1406 if ((size & SSIZE_OF(sw)) != 0 && (fsaveds > 0 || fscratches >= SLJIT_FIRST_SAVED_FLOAT_REG)) in sljit_set_context()
1425 sljit_s32 local_size, fscratches, fsaveds, i, tmp; in emit_stack_frame_release() local
1434 fsaveds = compiler->fsaveds; in emit_stack_frame_release()
1436 if (fsaveds > 0 || fscratches >= SLJIT_FIRST_SAVED_FLOAT_REG) { in emit_stack_frame_release()
1440 if (fsaveds + fscratches >= SLJIT_NUMBER_OF_FLOAT_REGISTERS) { in emit_stack_frame_release()
1445 if (fsaveds > 0) in emit_stack_frame_release()
1446 FAIL_IF(push_inst(compiler, VPOP | VD(SLJIT_FS0) | ((sljit_ins)fsaveds << 1))); in emit_stack_frame_release()
2602 if (compiler->fsaveds > 0 || compiler->fscratches >= SLJIT_FIRST_SAVED_FLOAT_REG) { in sljit_emit_op_dst()
2607 size += GET_SAVED_FLOAT_REGISTERS_SIZE(compiler->fscratches, compiler->fsaveds, f64); in sljit_emit_op_dst()