Lines Matching +full:5 +full:c
90 stepped = emulate_step(®s, TEST_LD(5, 3, 0)); in test_ld()
92 if (stepped == 1 && regs.gpr[5] == a) in test_ld()
108 stepped = emulate_step(®s, TEST_LWZ(5, 3, 0)); in test_lwz()
110 if (stepped == 1 && regs.gpr[5] == a) in test_lwz()
125 regs.gpr[5] = 0x8765; in test_lwzx()
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()
143 regs.gpr[5] = 0x5678; in test_std()
146 stepped = emulate_step(®s, TEST_STD(5, 3, 0)); in test_std()
147 if (stepped == 1 || regs.gpr[5] == a) in test_std()
168 regs.gpr[5] = 0x5678; in test_ldarx_stdcx()
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()
186 regs.gpr[5] = 0x9ABC; 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()
200 || (regs.gpr[5] != a && !(regs.ccr & cr0_eq)))) in test_ldarx_stdcx()
213 } c; in test_lfsx_stfsx() local
222 c.a = 123.45; in test_lfsx_stfsx()
223 cached_b = c.b; in test_lfsx_stfsx()
225 regs.gpr[3] = (unsigned long) &c.a; in test_lfsx_stfsx()
239 c.a = 678.91; in test_lfsx_stfsx()
244 if (stepped == 1 && c.b == cached_b) in test_lfsx_stfsx()
256 } c; in test_lfdx_stfdx() local
265 c.a = 123456.78; in test_lfdx_stfdx()
266 cached_b = c.b; in test_lfdx_stfdx()
268 regs.gpr[3] = (unsigned long) &c.a; in test_lfdx_stfdx()
282 c.a = 987654.32; in test_lfdx_stfdx()
287 if (stepped == 1 && c.b == cached_b) in test_lfdx_stfdx()
313 } c; in test_lvx_stvx() local
322 cached_b[0] = c.b[0] = 923745; in test_lvx_stvx()
323 cached_b[1] = c.b[1] = 2139478; in test_lvx_stvx()
324 cached_b[2] = c.b[2] = 9012; in test_lvx_stvx()
325 cached_b[3] = c.b[3] = 982134; in test_lvx_stvx()
327 regs.gpr[3] = (unsigned long) &c.a; in test_lvx_stvx()
341 c.b[0] = 4987513; in test_lvx_stvx()
342 c.b[1] = 84313948; in test_lvx_stvx()
343 c.b[2] = 71; in test_lvx_stvx()
344 c.b[3] = 498532; in test_lvx_stvx()
349 if (stepped == 1 && cached_b[0] == c.b[0] && cached_b[1] == c.b[1] && in test_lvx_stvx()
350 cached_b[2] == c.b[2] && cached_b[3] == c.b[3]) in test_lvx_stvx()
370 } c; in test_lxvd2x_stxvd2x() local
379 cached_b[0] = c.b[0] = 18233; in test_lxvd2x_stxvd2x()
380 cached_b[1] = c.b[1] = 34863571; in test_lxvd2x_stxvd2x()
381 cached_b[2] = c.b[2] = 834; in test_lxvd2x_stxvd2x()
382 cached_b[3] = c.b[3] = 6138911; in test_lxvd2x_stxvd2x()
384 regs.gpr[3] = (unsigned long) &c.a; in test_lxvd2x_stxvd2x()
402 c.b[0] = 21379463; in test_lxvd2x_stxvd2x()
403 c.b[1] = 87; in test_lxvd2x_stxvd2x()
404 c.b[2] = 374234; in test_lxvd2x_stxvd2x()
405 c.b[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()
411 cached_b[2] == c.b[2] && cached_b[3] == c.b[3] && in test_lxvd2x_stxvd2x()