Daniel Jacobowitz | 3842dac | 2008-02-04 17:16:37 -0700 | [diff] [blame] | 1 | /* libunwind - a platform-independent unwind library |
| 2 | Copyright (C) 2008 CodeSourcery |
| 3 | |
| 4 | This file is part of libunwind. |
| 5 | |
| 6 | Permission is hereby granted, free of charge, to any person obtaining |
| 7 | a copy of this software and associated documentation files (the |
| 8 | "Software"), to deal in the Software without restriction, including |
| 9 | without limitation the rights to use, copy, modify, merge, publish, |
| 10 | distribute, sublicense, and/or sell copies of the Software, and to |
| 11 | permit persons to whom the Software is furnished to do so, subject to |
| 12 | the following conditions: |
| 13 | |
| 14 | The above copyright notice and this permission notice shall be |
| 15 | included in all copies or substantial portions of the Software. |
| 16 | |
| 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 18 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 19 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 20 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 21 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 22 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 23 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ |
| 24 | |
| 25 | #include <ucontext.h> |
| 26 | #include "unwind_i.h" |
| 27 | #include "dwarf_i.h" |
| 28 | |
| 29 | HIDDEN pthread_mutex_t arm_lock = PTHREAD_MUTEX_INITIALIZER; |
| 30 | HIDDEN int tdep_needs_initialization = 1; |
| 31 | |
| 32 | /* FIXME: I'm pretty sure we don't need this at all for ARM, but "generic" |
| 33 | code (include/dwarf_i.h) seems to expect it to be here at present. */ |
| 34 | |
| 35 | HIDDEN uint8_t dwarf_to_unw_regnum_map[16] = |
| 36 | { |
| 37 | R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, R13, R14, R15 |
| 38 | }; |
| 39 | |
| 40 | HIDDEN void |
| 41 | tdep_init (void) |
| 42 | { |
| 43 | intrmask_t saved_mask; |
| 44 | |
| 45 | sigfillset (&unwi_full_mask); |
| 46 | |
Paul Pluzhnikov | 84d4150 | 2009-09-21 12:02:07 -0700 | [diff] [blame^] | 47 | lock_acquire (&arm_lock, saved_mask); |
Daniel Jacobowitz | 3842dac | 2008-02-04 17:16:37 -0700 | [diff] [blame] | 48 | { |
| 49 | if (!tdep_needs_initialization) |
| 50 | /* another thread else beat us to it... */ |
| 51 | goto out; |
| 52 | |
| 53 | mi_init (); |
| 54 | |
| 55 | dwarf_init (); |
| 56 | |
| 57 | #ifndef UNW_REMOTE_ONLY |
| 58 | arm_local_addr_space_init (); |
| 59 | #endif |
| 60 | tdep_needs_initialization = 0; /* signal that we're initialized... */ |
| 61 | } |
| 62 | out: |
Paul Pluzhnikov | 84d4150 | 2009-09-21 12:02:07 -0700 | [diff] [blame^] | 63 | lock_release (&arm_lock, saved_mask); |
Daniel Jacobowitz | 3842dac | 2008-02-04 17:16:37 -0700 | [diff] [blame] | 64 | } |