Lines Matching refs:stepped
100 int stepped = -1; in test_ld() local
106 stepped = emulate_step(®s, TEST_LD(5, 3, 0)); in test_ld()
108 if (stepped == 1 && regs.gpr[5] == a) in test_ld()
118 int stepped = -1; in test_lwz() local
124 stepped = emulate_step(®s, TEST_LWZ(5, 3, 0)); in test_lwz()
126 if (stepped == 1 && regs.gpr[5] == a) in test_lwz()
136 int stepped = -1; in test_lwzx() local
144 stepped = emulate_step(®s, TEST_LWZX(5, 3, 4)); in test_lwzx()
145 if (stepped == 1 && regs.gpr[5] == a[2]) in test_lwzx()
155 int stepped = -1; in test_std() local
162 stepped = emulate_step(®s, TEST_STD(5, 3, 0)); in test_std()
163 if (stepped == 1 || regs.gpr[5] == a) in test_std()
173 int stepped = -1; in test_ldarx_stdcx() local
187 stepped = emulate_step(®s, TEST_LDARX(5, 3, 4, 0)); in test_ldarx_stdcx()
194 if (stepped <= 0 || regs.gpr[5] != 0x1234) { in test_ldarx_stdcx()
205 stepped = emulate_step(®s, TEST_STDCX(5, 3, 4)); in test_ldarx_stdcx()
215 if (stepped == 1 && ((regs.gpr[5] == a && (regs.ccr & cr0_eq)) in test_ldarx_stdcx()
231 int stepped = -1; in test_lfsx_stfsx() local
245 stepped = emulate_step(®s, TEST_LFSX(10, 3, 4)); in test_lfsx_stfsx()
247 if (stepped == 1) in test_lfsx_stfsx()
258 stepped = emulate_step(®s, TEST_STFSX(10, 3, 4)); in test_lfsx_stfsx()
260 if (stepped == 1 && c.b == cached_b) in test_lfsx_stfsx()
274 int stepped = -1; in test_lfdx_stfdx() local
288 stepped = emulate_step(®s, TEST_LFDX(10, 3, 4)); in test_lfdx_stfdx()
290 if (stepped == 1) in test_lfdx_stfdx()
301 stepped = emulate_step(®s, TEST_STFDX(10, 3, 4)); in test_lfdx_stfdx()
303 if (stepped == 1 && c.b == cached_b) in test_lfdx_stfdx()
331 int stepped = -1; in test_lvx_stvx() local
347 stepped = emulate_step(®s, TEST_LVX(10, 3, 4)); in test_lvx_stvx()
349 if (stepped == 1) in test_lvx_stvx()
363 stepped = emulate_step(®s, TEST_STVX(10, 3, 4)); in test_lvx_stvx()
365 if (stepped == 1 && cached_b[0] == c.b[0] && cached_b[1] == c.b[1] && in test_lvx_stvx()
388 int stepped = -1; in test_lxvd2x_stxvd2x() local
404 stepped = emulate_step(®s, TEST_LXVD2X(39, 3, 4)); in test_lxvd2x_stxvd2x()
406 if (stepped == 1 && cpu_has_feature(CPU_FTR_VSX)) { in test_lxvd2x_stxvd2x()
424 stepped = emulate_step(®s, TEST_STXVD2X(39, 3, 4)); in test_lxvd2x_stxvd2x()
426 if (stepped == 1 && cached_b[0] == c.b[0] && cached_b[1] == c.b[1] && in test_lxvd2x_stxvd2x()