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
7This file is part of libunwind.
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
28#include "config.h"
29#include "unwind_i.h"
30#include "dwarf_i.h"
31
32HIDDEN define_lock (x86_64_lock);
33HIDDEN int tdep_init_done;
34
35/* See comments for svr4_dbx_register_map[] in gcc/config/i386/i386.c.  */
36
37HIDDEN 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
76HIDDEN void
77tdep_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}
103