Home | History | Annotate | Download | only in tests

Lines Matching refs:pr

141       printf ("sighandler: signal %d sp=%p nat=%08lx pr=%lx\n",
503 unw_word_t pr, expected;
514 if ((ret = unw_get_reg (c, UNW_IA64_PR, &pr)) < 0)
515 panic ("%s: failed to read register pr, error=%d\n", __FUNCTION__, ret);
517 pr &= ~DONTCARE;
521 printf (" pr = %016lx (expected %016lx)\n", pr, expected);
523 if (pr != expected)
524 panic ("%s: pr=%lx instead of %lx!\n", __FUNCTION__, pr, expected);
527 panic ("%s: failed to write register pr, error=%d\n", __FUNCTION__, ret);
529 if ((ret = unw_get_reg (c, UNW_IA64_PR, &pr)) < 0)
530 panic ("%s: failed to read register pr, error=%d\n", __FUNCTION__, ret);
532 if (pr != vals[0])
533 panic ("%s: secondary pr=%lx instead of %lx!\n",
534 __FUNCTION__, pr, vals[0]);