Lines Matching refs:stepped
93 int stepped = -1; in test_ld() local
99 stepped = emulate_step(®s, ppc_inst(PPC_RAW_LD(5, 3, 0))); in test_ld()
101 if (stepped == 1 && regs.gpr[5] == a) in test_ld()
111 int stepped = -1; in test_pld() local
122 stepped = emulate_step(®s, TEST_PLD(5, 3, 0, 0)); in test_pld()
124 if (stepped == 1 && regs.gpr[5] == a) in test_pld()
134 int stepped = -1; in test_lwz() local
140 stepped = emulate_step(®s, ppc_inst(PPC_RAW_LWZ(5, 3, 0))); in test_lwz()
142 if (stepped == 1 && regs.gpr[5] == a) in test_lwz()
152 int stepped = -1; in test_plwz() local
164 stepped = emulate_step(®s, TEST_PLWZ(5, 3, 0, 0)); in test_plwz()
166 if (stepped == 1 && regs.gpr[5] == a) in test_plwz()
176 int stepped = -1; in test_lwzx() local
184 stepped = emulate_step(®s, ppc_inst(PPC_RAW_LWZX(5, 3, 4))); in test_lwzx()
185 if (stepped == 1 && regs.gpr[5] == a[2]) in test_lwzx()
195 int stepped = -1; in test_std() local
202 stepped = emulate_step(®s, ppc_inst(PPC_RAW_STD(5, 3, 0))); in test_std()
203 if (stepped == 1 && regs.gpr[5] == a) in test_std()
213 int stepped = -1; in test_pstd() local
225 stepped = emulate_step(®s, TEST_PSTD(5, 3, 0, 0)); in test_pstd()
226 if (stepped == 1 || regs.gpr[5] == a) in test_pstd()
236 int stepped = -1; in test_ldarx_stdcx() local
250 stepped = emulate_step(®s, ppc_inst(PPC_RAW_LDARX(5, 3, 4, 0))); in test_ldarx_stdcx()
257 if (stepped <= 0 || regs.gpr[5] != 0x1234) { in test_ldarx_stdcx()
268 stepped = emulate_step(®s, ppc_inst(PPC_RAW_STDCX(5, 3, 4))); in test_ldarx_stdcx()
278 if (stepped == 1 && ((regs.gpr[5] == a && (regs.ccr & cr0_eq)) in test_ldarx_stdcx()
294 int stepped = -1; in test_lfsx_stfsx() local
308 stepped = emulate_step(®s, ppc_inst(PPC_RAW_LFSX(10, 3, 4))); in test_lfsx_stfsx()
310 if (stepped == 1) in test_lfsx_stfsx()
321 stepped = emulate_step(®s, ppc_inst(PPC_RAW_STFSX(10, 3, 4))); in test_lfsx_stfsx()
323 if (stepped == 1 && c.b == cached_b) in test_lfsx_stfsx()
337 int stepped = -1; in test_plfs_pstfs() local
355 stepped = emulate_step(®s, TEST_PLFS(10, 3, 0, 0)); in test_plfs_pstfs()
357 if (stepped == 1) in test_plfs_pstfs()
368 stepped = emulate_step(®s, TEST_PSTFS(10, 3, 0, 0)); in test_plfs_pstfs()
370 if (stepped == 1 && c.b == cached_b) in test_plfs_pstfs()
384 int stepped = -1; in test_lfdx_stfdx() local
398 stepped = emulate_step(®s, ppc_inst(PPC_RAW_LFDX(10, 3, 4))); in test_lfdx_stfdx()
400 if (stepped == 1) in test_lfdx_stfdx()
411 stepped = emulate_step(®s, ppc_inst(PPC_RAW_STFDX(10, 3, 4))); in test_lfdx_stfdx()
413 if (stepped == 1 && c.b == cached_b) in test_lfdx_stfdx()
427 int stepped = -1; in test_plfd_pstfd() local
445 stepped = emulate_step(®s, TEST_PLFD(10, 3, 0, 0)); in test_plfd_pstfd()
447 if (stepped == 1) in test_plfd_pstfd()
458 stepped = emulate_step(®s, TEST_PSTFD(10, 3, 0, 0)); in test_plfd_pstfd()
460 if (stepped == 1 && c.b == cached_b) in test_plfd_pstfd()
500 int stepped = -1; in test_lvx_stvx() local
516 stepped = emulate_step(®s, ppc_inst(PPC_RAW_LVX(10, 3, 4))); in test_lvx_stvx()
518 if (stepped == 1) in test_lvx_stvx()
532 stepped = emulate_step(®s, ppc_inst(PPC_RAW_STVX(10, 3, 4))); in test_lvx_stvx()
534 if (stepped == 1 && cached_b[0] == c.b[0] && cached_b[1] == c.b[1] && in test_lvx_stvx()
557 int stepped = -1; in test_lxvd2x_stxvd2x() local
573 stepped = emulate_step(®s, ppc_inst(PPC_RAW_LXVD2X(39, R3, R4))); in test_lxvd2x_stxvd2x()
575 if (stepped == 1 && cpu_has_feature(CPU_FTR_VSX)) { in test_lxvd2x_stxvd2x()
593 stepped = emulate_step(®s, ppc_inst(PPC_RAW_STXVD2X(39, R3, R4))); in test_lxvd2x_stxvd2x()
595 if (stepped == 1 && cached_b[0] == c.b[0] && cached_b[1] == c.b[1] && in test_lxvd2x_stxvd2x()
623 int stepped = -1; in test_lxvp_stxvp() local
651 stepped = emulate_step(®s, ppc_inst(PPC_RAW_LXVP(34, 4, 0))); in test_lxvp_stxvp()
653 if (stepped == 1 && cpu_has_feature(CPU_FTR_VSX)) { in test_lxvp_stxvp()
678 stepped = emulate_step(®s, ppc_inst(PPC_RAW_STXVP(34, 4, 0))); in test_lxvp_stxvp()
680 if (stepped == 1 && cached_b[0] == c[0].b[0] && cached_b[1] == c[0].b[1] && in test_lxvp_stxvp()
710 int stepped = -1; in test_lxvpx_stxvpx() local
739 stepped = emulate_step(®s, ppc_inst(PPC_RAW_LXVPX(34, 3, 4))); in test_lxvpx_stxvpx()
741 if (stepped == 1 && cpu_has_feature(CPU_FTR_VSX)) { in test_lxvpx_stxvpx()
766 stepped = emulate_step(®s, ppc_inst(PPC_RAW_STXVPX(34, 3, 4))); in test_lxvpx_stxvpx()
768 if (stepped == 1 && cached_b[0] == c[0].b[0] && cached_b[1] == c[0].b[1] && in test_lxvpx_stxvpx()
799 int stepped = -1; in test_plxvp_pstxvp() local
828 stepped = emulate_step(®s, instr); in test_plxvp_pstxvp()
829 if (stepped == 1 && cpu_has_feature(CPU_FTR_VSX)) { in test_plxvp_pstxvp()
856 stepped = emulate_step(®s, instr); in test_plxvp_pstxvp()
858 if (stepped == 1 && cached_b[0] == c[0].b[0] && cached_b[1] == c[0].b[1] && in test_plxvp_pstxvp()