Lines Matching refs:arg_types

364 	sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds,  in sljit_emit_enter()  argument
379 …CHECK(check_sljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds,… in sljit_emit_enter()
380 set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
423 arg_types >>= SLJIT_ARG_SHIFT; in sljit_emit_enter()
425 while (arg_types > 0) { in sljit_emit_enter()
426 if ((arg_types & SLJIT_ARG_MASK) < SLJIT_ARG_TYPE_F64) { in sljit_emit_enter()
459 if (arg_types & SLJIT_ARG_TYPE_SCRATCH_REG) { in sljit_emit_enter()
472 FAIL_IF(emit_sse2_load(compiler, (arg_types & SLJIT_ARG_MASK) == SLJIT_ARG_TYPE_F32, in sljit_emit_enter()
476 arg_types >>= SLJIT_ARG_SHIFT; in sljit_emit_enter()
541 sljit_s32 options, sljit_s32 arg_types, sljit_s32 scratches, sljit_s32 saveds, in sljit_set_context() argument
550 …CHECK(check_sljit_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds… in sljit_set_context()
551 set_set_context(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_set_context()
672 static sljit_s32 call_with_args(struct sljit_compiler *compiler, sljit_s32 arg_types, sljit_s32 *sr… in call_with_args() argument
681 arg_types >>= SLJIT_ARG_SHIFT; in call_with_args()
683 while (arg_types) { in call_with_args()
684 if ((arg_types & SLJIT_ARG_MASK) < SLJIT_ARG_TYPE_F64) in call_with_args()
686 arg_types >>= SLJIT_ARG_SHIFT; in call_with_args()
703 static sljit_s32 call_with_args(struct sljit_compiler *compiler, sljit_s32 arg_types, sljit_s32 *sr… in call_with_args() argument
716 arg_types >>= SLJIT_ARG_SHIFT; in call_with_args()
718 while (arg_types) { in call_with_args()
719 types = (types << SLJIT_ARG_SHIFT) | (arg_types & SLJIT_ARG_MASK); in call_with_args()
721 switch (arg_types & SLJIT_ARG_MASK) { in call_with_args()
745 arg_types >>= SLJIT_ARG_SHIFT; in call_with_args()
782 sljit_s32 arg_types) in sljit_emit_call() argument
785 CHECK_PTR(check_sljit_emit_call(compiler, type, arg_types)); in sljit_emit_call()
789 PTR_FAIL_IF(call_with_args(compiler, arg_types, NULL)); in sljit_emit_call()
804 sljit_s32 arg_types, in sljit_emit_icall() argument
808 CHECK(check_sljit_emit_icall(compiler, type, arg_types, src, srcw)); in sljit_emit_icall()
828 FAIL_IF(call_with_args(compiler, arg_types, &src)); in sljit_emit_icall()