~vorlon/ubuntu/natty/eglibc/multiarch

« back to all changes in this revision

Viewing changes to ports/sysdeps/powerpc/dl-procinfo.c

  • Committer: Steve Langasek
  • Date: 2011-02-18 21:18:44 UTC
  • mfrom: (103.1.7 eglibc)
  • Revision ID: steve.langasek@linaro.org-20110218211844-lodmi8b1qhyq3f3x
Tags: 2.13~pre1-0ubuntu1+multiarch.1
merge from natty

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Data for processor capability information.  PowerPC version.
 
2
   Copyright (C) 2005, 2006, 2008 Free Software Foundation, Inc.
 
3
   This file is part of the GNU C Library.
 
4
 
 
5
   The GNU C Library is free software; you can redistribute it and/or
 
6
   modify it under the terms of the GNU Lesser General Public
 
7
   License as published by the Free Software Foundation; either
 
8
   version 2.1 of the License, or (at your option) any later version.
 
9
 
 
10
   The GNU C Library is distributed in the hope that it will be useful,
 
11
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
   Lesser General Public License for more details.
 
14
 
 
15
   You should have received a copy of the GNU Lesser General Public
 
16
   License along with the GNU C Library; if not, write to the Free
 
17
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 
18
   02111-1307 USA.  */
 
19
 
 
20
/* This information must be kept in sync with the _DL_HWCAP_COUNT and
 
21
   _DL_PLATFORM_COUNT definitions in procinfo.h.
 
22
 
 
23
   If anything should be added here check whether the size of each string
 
24
   is still ok with the given array size.
 
25
 
 
26
   All the #ifdefs in the definitions are quite irritating but
 
27
   necessary if we want to avoid duplicating the information.  There
 
28
   are three different modes:
 
29
 
 
30
   - PROCINFO_DECL is defined.  This means we are only interested in
 
31
     declarations.
 
32
 
 
33
   - PROCINFO_DECL is not defined:
 
34
 
 
35
     + if SHARED is defined the file is included in an array
 
36
       initializer.  The .element = { ... } syntax is needed.
 
37
 
 
38
     + if SHARED is not defined a normal array initialization is
 
39
       needed.
 
40
  */
 
41
 
 
42
#ifndef PROCINFO_CLASS
 
43
# define PROCINFO_CLASS
 
44
#endif
 
45
 
 
46
#if !defined PROCINFO_DECL && defined SHARED
 
47
  ._dl_powerpc_cap_flags
 
48
#else
 
49
PROCINFO_CLASS const char _dl_powerpc_cap_flags[25][10]
 
50
#endif
 
51
#ifndef PROCINFO_DECL
 
52
= {
 
53
    "vsx",
 
54
    "arch_2_06", "power6x", "dfp", "pa6t",
 
55
    "arch_2_05", "ic_snoop", "smt", "booke",
 
56
    "cellbe", "power5+", "power5", "power4",
 
57
    "notb", "efpdouble", "efpsingle", "spe",
 
58
    "ucache", "4xxmac", "mmu", "fpu",
 
59
    "altivec", "ppc601", "ppc64", "ppc32",
 
60
  }
 
61
#endif
 
62
#if !defined SHARED || defined PROCINFO_DECL
 
63
;
 
64
#else
 
65
,
 
66
#endif
 
67
 
 
68
#if !defined PROCINFO_DECL && defined SHARED
 
69
  ._dl_powerpc_platforms
 
70
#else
 
71
PROCINFO_CLASS const char _dl_powerpc_platforms[12][12]
 
72
#endif
 
73
#ifndef PROCINFO_DECL
 
74
= {
 
75
    [PPC_PLATFORM_POWER4] = "power4",
 
76
    [PPC_PLATFORM_PPC970] = "ppc970",
 
77
    [PPC_PLATFORM_POWER5] = "power5",
 
78
    [PPC_PLATFORM_POWER5_PLUS] = "power5+",
 
79
    [PPC_PLATFORM_POWER6] = "power6",
 
80
    [PPC_PLATFORM_CELL_BE] = "ppc-cell-be",
 
81
    [PPC_PLATFORM_POWER6X] = "power6x",
 
82
    [PPC_PLATFORM_POWER7] = "power7",
 
83
    [PPC_PLATFORM_PPC405] = "ppc405",
 
84
    [PPC_PLATFORM_PPC440] = "ppc440",
 
85
    [PPC_PLATFORM_PPC464] = "ppc464",
 
86
    [PPC_PLATFORM_PPC476] = "ppc476"
 
87
  }
 
88
#endif
 
89
#if !defined SHARED || defined PROCINFO_DECL
 
90
;
 
91
#else
 
92
,
 
93
#endif
 
94
 
 
95
#undef PROCINFO_DECL
 
96
#undef PROCINFO_CLASS