Initial import
[external/libunwind.git] / src / x86_64 / Gglobal.c
1 /* libunwind - a platform-independent unwind library
2    Copyright (c) 2003, 2005 Hewlett-Packard Development Company, L.P.
3         Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
4
5    Modified for x86_64 by Max Asbock <masbock@us.ibm.com>
6
7 This file is part of libunwind.
8
9 Permission is hereby granted, free of charge, to any person obtaining
10 a copy of this software and associated documentation files (the
11 "Software"), to deal in the Software without restriction, including
12 without limitation the rights to use, copy, modify, merge, publish,
13 distribute, sublicense, and/or sell copies of the Software, and to
14 permit persons to whom the Software is furnished to do so, subject to
15 the following conditions:
16
17 The above copyright notice and this permission notice shall be
18 included in all copies or substantial portions of the Software.
19
20 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  */
27
28 #include "config.h"
29 #include "unwind_i.h"
30 #include "dwarf_i.h"
31
32 HIDDEN define_lock (x86_64_lock);
33 HIDDEN int tdep_init_done;
34
35 /* See comments for svr4_dbx_register_map[] in gcc/config/i386/i386.c.  */
36
37 HIDDEN const uint8_t dwarf_to_unw_regnum_map[DWARF_NUM_PRESERVED_REGS] =
38   {
39     UNW_X86_64_RAX,
40     UNW_X86_64_RDX,
41     UNW_X86_64_RCX,
42     UNW_X86_64_RBX,
43     UNW_X86_64_RSI,
44     UNW_X86_64_RDI,
45     UNW_X86_64_RBP,
46     UNW_X86_64_RSP,
47     UNW_X86_64_R8,
48     UNW_X86_64_R9,
49     UNW_X86_64_R10,
50     UNW_X86_64_R11,
51     UNW_X86_64_R12,
52     UNW_X86_64_R13,
53     UNW_X86_64_R14,
54     UNW_X86_64_R15,
55     UNW_X86_64_RIP,
56 #ifdef CONFIG_MSABI_SUPPORT
57     UNW_X86_64_XMM0,
58     UNW_X86_64_XMM1,
59     UNW_X86_64_XMM2,
60     UNW_X86_64_XMM3,
61     UNW_X86_64_XMM4,
62     UNW_X86_64_XMM5,
63     UNW_X86_64_XMM6,
64     UNW_X86_64_XMM7,
65     UNW_X86_64_XMM8,
66     UNW_X86_64_XMM9,
67     UNW_X86_64_XMM10,
68     UNW_X86_64_XMM11,
69     UNW_X86_64_XMM12,
70     UNW_X86_64_XMM13,
71     UNW_X86_64_XMM14,
72     UNW_X86_64_XMM15
73 #endif
74   };
75
76 HIDDEN void
77 tdep_init (void)
78 {
79   intrmask_t saved_mask;
80
81   sigfillset (&unwi_full_mask);
82
83   lock_acquire (&x86_64_lock, saved_mask);
84   {
85     if (tdep_init_done)
86       /* another thread else beat us to it... */
87       goto out;
88
89     mi_init ();
90
91     dwarf_init ();
92
93     tdep_init_mem_validate ();
94
95 #ifndef UNW_REMOTE_ONLY
96     x86_64_local_addr_space_init ();
97 #endif
98     tdep_init_done = 1; /* signal that we're initialized... */
99   }
100  out:
101   lock_release (&x86_64_lock, saved_mask);
102 }