mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-12-23 03:53:43 +01:00
(Logical change 1.231)
This commit is contained in:
parent
9427f8eae4
commit
de2a42042e
3 changed files with 170 additions and 0 deletions
|
@ -0,0 +1,109 @@
|
||||||
|
/* 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)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
#define UNW_LOCAL_ONLY
|
||||||
|
#include <libunwind.h>
|
||||||
|
#if !defined(UNW_REMOTE_ONLY)
|
||||||
|
#include "Gia64-test-readonly.c"
|
||||||
|
#endif
|
|
@ -0,0 +1,56 @@
|
||||||
|
/* 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. */
|
||||||
|
|
||||||
|
.text
|
||||||
|
|
||||||
|
.global test_func
|
||||||
|
.proc test_func
|
||||||
|
test_func:
|
||||||
|
.prologue
|
||||||
|
.regstk 1, 3, 0, 0
|
||||||
|
.save ar.pfs, loc0
|
||||||
|
alloc loc0 = ar.pfs, 1, 3, 0, 0
|
||||||
|
mov loc1 = rp
|
||||||
|
.save rp, r0
|
||||||
|
.spillreg r5, f0
|
||||||
|
.spillreg r6, f1
|
||||||
|
.spillreg f2, f0
|
||||||
|
.spillreg f3, f1
|
||||||
|
.save ar.lc, r0
|
||||||
|
.spillreg b2, f0
|
||||||
|
.spillreg b3, f1
|
||||||
|
.body
|
||||||
|
mov loc2 = gp
|
||||||
|
ld8 r2 = [in0], 8;;
|
||||||
|
ld8 r1 = [in0];;
|
||||||
|
mov b6 = r2
|
||||||
|
br.call.sptk.many rp = b6
|
||||||
|
|
||||||
|
mov gp = loc2
|
||||||
|
mov rp = loc1
|
||||||
|
mov ar.pfs = loc0
|
||||||
|
br.ret.sptk.many rp
|
||||||
|
|
||||||
|
.endp test_func
|
Loading…
Reference in a new issue