1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 6 unchanged lines hidden (view full) ---

15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
22/*
23 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
25 */
26
27/* LINTLIBRARY */
28
29/*
30 * String conversion routine for hardware capabilities types.
31 */

--- 134 unchanged lines hidden (view full) ---

166 },
167 { /* 0x00004000 */
168 AV_SPARC_FJFMAU, STRDESC("AV_SPARC_FJFMAU"),
169 STRDESC("FJFMAU"), STRDESC("fjfmau"),
170 },
171 { /* 0x00008000 */
172 AV_SPARC_IMA, STRDESC("AV_SPARC_IMA"),
173 STRDESC("IMA"), STRDESC("ima"),
174 },
175 { /* 0x00010000 */
176 AV_SPARC_ASI_CACHE_SPARING,
177 STRDESC("AV_SPARC_ASI_CACHE_SPARING"),
178 STRDESC("CSPARE"), STRDESC("cspare"),
179 }
180};
181
182
183
184/*
185 * Order the Intel hardware capabilities to match their numeric value. See
186 * AV_386_ values in sys/auxv_386.h.

--- 322 unchanged lines hidden ---