Lines Matching refs:float_arg_count

936 	sljit_s32 arg_count, word_arg_count, float_arg_count;  in sljit_emit_enter()  local
1033 float_arg_count = 0; in sljit_emit_enter()
1045 float_arg_count++; in sljit_emit_enter()
1049 if (word_arg_count == 0 && float_arg_count <= 2) { in sljit_emit_enter()
1050 if (float_arg_count == 1) in sljit_emit_enter()
1053 FAIL_IF(push_inst(compiler, MTC1 | TA(4 + arg_count) | FS(float_arg_count), MOVABLE_INS)); in sljit_emit_enter()
1057 FAIL_IF(push_inst(compiler, MTHC1 | TA(5 + arg_count) | FS(float_arg_count), MOVABLE_INS)); in sljit_emit_enter()
1061 …FAIL_IF(push_inst(compiler, MTC1 | TA(5 + arg_count) | FS(float_arg_count) | (1 << 11), MOVABLE_IN… in sljit_emit_enter()
1065 …FAIL_IF(push_inst(compiler, LDC1 | base | FT(float_arg_count) | IMM(local_size + (arg_count << 2))… in sljit_emit_enter()
1069 float_arg_count++; in sljit_emit_enter()
1071 if (word_arg_count == 0 && float_arg_count <= 2) { in sljit_emit_enter()
1072 if (float_arg_count == 1) in sljit_emit_enter()
1075 FAIL_IF(push_inst(compiler, MTC1 | TA(4 + arg_count) | FS(float_arg_count), MOVABLE_INS)); in sljit_emit_enter()
1077 …FAIL_IF(push_inst(compiler, LWC1 | base | FT(float_arg_count) | IMM(local_size + (arg_count << 2))… in sljit_emit_enter()
1106 float_arg_count++; in sljit_emit_enter()
1107 if (arg_count != float_arg_count) in sljit_emit_enter()
1108 FAIL_IF(push_inst(compiler, MOV_fmt(FMT_D) | FS(arg_count) | FD(float_arg_count), MOVABLE_INS)); in sljit_emit_enter()
1113 float_arg_count++; in sljit_emit_enter()
1114 if (arg_count != float_arg_count) in sljit_emit_enter()
1115 FAIL_IF(push_inst(compiler, MOV_fmt(FMT_S) | FS(arg_count) | FD(float_arg_count), MOVABLE_INS)); in sljit_emit_enter()