]>
git.saurik.com Git - apple/xnu.git/blob - EXTERNAL_HEADERS/architecture/i386/fpu.h
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1992 NeXT Computer, Inc.
25 * Intel386 Family: Floating Point unit.
29 * 5 October 1992 ? at NeXT
30 * Added names to previously unamed fields in the mantissa.
32 * 5 April 1992 ? at NeXT
40 typedef struct fp_data_reg
{
42 unsigned short mant1
:16,
45 unsigned short exp
:15,
50 * Data register stack.
53 typedef struct fp_stack
{
58 * Register stack tag word.
61 typedef struct fp_tag
{
62 unsigned short tag0
:2,
70 #define FP_TAG_VALID 0
73 #define FP_TAG_EMPTY 3
80 typedef struct fp_status
{
81 unsigned short invalid
:1,
101 typedef struct fp_control
{
102 unsigned short invalid
:1,
110 #define FP_PREC_24B 0
111 #define FP_PREC_53B 2
112 #define FP_PREC_64B 3
114 #define FP_RND_NEAR 0
115 #define FP_RND_DOWN 1
122 #include <architecture/i386/sel.h>
125 * Floating point 'environment'
126 * used by FSTENV/FLDENV instructions.
129 typedef struct fp_env
{
130 fp_control_t control
;
138 unsigned short opcode
;
145 * Floating point state
146 * used by FSAVE/FRSTOR instructions.
149 typedef struct fp_state
{