Lines Matching refs:ins
219 sljit_ins ins = NOP; in call_with_args() local
308 ins = MFC1 | f64_lo | FS(float_arg_count); in call_with_args()
310 ins = SDC1 | S(SLJIT_SP) | FT(float_arg_count) | IMM(*offsets_ptr); in call_with_args()
312 ins = MOV_fmt(FMT_D) | FS(SLJIT_FR0) | FD(TMP_FREG1); in call_with_args()
318 ins = MFC1 | TA(4 + (*offsets_ptr >> 2)) | FS(float_arg_count); in call_with_args()
320 ins = SWC1 | S(SLJIT_SP) | FT(float_arg_count) | IMM(*offsets_ptr); in call_with_args()
322 ins = MOV_fmt(FMT_S) | FS(SLJIT_FR0) | FD(TMP_FREG1); in call_with_args()
328 ins = SW | S(SLJIT_SP) | T(word_arg_count) | IMM(*offsets_ptr); in call_with_args()
330 ins = ADDU | S(word_arg_count) | TA(0) | DA(4 + (*offsets_ptr >> 2)); in call_with_args()
332 ins = ADDU | S(SLJIT_R0) | TA(0) | DA(4); in call_with_args()
338 if (ins != NOP) { in call_with_args()
341 prev_ins = ins; in call_with_args()
342 ins = NOP; in call_with_args()
358 sljit_ins ins = NOP; in sljit_emit_call() local
369 PTR_FAIL_IF(call_with_args(compiler, arg_types, &ins, &extra_space)); in sljit_emit_call()
371 PTR_FAIL_IF(emit_stack_frame_release(compiler, 0, &ins)); in sljit_emit_call()
375 if (ins == NOP && compiler->delay_slot != UNMOVABLE_INS) in sljit_emit_call()
389 PTR_FAIL_IF(push_inst(compiler, ins, UNMOVABLE_INS)); in sljit_emit_call()
414 sljit_ins ins; in sljit_emit_icall() local
434 FAIL_IF(emit_stack_frame_release(compiler, 0, &ins)); in sljit_emit_icall()
436 if (ins != NOP) in sljit_emit_icall()
437 FAIL_IF(push_inst(compiler, ins, MOVABLE_INS)); in sljit_emit_icall()
451 FAIL_IF(call_with_args(compiler, arg_types, &ins, &extra_space)); in sljit_emit_icall()
458 FAIL_IF(push_inst(compiler, ins, UNMOVABLE_INS)); in sljit_emit_icall()