Fix some minor issues found via static analysis
[platform/upstream/libunwind.git] / src / mi / Gset_cache_size.c
1 /* libunwind - a platform-independent unwind library
2    Copyright (C) 2014
3         Contributed by Milian Wolff <address@hidden>
4                    and Dave Watson <dade.watson@gmail.com>
5
6 This file is part of libunwind.
7
8 Permission is hereby granted, free of charge, to any person obtaining
9 a copy of this software and associated documentation files (the
10 "Software"), to deal in the Software without restriction, including
11 without limitation the rights to use, copy, modify, merge, publish,
12 distribute, sublicense, and/or sell copies of the Software, and to
13 permit persons to whom the Software is furnished to do so, subject to
14 the following conditions:
15
16 The above copyright notice and this permission notice shall be
17 included in all copies or substantial portions of the Software.
18
19 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
23 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  */
26
27 #include "libunwind_i.h"
28
29 int
30 unw_set_cache_size (unw_addr_space_t as, size_t size, int flag)
31 {
32   size_t power = 1;
33   unsigned short log_size = 0;
34
35   if (!tdep_init_done)
36     tdep_init ();
37
38   if (flag != 0)
39     return -1;
40
41   /* Currently not supported for per-thread cache due to memory leak */
42   /* A pthread-key destructor would work, but is not signal safe */
43 #if defined(HAVE___THREAD) && HAVE___THREAD
44   return -1;
45 #endif
46
47   /* Round up to next power of two, slowly but portably */
48   while(power < size)
49     {
50       power *= 2;
51       log_size++;
52       /* Largest size currently supported by rs_cache */
53       if (log_size >= 15)
54         break;
55     }
56
57 #if !defined(__ia64__)
58   if (log_size == as->global_cache.log_size)
59     return 0;   /* no change */
60
61   as->global_cache.log_size = log_size;
62 #endif
63
64   /* Ensure caches are empty (and initialized).  */
65   unw_flush_cache (as, 0, 0);
66 #ifdef __ia64__
67   return 0;
68 #else
69   /* Synchronously purge cache, to ensure memory is allocated */
70   return dwarf_flush_rs_cache(&as->global_cache);
71 #endif
72 }