1/* libunwind - a platform-independent unwind library
2   Copyright (C) 2001-2002, 2005 Hewlett-Packard Co
3	Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
4
5This file is part of libunwind.
6
7Permission is hereby granted, free of charge, to any person obtaining
8a copy of this software and associated documentation files (the
9"Software"), to deal in the Software without restriction, including
10without limitation the rights to use, copy, modify, merge, publish,
11distribute, sublicense, and/or sell copies of the Software, and to
12permit persons to whom the Software is furnished to do so, subject to
13the following conditions:
14
15The above copyright notice and this permission notice shall be
16included in all copies or substantial portions of the Software.
17
18THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  */
25
26#include "libunwind_i.h"
27
28HIDDEN void
29unwi_put_dynamic_unwind_info (unw_addr_space_t as, unw_proc_info_t *pi,
30			      void *arg)
31{
32  switch (pi->format)
33    {
34    case UNW_INFO_FORMAT_DYNAMIC:
35#ifndef UNW_LOCAL_ONLY
36# ifdef UNW_REMOTE_ONLY
37      unwi_dyn_remote_put_unwind_info (as, pi, arg);
38# else
39      if (as != unw_local_addr_space)
40	unwi_dyn_remote_put_unwind_info (as, pi, arg);
41# endif
42#endif
43      break;
44
45    case UNW_INFO_FORMAT_TABLE:
46    case UNW_INFO_FORMAT_REMOTE_TABLE:
47#ifdef tdep_put_unwind_info
48      tdep_put_unwind_info (as, pi, arg);
49      break;
50#endif
51      /* fall through */
52    default:
53      break;
54    }
55}
56