Lines Matching refs:stepped

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