~ubuntu-branches/ubuntu/utopic/libunwind/utopic-proposed

« back to all changes in this revision

Viewing changes to src/x86_64/Gglobal.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthieu Delahaye
  • Date: 2005-04-22 11:12:14 UTC
  • mto: (4.1.1 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20050422111214-0m74olipxly1ra8a
Tags: upstream-0.98.5
ImportĀ upstreamĀ versionĀ 0.98.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* libunwind - a platform-independent unwind library
 
2
   Copyright (c) 2003 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 "unwind_i.h"
 
29
#include "dwarf_i.h"
 
30
 
 
31
HIDDEN pthread_mutex_t x86_64_lock = PTHREAD_MUTEX_INITIALIZER;
 
32
HIDDEN int tdep_needs_initialization = 1;
 
33
 
 
34
/* See comments for svr4_dbx_register_map[] in gcc/config/i386/i386.c.  */
 
35
 
 
36
HIDDEN uint8_t dwarf_to_unw_regnum_map[17] =
 
37
  {
 
38
    UNW_X86_64_RAX,
 
39
    UNW_X86_64_RDX,
 
40
    UNW_X86_64_RCX,
 
41
    UNW_X86_64_RBX,
 
42
    UNW_X86_64_RSI,
 
43
    UNW_X86_64_RDI,
 
44
    UNW_X86_64_RBP,
 
45
    UNW_X86_64_RSP,
 
46
    UNW_X86_64_R8,
 
47
    UNW_X86_64_R9,
 
48
    UNW_X86_64_R10,
 
49
    UNW_X86_64_R11,
 
50
    UNW_X86_64_R12,
 
51
    UNW_X86_64_R13,
 
52
    UNW_X86_64_R14,
 
53
    UNW_X86_64_R15,
 
54
    UNW_X86_64_RIP
 
55
  };
 
56
 
 
57
HIDDEN void
 
58
tdep_init (void)
 
59
{
 
60
  sigset_t saved_sigmask;
 
61
 
 
62
  sigfillset (&unwi_full_sigmask);
 
63
 
 
64
  sigprocmask (SIG_SETMASK, &unwi_full_sigmask, &saved_sigmask);
 
65
  mutex_lock (&x86_64_lock);
 
66
  {
 
67
    if (!tdep_needs_initialization)
 
68
      /* another thread else beat us to it... */
 
69
      goto out;
 
70
 
 
71
    mi_init ();
 
72
 
 
73
    dwarf_init ();
 
74
 
 
75
#ifndef UNW_REMOTE_ONLY
 
76
    x86_64_local_addr_space_init ();
 
77
#endif
 
78
    tdep_needs_initialization = 0;      /* signal that we're initialized... */
 
79
  }
 
80
 out:
 
81
  mutex_unlock (&x86_64_lock);
 
82
  sigprocmask (SIG_SETMASK, &saved_sigmask, NULL);
 
83
}