mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-15 20:58:13 +01:00
95 lines
2.6 KiB
C
95 lines
2.6 KiB
C
|
/* libunwind - a platform-independent unwind library
|
||
|
Copyright (C) 2008 CodeSourcery
|
||
|
Copyright (C) 2014 Tilera Corp.
|
||
|
|
||
|
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. */
|
||
|
|
||
|
|
||
|
#include "unwind_i.h"
|
||
|
#include "offsets.h"
|
||
|
#include <ucontext.h>
|
||
|
|
||
|
#ifndef UNW_REMOTE_ONLY
|
||
|
|
||
|
HIDDEN inline int
|
||
|
tilegx_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg)
|
||
|
{
|
||
|
int i;
|
||
|
struct cursor *c = (struct cursor *) cursor;
|
||
|
ucontext_t *uc = c->dwarf.as_arg;
|
||
|
|
||
|
Debug (1, "(cursor=%p\n", c);
|
||
|
|
||
|
return setcontext(uc);
|
||
|
}
|
||
|
|
||
|
#endif /* !UNW_REMOTE_ONLY */
|
||
|
|
||
|
static inline void
|
||
|
establish_machine_state (struct cursor *c)
|
||
|
{
|
||
|
unw_addr_space_t as = c->dwarf.as;
|
||
|
void *arg = c->dwarf.as_arg;
|
||
|
unw_fpreg_t fpval;
|
||
|
unw_word_t val;
|
||
|
int reg;
|
||
|
|
||
|
Debug (8, "copying out cursor state\n");
|
||
|
|
||
|
for (reg = 0; reg <= UNW_REG_LAST; ++reg)
|
||
|
{
|
||
|
Debug (16, "copying %s %d\n", unw_regname (reg), reg);
|
||
|
|
||
|
if (unw_is_fpreg (reg))
|
||
|
{
|
||
|
Debug (1, "no fp!");
|
||
|
abort ();
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
if (tdep_access_reg (c, reg, &val, 0) >= 0)
|
||
|
as->acc.access_reg (as, reg, &val, 1, arg);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
PROTECTED int
|
||
|
unw_resume (unw_cursor_t *cursor)
|
||
|
{
|
||
|
struct cursor *c = (struct cursor *) cursor;
|
||
|
|
||
|
Debug (1, "(cursor=%p) ip=0x%lx\n", c, c->dwarf.ip);
|
||
|
|
||
|
if (!c->dwarf.ip)
|
||
|
{
|
||
|
/* This can happen easily when the frame-chain gets truncated
|
||
|
due to bad or missing unwind-info. */
|
||
|
Debug (1, "refusing to resume execution at address 0\n");
|
||
|
return -UNW_EINVAL;
|
||
|
}
|
||
|
|
||
|
establish_machine_state (c);
|
||
|
|
||
|
return (*c->dwarf.as->acc.resume) (c->dwarf.as, (unw_cursor_t *) c,
|
||
|
c->dwarf.as_arg);
|
||
|
}
|