Lines Matching refs:ins

74 	sljit_ins ins = NOP;  in call_with_args()  local
150 ins = MFC1 | TA(7) | FS(float_arg_count); in call_with_args()
152 ins = SDC1 | S(SLJIT_SP) | FT(float_arg_count) | IMM(*offsets_ptr); in call_with_args()
154 ins = MOV_S | FMT_D | FS(SLJIT_FR0) | FD(TMP_FREG1); in call_with_args()
160 ins = MFC1 | TA(4 + (*offsets_ptr >> 2)) | FS(float_arg_count); in call_with_args()
162 ins = SWC1 | S(SLJIT_SP) | FT(float_arg_count) | IMM(*offsets_ptr); in call_with_args()
164 ins = MOV_S | FMT_S | FS(SLJIT_FR0) | FD(TMP_FREG1); in call_with_args()
170 ins = SW | S(SLJIT_SP) | T(word_arg_count) | IMM(*offsets_ptr); in call_with_args()
172 ins = ADDU | S(word_arg_count) | TA(0) | DA(4 + (*offsets_ptr >> 2)); in call_with_args()
174 ins = ADDU | S(SLJIT_R0) | TA(0) | DA(4); in call_with_args()
180 if (ins != NOP) { in call_with_args()
183 prev_ins = ins; in call_with_args()
184 ins = NOP; in call_with_args()
200 sljit_ins ins = NOP; in sljit_emit_call() local
211 PTR_FAIL_IF(call_with_args(compiler, arg_types, &ins, &extra_space)); in sljit_emit_call()
213 PTR_FAIL_IF(emit_stack_frame_release(compiler, 0, &ins)); in sljit_emit_call()
217 if (ins == NOP && compiler->delay_slot != UNMOVABLE_INS) in sljit_emit_call()
231 PTR_FAIL_IF(push_inst(compiler, ins, UNMOVABLE_INS)); in sljit_emit_call()
256 sljit_ins ins; in sljit_emit_icall() local
276 FAIL_IF(emit_stack_frame_release(compiler, 0, &ins)); in sljit_emit_icall()
278 if (ins != NOP) in sljit_emit_icall()
279 FAIL_IF(push_inst(compiler, ins, MOVABLE_INS)); in sljit_emit_icall()
293 FAIL_IF(call_with_args(compiler, arg_types, &ins, &extra_space)); in sljit_emit_icall()
300 FAIL_IF(push_inst(compiler, ins, UNMOVABLE_INS)); in sljit_emit_icall()