blob: db69bd31f63c55eea0c43da640ea57d5f00ebeda [file] [log] [blame]
mostang.com!davidm2eec1262003-09-19 06:56:39 +00001/* libunwind - a platform-independent unwind library
2 Copyright (C) 2003 Hewlett-Packard Co
3 Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
4
5This file is part of libunwind.
6
7Copyright (c) 2003 Hewlett-Packard Co.
8
9Permission is hereby granted, free of charge, to any person obtaining
10a copy of this software and associated documentation files (the
11"Software"), to deal in the Software without restriction, including
12without limitation the rights to use, copy, modify, merge, publish,
13distribute, sublicense, and/or sell copies of the Software, and to
14permit persons to whom the Software is furnished to do so, subject to
15the following conditions:
16
17The above copyright notice and this permission notice shall be
18included in all copies or substantial portions of the Software.
19
20THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
27
mostang.com!davidm9339de42003-09-18 06:09:22 +000028/* This test program checks whether proc_info lookup failures are
29 cached. They must NOT be cached because it could otherwise turn
30 temporary failures into permanent ones. Furthermore, we allow apps
31 to return -UNW_ESTOPUNWIND to terminate unwinding (though this
32 feature is deprecated and dynamic unwind info should be used
33 instead). */
34
35#include <stdio.h>
36#include <string.h>
37
38#include <libunwind.h>
39
40int errors;
41
42#define panic(args...) \
43 { ++errors; fprintf (stderr, args); return -1; }
44
45static int
46find_proc_info (unw_addr_space_t as, unw_word_t ip, unw_proc_info_t *pip,
47 int need_unwind_info, void *arg)
48{
49 return -UNW_ESTOPUNWIND;
50}
51
52static int
53access_mem (unw_addr_space_t as, unw_word_t addr, unw_word_t *valp,
54 int write, void *arg)
55{
56 if (!write)
57 *valp = 0;
58 return 0;
59}
60
61static int
62access_reg (unw_addr_space_t as, unw_regnum_t regnum, unw_word_t *valp,
63 int write, void *arg)
64{
65 if (!write)
66 *valp = 32;
67 return 0;
68}
69
70static int
71access_fpreg (unw_addr_space_t as, unw_regnum_t regnum, unw_fpreg_t *valp,
72 int write, void *arg)
73{
74 if (!write)
75 memset (valp, 0, sizeof (valp));
76 return 0;
77}
78
79static int
80get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dilap, void *arg)
81{
82 return -UNW_ENOINFO;
83}
84
hp.com!davidm3ff119a2004-04-23 00:12:51 +000085static void
86put_unwind_info (unw_addr_space_t as, unw_proc_info_t *pi, void *arg)
mostang.com!davidm9339de42003-09-18 06:09:22 +000087{
hp.com!davidm3ff119a2004-04-23 00:12:51 +000088 ++errors;
89 fprintf (stderr, "%s() got called!\n", __FUNCTION__);
90}
91
92static int
93resume (unw_addr_space_t as, unw_cursor_t *reg, void *arg)
94{
95 panic ("%s() got called!\n", __FUNCTION__);
96}
97
98static int
99get_proc_name (unw_addr_space_t as, unw_word_t ip, char *buf, size_t buf_len,
100 unw_word_t *offp, void *arg)
101{
102 panic ("%s() got called!\n", __FUNCTION__);
mostang.com!davidm9339de42003-09-18 06:09:22 +0000103}
104
105int
106main (int argc, char **argv)
107{
108 unw_accessors_t acc;
109 unw_addr_space_t as;
110 int ret, verbose = 0;
111 unw_cursor_t c;
112
113 if (argc > 1 && strcmp (argv[0], "-v") == 0)
114 verbose = 1;
115
116 memset (&acc, 0, sizeof (acc));
117 acc.find_proc_info = find_proc_info;
hp.com!davidm3ff119a2004-04-23 00:12:51 +0000118 acc.put_unwind_info = put_unwind_info;
mostang.com!davidm9339de42003-09-18 06:09:22 +0000119 acc.get_dyn_info_list_addr = get_dyn_info_list_addr;
120 acc.access_mem = access_mem;
121 acc.access_reg = access_reg;
122 acc.access_fpreg = access_fpreg;
hp.com!davidm3ff119a2004-04-23 00:12:51 +0000123 acc.resume = resume;
124 acc.get_proc_name = get_proc_name;
mostang.com!davidm9339de42003-09-18 06:09:22 +0000125
126 as = unw_create_addr_space (&acc, 0);
127 if (!as)
128 panic ("unw_create_addr_space() failed\n");
129
130 unw_set_caching_policy (as, UNW_CACHE_GLOBAL);
131
132 ret = unw_init_remote (&c, as, NULL);
133 if (ret < 0)
134 panic ("unw_init_remote() returned %d instead of 0\n", ret);
135
136 ret = unw_step (&c);
137 if (ret != -UNW_ESTOPUNWIND)
138 panic ("First call to unw_step() returned %d instead of %d\n",
139 ret, -UNW_ESTOPUNWIND);
140
141 ret = unw_step (&c);
142 if (ret != -UNW_ESTOPUNWIND)
143 panic ("Second call to unw_step() returned %d instead of %d\n",
144 ret, -UNW_ESTOPUNWIND);
145
146 if (verbose)
147 printf ("SUCCESS\n");
148 return 0;
149}