2c9627f4464f591e27d9aa166a9f390aea546c0c
[platform/upstream/libunwind.git] / src / mips / Gis_signal_frame.c
1 /* libunwind - a platform-independent unwind library
2    Copyright (C) 2015 Imagination Technologies Limited
3    Copyright (C) 2008 CodeSourcery
4
5 This file is part of libunwind.
6
7 Permission is hereby granted, free of charge, to any person obtaining
8 a copy of this software and associated documentation files (the
9 "Software"), to deal in the Software without restriction, including
10 without limitation the rights to use, copy, modify, merge, publish,
11 distribute, sublicense, and/or sell copies of the Software, and to
12 permit persons to whom the Software is furnished to do so, subject to
13 the following conditions:
14
15 The above copyright notice and this permission notice shall be
16 included in all copies or substantial portions of the Software.
17
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  */
25
26 #include "unwind_i.h"
27 #include <stdio.h>
28
29 PROTECTED int
30 unw_is_signal_frame (unw_cursor_t *cursor)
31 {
32   struct cursor *c = (struct cursor *) cursor;
33   unw_word_t w0, w1, ip;
34   unw_addr_space_t as;
35   unw_accessors_t *a;
36   void *arg;
37   int ret;
38
39   as = c->dwarf.as;
40   a = unw_get_accessors (as);
41   arg = c->dwarf.as_arg;
42
43   ip = c->dwarf.ip;
44
45   /* syscall */
46   if ((ret = (*a->access_mem) (as, ip + 4, &w1, 0, arg)) < 0)
47     return 0;
48   if ((w1 & 0xffffffff) != 0x0c)
49     return 0;
50
51   /* li v0, 0x1061 (rt) or li v0, 0x1017 */
52   if ((ret = (*a->access_mem) (as, ip, &w0, 0, arg)) < 0)
53     return 0;
54
55   switch (c->dwarf.as->abi)
56     {
57     case UNW_MIPS_ABI_O32:
58       switch (w0 & 0xffffffff)
59         {
60         case 0x24021061:
61           return 1;
62         case 0x24021017:
63           return 2;
64         default:
65           return 0;
66         }
67     case UNW_MIPS_ABI_N64:
68       switch (w0 & 0xffffffff)
69         {
70         case 0x2402145b:
71           return 1;
72         default:
73           return 0;
74         }
75     default:
76       return 0;
77     }
78 }