Lines Matching refs:stepped

94 	int stepped = -1;  in test_ld()  local
100 stepped = emulate_step(&regs, ppc_inst(PPC_RAW_LD(5, 3, 0))); in test_ld()
102 if (stepped == 1 && regs.gpr[5] == a) in test_ld()
112 int stepped = -1; in test_pld() local
123 stepped = emulate_step(&regs, TEST_PLD(5, 3, 0, 0)); in test_pld()
125 if (stepped == 1 && regs.gpr[5] == a) in test_pld()
135 int stepped = -1; in test_lwz() local
141 stepped = emulate_step(&regs, ppc_inst(PPC_RAW_LWZ(5, 3, 0))); in test_lwz()
143 if (stepped == 1 && regs.gpr[5] == a) in test_lwz()
153 int stepped = -1; in test_plwz() local
165 stepped = emulate_step(&regs, TEST_PLWZ(5, 3, 0, 0)); in test_plwz()
167 if (stepped == 1 && regs.gpr[5] == a) in test_plwz()
177 int stepped = -1; in test_lwzx() local
185 stepped = emulate_step(&regs, ppc_inst(PPC_RAW_LWZX(5, 3, 4))); in test_lwzx()
186 if (stepped == 1 && regs.gpr[5] == a[2]) in test_lwzx()
196 int stepped = -1; in test_std() local
203 stepped = emulate_step(&regs, ppc_inst(PPC_RAW_STD(5, 3, 0))); in test_std()
204 if (stepped == 1 && regs.gpr[5] == a) in test_std()
214 int stepped = -1; in test_pstd() local
226 stepped = emulate_step(&regs, TEST_PSTD(5, 3, 0, 0)); in test_pstd()
227 if (stepped == 1 || regs.gpr[5] == a) in test_pstd()
237 int stepped = -1; in test_ldarx_stdcx() local
251 stepped = emulate_step(&regs, ppc_inst(PPC_RAW_LDARX(5, 3, 4, 0))); in test_ldarx_stdcx()
258 if (stepped <= 0 || regs.gpr[5] != 0x1234) { in test_ldarx_stdcx()
269 stepped = emulate_step(&regs, ppc_inst(PPC_RAW_STDCX(5, 3, 4))); in test_ldarx_stdcx()
279 if (stepped == 1 && ((regs.gpr[5] == a && (regs.ccr & cr0_eq)) in test_ldarx_stdcx()
295 int stepped = -1; in test_lfsx_stfsx() local
309 stepped = emulate_step(&regs, ppc_inst(PPC_RAW_LFSX(10, 3, 4))); in test_lfsx_stfsx()
311 if (stepped == 1) in test_lfsx_stfsx()
322 stepped = emulate_step(&regs, ppc_inst(PPC_RAW_STFSX(10, 3, 4))); in test_lfsx_stfsx()
324 if (stepped == 1 && c.b == cached_b) in test_lfsx_stfsx()
338 int stepped = -1; in test_plfs_pstfs() local
356 stepped = emulate_step(&regs, TEST_PLFS(10, 3, 0, 0)); in test_plfs_pstfs()
358 if (stepped == 1) in test_plfs_pstfs()
369 stepped = emulate_step(&regs, TEST_PSTFS(10, 3, 0, 0)); in test_plfs_pstfs()
371 if (stepped == 1 && c.b == cached_b) in test_plfs_pstfs()
385 int stepped = -1; in test_lfdx_stfdx() local
399 stepped = emulate_step(&regs, ppc_inst(PPC_RAW_LFDX(10, 3, 4))); in test_lfdx_stfdx()
401 if (stepped == 1) in test_lfdx_stfdx()
412 stepped = emulate_step(&regs, ppc_inst(PPC_RAW_STFDX(10, 3, 4))); in test_lfdx_stfdx()
414 if (stepped == 1 && c.b == cached_b) in test_lfdx_stfdx()
428 int stepped = -1; in test_plfd_pstfd() local
446 stepped = emulate_step(&regs, TEST_PLFD(10, 3, 0, 0)); in test_plfd_pstfd()
448 if (stepped == 1) in test_plfd_pstfd()
459 stepped = emulate_step(&regs, TEST_PSTFD(10, 3, 0, 0)); in test_plfd_pstfd()
461 if (stepped == 1 && c.b == cached_b) in test_plfd_pstfd()
501 int stepped = -1; in test_lvx_stvx() local
517 stepped = emulate_step(&regs, ppc_inst(PPC_RAW_LVX(10, 3, 4))); in test_lvx_stvx()
519 if (stepped == 1) in test_lvx_stvx()
533 stepped = emulate_step(&regs, ppc_inst(PPC_RAW_STVX(10, 3, 4))); in test_lvx_stvx()
535 if (stepped == 1 && cached_b[0] == c.b[0] && cached_b[1] == c.b[1] && in test_lvx_stvx()
558 int stepped = -1; in test_lxvd2x_stxvd2x() local
574 stepped = emulate_step(&regs, ppc_inst(PPC_RAW_LXVD2X(39, R3, R4))); in test_lxvd2x_stxvd2x()
576 if (stepped == 1 && cpu_has_feature(CPU_FTR_VSX)) { in test_lxvd2x_stxvd2x()
594 stepped = emulate_step(&regs, ppc_inst(PPC_RAW_STXVD2X(39, R3, R4))); in test_lxvd2x_stxvd2x()
596 if (stepped == 1 && cached_b[0] == c.b[0] && cached_b[1] == c.b[1] && in test_lxvd2x_stxvd2x()