Chameleon

Chameleon Svn Source Tree

Root/branches/cparm/i386/modules/include/mach/i386/fp_reg.h

1/*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28/*
29 * @OSF_COPYRIGHT@
30 */
31/*
32 * Mach Operating System
33 * Copyright (c) 1992-1989 Carnegie Mellon University
34 * All Rights Reserved.
35 *
36 * Permission to use, copy, modify and distribute this software and its
37 * documentation is hereby granted, provided that both the copyright
38 * notice and this permission notice appear in all copies of the
39 * software, derivative works or modified versions, and any portions
40 * thereof, and that both notices appear in supporting documentation.
41 *
42 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
43 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
44 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
45 *
46 * Carnegie Mellon requests users of this software to return to
47 *
48 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
49 * School of Computer Science
50 * Carnegie Mellon University
51 * Pittsburgh PA 15213-3890
52 *
53 * any improvements or extensions that they make and grant Carnegie Mellon
54 * the rights to redistribute these changes.
55 */
56/*
57 */
58
59#ifndef_I386_FP_SAVE_H_
60#define_I386_FP_SAVE_H_
61
62/*
63 * Control register
64 */
65#defineFPC_IE0x0001/* enable invalid operation
66 exception */
67#define FPC_IMFPC_IE
68#defineFPC_DE0x0002/* enable denormalized operation
69 exception */
70#define FPC_DMFPC_DE
71#defineFPC_ZE0x0004/* enable zero-divide exception */
72#define FPC_ZMFPC_ZE
73#defineFPC_OE0x0008/* enable overflow exception */
74#define FPC_OMFPC_OE
75#defineFPC_UE0x0010/* enable underflow exception */
76#defineFPC_PE0x0020/* enable precision exception */
77#defineFPC_PC0x0300/* precision control: */
78#defineFPC_PC_240x0000/* 24 bits */
79#defineFPC_PC_530x0200/* 53 bits */
80#defineFPC_PC_640x0300/* 64 bits */
81#defineFPC_RC0x0c00/* rounding control: */
82#defineFPC_RC_RN0x0000/* round to nearest or even */
83#defineFPC_RC_RD0x0400/* round down */
84#defineFPC_RC_RU0x0800/* round up */
85#defineFPC_RC_CHOP0x0c00/* chop */
86#defineFPC_IC0x1000/* infinity control (obsolete) */
87#defineFPC_IC_PROJ0x0000/* projective infinity */
88#defineFPC_IC_AFF0x1000/* affine infinity (std) */
89
90/*
91 * Status register
92 */
93#defineFPS_IE0x0001/* invalid operation */
94#defineFPS_DE0x0002/* denormalized operand */
95#defineFPS_ZE0x0004/* divide by zero */
96#defineFPS_OE0x0008/* overflow */
97#defineFPS_UE0x0010/* underflow */
98#defineFPS_PE0x0020/* precision */
99#defineFPS_SF0x0040/* stack flag */
100#defineFPS_ES0x0080/* error summary */
101#defineFPS_C00x0100/* condition code bit 0 */
102#defineFPS_C10x0200/* condition code bit 1 */
103#defineFPS_C20x0400/* condition code bit 2 */
104#defineFPS_TOS0x3800/* top-of-stack pointer */
105#defineFPS_TOS_SHIFT11
106#defineFPS_C30x4000/* condition code bit 3 */
107#defineFPS_BUSY0x8000/* FPU busy */
108
109/*
110 * Kind of floating-point support provided by kernel.
111 */
112#defineFP_NO0/* no floating point */
113#defineFP_SOFT1/* software FP emulator */
114#defineFP_2872/* 80287 */
115#defineFP_3873/* 80387 or 80486 */
116#define FP_FXSR4/* Fast save/restore SIMD Extension */
117
118#endif/* _I386_FP_SAVE_H_ */
119

Archive Download this file

Revision: 2182