Lines Matching refs:arg_types

1048 	sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds,  in sljit_emit_enter()  argument
1062 …CHECK(check_sljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds,… in sljit_emit_enter()
1063 set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
1106 arg_types >>= SLJIT_ARG_SHIFT; in sljit_emit_enter()
1115 while (arg_types) { in sljit_emit_enter()
1116 switch (arg_types & SLJIT_ARG_MASK) { in sljit_emit_enter()
1140 if (!(arg_types & SLJIT_ARG_TYPE_SCRATCH_REG)) { in sljit_emit_enter()
1157 arg_types >>= SLJIT_ARG_SHIFT; in sljit_emit_enter()
1166 while (arg_types) { in sljit_emit_enter()
1167 switch (arg_types & SLJIT_ARG_MASK) { in sljit_emit_enter()
1187 if (!(arg_types & SLJIT_ARG_TYPE_SCRATCH_REG)) { in sljit_emit_enter()
1195 arg_types >>= SLJIT_ARG_SHIFT; in sljit_emit_enter()
1211 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_set_context() argument
1217 …CHECK(check_sljit_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds… in sljit_set_context()
1218 set_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_set_context()
2530 static sljit_s32 softfloat_call_with_args(struct sljit_compiler *compiler, sljit_s32 arg_types, slj… in softfloat_call_with_args() argument
2544 arg_types >>= SLJIT_ARG_SHIFT; in softfloat_call_with_args()
2546 while (arg_types) { in softfloat_call_with_args()
2547 types = (types << SLJIT_ARG_SHIFT) | (arg_types & SLJIT_ARG_MASK); in softfloat_call_with_args()
2549 switch (arg_types & SLJIT_ARG_MASK) { in softfloat_call_with_args()
2569 arg_types >>= SLJIT_ARG_SHIFT; in softfloat_call_with_args()
2653 static sljit_s32 softfloat_post_call_with_args(struct sljit_compiler *compiler, sljit_s32 arg_types) in softfloat_post_call_with_args() argument
2655 if ((arg_types & SLJIT_ARG_MASK) == SLJIT_ARG_TYPE_F64) in softfloat_post_call_with_args()
2657 if ((arg_types & SLJIT_ARG_MASK) == SLJIT_ARG_TYPE_F32) in softfloat_post_call_with_args()
2665 static sljit_s32 hardfloat_call_with_args(struct sljit_compiler *compiler, sljit_s32 arg_types) in hardfloat_call_with_args() argument
2672 arg_types >>= SLJIT_ARG_SHIFT; in hardfloat_call_with_args()
2674 while (arg_types) { in hardfloat_call_with_args()
2675 switch (arg_types & SLJIT_ARG_MASK) { in hardfloat_call_with_args()
2699 arg_types >>= SLJIT_ARG_SHIFT; in hardfloat_call_with_args()
2710 sljit_s32 arg_types) in sljit_emit_call() argument
2718 CHECK_PTR(check_sljit_emit_call(compiler, type, arg_types)); in sljit_emit_call()
2721 PTR_FAIL_IF(softfloat_call_with_args(compiler, arg_types, NULL, &extra_space)); in sljit_emit_call()
2749 PTR_FAIL_IF(softfloat_post_call_with_args(compiler, arg_types)); in sljit_emit_call()
2757 PTR_FAIL_IF(hardfloat_call_with_args(compiler, arg_types)); in sljit_emit_call()
2810 sljit_s32 arg_types, in sljit_emit_icall() argument
2818 CHECK(check_sljit_emit_icall(compiler, type, arg_types, src, srcw)); in sljit_emit_icall()
2831 FAIL_IF(softfloat_call_with_args(compiler, arg_types, &src, &extra_space)); in sljit_emit_icall()
2856 return softfloat_post_call_with_args(compiler, arg_types); in sljit_emit_icall()
2863 FAIL_IF(hardfloat_call_with_args(compiler, arg_types)); in sljit_emit_icall()