Lines Matching refs:arg_types

1082 	sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds,  in sljit_emit_enter()  argument
1097 …CHECK(check_sljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds,… in sljit_emit_enter()
1098 set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
1134 arg_types >>= SLJIT_ARG_SHIFT; in sljit_emit_enter()
1143 while (arg_types) { in sljit_emit_enter()
1144 switch (arg_types & SLJIT_ARG_MASK) { in sljit_emit_enter()
1168 if (!(arg_types & SLJIT_ARG_TYPE_SCRATCH_REG)) { in sljit_emit_enter()
1187 arg_types >>= SLJIT_ARG_SHIFT; in sljit_emit_enter()
1196 while (arg_types) { in sljit_emit_enter()
1197 switch (arg_types & SLJIT_ARG_MASK) { in sljit_emit_enter()
1217 if (!(arg_types & SLJIT_ARG_TYPE_SCRATCH_REG)) { in sljit_emit_enter()
1225 arg_types >>= SLJIT_ARG_SHIFT; in sljit_emit_enter()
1287 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_set_context() argument
1293 …CHECK(check_sljit_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds… in sljit_set_context()
1294 set_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_set_context()
2104 static sljit_s32 softfloat_call_with_args(struct sljit_compiler *compiler, sljit_s32 arg_types, slj… in softfloat_call_with_args() argument
2118 arg_types >>= SLJIT_ARG_SHIFT; in softfloat_call_with_args()
2120 while (arg_types) { in softfloat_call_with_args()
2121 types = (types << SLJIT_ARG_SHIFT) | (arg_types & SLJIT_ARG_MASK); in softfloat_call_with_args()
2123 switch (arg_types & SLJIT_ARG_MASK) { in softfloat_call_with_args()
2143 arg_types >>= SLJIT_ARG_SHIFT; in softfloat_call_with_args()
2229 static sljit_s32 softfloat_post_call_with_args(struct sljit_compiler *compiler, sljit_s32 arg_types) in softfloat_post_call_with_args() argument
2231 if ((arg_types & SLJIT_ARG_MASK) == SLJIT_ARG_TYPE_F64) in softfloat_post_call_with_args()
2233 if ((arg_types & SLJIT_ARG_MASK) == SLJIT_ARG_TYPE_F32) in softfloat_post_call_with_args()
2241 static sljit_s32 hardfloat_call_with_args(struct sljit_compiler *compiler, sljit_s32 arg_types) in hardfloat_call_with_args() argument
2248 arg_types >>= SLJIT_ARG_SHIFT; in hardfloat_call_with_args()
2250 while (arg_types) { in hardfloat_call_with_args()
2251 switch (arg_types & SLJIT_ARG_MASK) { in hardfloat_call_with_args()
2272 arg_types >>= SLJIT_ARG_SHIFT; in hardfloat_call_with_args()
2281 sljit_s32 arg_types) in sljit_emit_call() argument
2289 CHECK_PTR(check_sljit_emit_call(compiler, type, arg_types)); in sljit_emit_call()
2292 PTR_FAIL_IF(softfloat_call_with_args(compiler, arg_types, NULL, &extra_space)); in sljit_emit_call()
2320 PTR_FAIL_IF(softfloat_post_call_with_args(compiler, arg_types)); in sljit_emit_call()
2329 PTR_FAIL_IF(hardfloat_call_with_args(compiler, arg_types)); in sljit_emit_call()
2373 sljit_s32 arg_types, in sljit_emit_icall() argument
2381 CHECK(check_sljit_emit_icall(compiler, type, arg_types, src, srcw)); in sljit_emit_icall()
2394 FAIL_IF(softfloat_call_with_args(compiler, arg_types, &src, &extra_space)); in sljit_emit_icall()
2419 return softfloat_post_call_with_args(compiler, arg_types); in sljit_emit_icall()
2427 FAIL_IF(hardfloat_call_with_args(compiler, arg_types)); in sljit_emit_icall()