1 /* Copyright (C) 1999, 2001, 2002, 2006 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 * Powerpc Feature masks for the Aux Vector Hardware Capabilities (AT_HWCAP).
21 * This entry is copied to _dl_hwcap or rtld_global._dl_hwcap during startup.
22 * The following must match the kernels linux/asm/cputable.h.
24 #define PPC_FEATURE_32 0x80000000 /* 32-bit mode. */
25 #define PPC_FEATURE_64 0x40000000 /* 64-bit mode. */
26 #define PPC_FEATURE_601_INSTR 0x20000000 /* 601 chip, Old POWER ISA. */
27 #define PPC_FEATURE_HAS_ALTIVEC 0x10000000 /* SIMD/Vector Unit. */
28 #define PPC_FEATURE_HAS_FPU 0x08000000 /* Floating Point Unit. */
29 #define PPC_FEATURE_HAS_MMU 0x04000000 /* Memory Management Unit. */
30 #define PPC_FEATURE_HAS_4xxMAC 0x02000000 /* 4xx Multiply Accumulator. */
31 #define PPC_FEATURE_UNIFIED_CACHE 0x01000000 /* Unified I/D cache. */
32 #define PPC_FEATURE_HAS_SPE 0x00800000 /* Signal Processing ext. */
33 #define PPC_FEATURE_HAS_EFP_SINGLE 0x00400000 /* SPE Float. */
34 #define PPC_FEATURE_HAS_EFP_DOUBLE 0x00200000 /* SPE Double. */
35 #define PPC_FEATURE_NO_TB 0x00100000 /* 601/403gx have no timebase */
36 #define PPC_FEATURE_POWER4 0x00080000 /* POWER4 ISA 2.00 */
37 #define PPC_FEATURE_POWER5 0x00040000 /* POWER5 ISA 2.02 */
38 #define PPC_FEATURE_POWER5_PLUS 0x00020000 /* POWER5+ ISA 2.03 */
39 #define PPC_FEATURE_CELL_BE 0x00010000 /* CELL Broadband Engine */
40 #define PPC_FEATURE_BOOKE 0x00008000
41 #define PPC_FEATURE_SMT 0x00004000 /* Simultaneous Multi-Threading */
42 #define PPC_FEATURE_ICACHE_SNOOP 0x00002000
43 #define PPC_FEATURE_ARCH_2_05 0x00001000 /* ISA 2.05 */
44 #define PPC_FEATURE_PA6T 0x00000800 /* PA Semi 6T Core */
45 #define PPC_FEATURE_HAS_DFP 0x00000400 /* Decimal FP Unit */
46 #define PPC_FEATURE_POWER6_EXT 0x00000200 /* P6 + mffgpr/mftgpr */
47 #define PPC_FEATURE_HAS_VSX 0x00000100 /* P7 Vector Extension. */
48 #define PPC_FEATURE_ARCH_2_06 0x00000080 /* ISA 2.06 */
49 #define PPC_FEATURE_970 (PPC_FEATURE_POWER4 + PPC_FEATURE_HAS_ALTIVEC)
53 /* Symbolic names for the registers. The only portable way to write asm
54 code is to use number but this produces really unreadable code.
55 Therefore these symbolic names. */
57 /* Integer registers. */
91 /* Floating-point registers. */
125 /* Condition code registers. */
135 /* Vector registers. */
174 /* This seems to always be the case on PPC. */
175 #define ALIGNARG(log2) log2
176 /* For ELF we need the `.type' directive to make shared libs work right. */
177 #define ASM_TYPE_DIRECTIVE(name,typearg) .type name,typearg;
178 #define ASM_SIZE_DIRECTIVE(name) .size name,.-name
181 #endif /* __ASSEMBLER__ */