mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-25 00:27:39 +01:00
790be1e40d
"make check" passed. ====================================================== All 34 tests behaved as expected (2 expected failures) ====================================================== Zhi-Gang Liu @ Tilera
53 lines
1.8 KiB
C
53 lines
1.8 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"
|
|
|
|
PROTECTED int
|
|
unw_step (unw_cursor_t *cursor)
|
|
{
|
|
struct cursor *c = (struct cursor *) cursor;
|
|
int ret;
|
|
|
|
Debug (1, "(cursor=%p, ip=0x%016lx, sp=0x%016lx)\n",
|
|
c, c->dwarf.ip, c->dwarf.cfa);
|
|
|
|
/* Special handling the singal frame. */
|
|
if (unw_is_signal_frame (cursor))
|
|
return unw_handle_signal_frame (cursor);
|
|
|
|
/* Try DWARF-based unwinding... */
|
|
ret = dwarf_step (&c->dwarf);
|
|
|
|
if (unlikely (ret == -UNW_ESTOPUNWIND))
|
|
return ret;
|
|
|
|
/* Dwarf unwinding didn't work, stop. */
|
|
if (unlikely (ret < 0))
|
|
return 0;
|
|
|
|
return (c->dwarf.ip == 0) ? 0 : 1;
|
|
}
|