Lines Matching refs:stepped
84 int stepped = -1; in test_ld() local
90 stepped = emulate_step(®s, TEST_LD(5, 3, 0)); in test_ld()
92 if (stepped == 1 && regs.gpr[5] == a) in test_ld()
102 int stepped = -1; in test_lwz() local
108 stepped = emulate_step(®s, TEST_LWZ(5, 3, 0)); in test_lwz()
110 if (stepped == 1 && regs.gpr[5] == a) in test_lwz()
120 int stepped = -1; in test_lwzx() local
128 stepped = emulate_step(®s, TEST_LWZX(5, 3, 4)); in test_lwzx()
129 if (stepped == 1 && regs.gpr[5] == a[2]) in test_lwzx()
139 int stepped = -1; in test_std() local
146 stepped = emulate_step(®s, TEST_STD(5, 3, 0)); in test_std()
147 if (stepped == 1 || regs.gpr[5] == a) in test_std()
157 int stepped = -1; in test_ldarx_stdcx() local
171 stepped = emulate_step(®s, TEST_LDARX(5, 3, 4, 0)); in test_ldarx_stdcx()
178 if (stepped <= 0 || regs.gpr[5] != 0x1234) { in test_ldarx_stdcx()
189 stepped = emulate_step(®s, TEST_STDCX(5, 3, 4)); in test_ldarx_stdcx()
199 if (stepped == 1 && ((regs.gpr[5] == a && (regs.ccr & cr0_eq)) in test_ldarx_stdcx()
215 int stepped = -1; in test_lfsx_stfsx() local
229 stepped = emulate_step(®s, TEST_LFSX(10, 3, 4)); in test_lfsx_stfsx()
231 if (stepped == 1) in test_lfsx_stfsx()
242 stepped = emulate_step(®s, TEST_STFSX(10, 3, 4)); in test_lfsx_stfsx()
244 if (stepped == 1 && c.b == cached_b) in test_lfsx_stfsx()
258 int stepped = -1; in test_lfdx_stfdx() local
272 stepped = emulate_step(®s, TEST_LFDX(10, 3, 4)); in test_lfdx_stfdx()
274 if (stepped == 1) in test_lfdx_stfdx()
285 stepped = emulate_step(®s, TEST_STFDX(10, 3, 4)); in test_lfdx_stfdx()
287 if (stepped == 1 && c.b == cached_b) in test_lfdx_stfdx()
315 int stepped = -1; in test_lvx_stvx() local
331 stepped = emulate_step(®s, TEST_LVX(10, 3, 4)); in test_lvx_stvx()
333 if (stepped == 1) in test_lvx_stvx()
347 stepped = emulate_step(®s, TEST_STVX(10, 3, 4)); in test_lvx_stvx()
349 if (stepped == 1 && cached_b[0] == c.b[0] && cached_b[1] == c.b[1] && in test_lvx_stvx()
372 int stepped = -1; in test_lxvd2x_stxvd2x() local
388 stepped = emulate_step(®s, TEST_LXVD2X(39, 3, 4)); in test_lxvd2x_stxvd2x()
390 if (stepped == 1 && cpu_has_feature(CPU_FTR_VSX)) { in test_lxvd2x_stxvd2x()
408 stepped = emulate_step(®s, TEST_STXVD2X(39, 3, 4)); in test_lxvd2x_stxvd2x()
410 if (stepped == 1 && cached_b[0] == c.b[0] && cached_b[1] == c.b[1] && in test_lxvd2x_stxvd2x()