| /* libunwind - a platform-independent unwind library |
| Copyright (C) 2004 Hewlett-Packard Co |
| Contributed by David Mosberger-Tang <davidm@hpl.hp.com> |
| |
| This file is part of libunwind. |
| |
| Permission is hereby granted, free of charge, to any person obtaining |
| a copy of this software and associated documentation files (the |
| "Software"), to deal in the Software without restriction, including |
| without limitation the rights to use, copy, modify, merge, publish, |
| distribute, sublicense, and/or sell copies of the Software, and to |
| permit persons to whom the Software is furnished to do so, subject to |
| the following conditions: |
| |
| The above copyright notice and this permission notice shall be |
| included in all copies or substantial portions of the Software. |
| |
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ |
| |
| /* This file verifies that read-only registers cannot be written to. */ |
| |
| #include <errno.h> |
| #include <stdio.h> |
| #include <stdlib.h> |
| #include <string.h> |
| |
| #include <libunwind.h> |
| |
| #define panic(args...) \ |
| do { printf (args); ++nerrors; } while (0) |
| |
| static int verbose; |
| static int nerrors; |
| |
| extern void test_func (void (*) (void)); |
| |
| void |
| checker (void) |
| { |
| unw_fpreg_t fpval; |
| unw_context_t uc; |
| unw_cursor_t c; |
| int ret; |
| |
| fpval.raw.bits[0] = 100; |
| fpval.raw.bits[1] = 101; |
| |
| unw_getcontext (&uc); |
| |
| if ((ret = unw_init_local (&c, &uc)) < 0) |
| panic ("%s: unw_init_local (ret=%d)\n", __FUNCTION__, ret); |
| |
| if ((ret = unw_step (&c)) < 0) |
| panic ("%s: unw_step (ret=%d)\n", __FUNCTION__, ret); |
| |
| if ((ret = unw_step (&c)) < 0) |
| panic ("%s: unw_step (ret=%d)\n", __FUNCTION__, ret); |
| |
| if ((ret = unw_set_reg (&c, UNW_IA64_IP, 99)) != -UNW_EREADONLYREG) |
| panic ("%s: unw_set_reg (ip) returned %d instead of %d\n", |
| __FUNCTION__, ret, -UNW_EREADONLYREG); |
| if ((ret = unw_set_reg (&c, UNW_IA64_GR + 5, 99)) != -UNW_EREADONLYREG) |
| panic ("%s: unw_set_reg (r5) returned %d instead of %d\n", |
| __FUNCTION__, ret, -UNW_EREADONLYREG); |
| if ((ret = unw_set_reg (&c, UNW_IA64_GR + 6, 99)) != -UNW_EREADONLYREG) |
| panic ("%s: unw_set_reg (r6) returned %d instead of %d\n", |
| __FUNCTION__, ret, -UNW_EREADONLYREG); |
| if ((ret = unw_set_reg (&c, UNW_IA64_AR_LC, 99)) != -UNW_EREADONLYREG) |
| panic ("%s: unw_set_reg (ar.lc) returned %d instead of %d\n", |
| __FUNCTION__, ret, -UNW_EREADONLYREG); |
| if ((ret = unw_set_reg (&c, UNW_IA64_BR + 2, 99)) != -UNW_EREADONLYREG) |
| panic ("%s: unw_set_reg (b2) returned %d instead of %d\n", |
| __FUNCTION__, ret, -UNW_EREADONLYREG); |
| if ((ret = unw_set_reg (&c, UNW_IA64_BR + 3, 99)) != -UNW_EREADONLYREG) |
| panic ("%s: unw_set_reg (b3) returned %d instead of %d\n", |
| __FUNCTION__, ret, -UNW_EREADONLYREG); |
| if ((ret = unw_set_fpreg (&c, UNW_IA64_FR + 2, fpval)) != -UNW_EREADONLYREG) |
| panic ("%s: unw_set_fpreg (f2) returned %d instead of %d\n", |
| __FUNCTION__, ret, -UNW_EREADONLYREG); |
| if ((ret = unw_set_fpreg (&c, UNW_IA64_FR + 3, fpval)) != -UNW_EREADONLYREG) |
| panic ("%s: unw_set_fpreg (f3) returned %d instead of %d\n", |
| __FUNCTION__, ret, -UNW_EREADONLYREG); |
| } |
| |
| int |
| main (int argc, char **argv) |
| { |
| if (argc > 1) |
| verbose = 1; |
| |
| test_func (checker); |
| |
| if (nerrors > 0) |
| { |
| fprintf (stderr, "FAILURE: detected %d errors\n", nerrors); |
| exit (-1); |
| } |
| if (verbose) |
| printf ("SUCCESS.\n"); |
| return 0; |
| } |