aboutsummaryrefslogtreecommitdiff
path: root/sys/gnu/i386/fpemul
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1996-09-10 08:32:01 +0000
committerBruce Evans <bde@FreeBSD.org>1996-09-10 08:32:01 +0000
commitf313170d3c95b55eba72119af2c229a0e77a50a6 (patch)
tree8b4d4d6687e6d3c4d98e0925a737caec878fa862 /sys/gnu/i386/fpemul
parentb0a76b8898653cdebc8efd9482693edb87568761 (diff)
Notes
Diffstat (limited to 'sys/gnu/i386/fpemul')
-rw-r--r--sys/gnu/i386/fpemul/div_small.s4
-rw-r--r--sys/gnu/i386/fpemul/errors.c26
-rw-r--r--sys/gnu/i386/fpemul/exception.h4
-rw-r--r--sys/gnu/i386/fpemul/fpu_arith.c16
-rw-r--r--sys/gnu/i386/fpemul/fpu_asm.h4
-rw-r--r--sys/gnu/i386/fpemul/fpu_aux.c18
-rw-r--r--sys/gnu/i386/fpemul/fpu_emu.h10
-rw-r--r--sys/gnu/i386/fpemul/fpu_entry.c12
-rw-r--r--sys/gnu/i386/fpemul/fpu_etc.c20
-rw-r--r--sys/gnu/i386/fpemul/fpu_trig.c22
-rw-r--r--sys/gnu/i386/fpemul/get_address.c20
-rw-r--r--sys/gnu/i386/fpemul/load_store.c22
-rw-r--r--sys/gnu/i386/fpemul/poly_2xm1.c8
-rw-r--r--sys/gnu/i386/fpemul/poly_atan.c10
-rw-r--r--sys/gnu/i386/fpemul/poly_div.s4
-rw-r--r--sys/gnu/i386/fpemul/poly_l2.c10
-rw-r--r--sys/gnu/i386/fpemul/poly_mul64.s4
-rw-r--r--sys/gnu/i386/fpemul/poly_sin.c10
-rw-r--r--sys/gnu/i386/fpemul/poly_tan.c10
-rw-r--r--sys/gnu/i386/fpemul/polynomial.s4
-rw-r--r--sys/gnu/i386/fpemul/reg_add_sub.c12
-rw-r--r--sys/gnu/i386/fpemul/reg_compare.c22
-rw-r--r--sys/gnu/i386/fpemul/reg_constant.c18
-rw-r--r--sys/gnu/i386/fpemul/reg_constant.h4
-rw-r--r--sys/gnu/i386/fpemul/reg_div.s8
-rw-r--r--sys/gnu/i386/fpemul/reg_ld_str.c26
-rw-r--r--sys/gnu/i386/fpemul/reg_mul.c10
-rw-r--r--sys/gnu/i386/fpemul/reg_norm.s4
-rw-r--r--sys/gnu/i386/fpemul/reg_round.s8
-rw-r--r--sys/gnu/i386/fpemul/reg_u_add.s8
-rw-r--r--sys/gnu/i386/fpemul/reg_u_div.s8
-rw-r--r--sys/gnu/i386/fpemul/reg_u_mul.s8
-rw-r--r--sys/gnu/i386/fpemul/reg_u_sub.s8
-rw-r--r--sys/gnu/i386/fpemul/wm_shrx.s4
-rw-r--r--sys/gnu/i386/fpemul/wm_sqrt.s6
35 files changed, 196 insertions, 196 deletions
diff --git a/sys/gnu/i386/fpemul/div_small.s b/sys/gnu/i386/fpemul/div_small.s
index d25313b3792c..cf875db578e5 100644
--- a/sys/gnu/i386/fpemul/div_small.s
+++ b/sys/gnu/i386/fpemul/div_small.s
@@ -57,7 +57,7 @@
* W. Metzenthen June 1994.
*
*
- * $Id: div_small.s,v 1.2 1994/04/29 21:07:11 gclarkii Exp $
+ * $Id: div_small.s,v 1.3 1994/06/10 07:44:08 rich Exp $
*
*/
@@ -65,7 +65,7 @@
| unsigned long div_small(unsigned long long *x, unsigned long y) |
+---------------------------------------------------------------------------*/
-#include "fpu_asm.h"
+#include <gnu/i386/fpemul/fpu_asm.h>
.text
.align 2,144
diff --git a/sys/gnu/i386/fpemul/errors.c b/sys/gnu/i386/fpemul/errors.c
index a303b3416f84..378eb61f3534 100644
--- a/sys/gnu/i386/fpemul/errors.c
+++ b/sys/gnu/i386/fpemul/errors.c
@@ -56,7 +56,7 @@
* W. Metzenthen June 1994.
*
*
- * $Id: errors.c,v 1.3 1994/06/10 07:44:10 rich Exp $
+ * $Id: errors.c,v 1.4 1995/03/16 18:11:10 bde Exp $
*
*/
@@ -71,19 +71,19 @@
-#include "param.h"
-#include "systm.h"
-#include "proc.h"
-#include "machine/cpu.h"
-#include "machine/pcb.h"
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/proc.h>
+#include <machine/cpu.h>
+#include <machine/pcb.h>
-#include "fpu_emu.h"
-#include "fpu_system.h"
-#include "exception.h"
-#include "status_w.h"
-#include "control_w.h"
-#include "reg_constant.h"
-#include "version.h"
+#include <gnu/i386/fpemul/fpu_emu.h>
+#include <gnu/i386/fpemul/fpu_system.h>
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/status_w.h>
+#include <gnu/i386/fpemul/control_w.h>
+#include <gnu/i386/fpemul/reg_constant.h>
+#include <gnu/i386/fpemul/version.h>
/* */
#undef PRINT_MESSAGES
diff --git a/sys/gnu/i386/fpemul/exception.h b/sys/gnu/i386/fpemul/exception.h
index 68280e7eefae..d461115271e4 100644
--- a/sys/gnu/i386/fpemul/exception.h
+++ b/sys/gnu/i386/fpemul/exception.h
@@ -54,7 +54,7 @@
* W. Metzenthen June 1994.
*
*
- * $Id: exception.h,v 1.3 1994/06/10 07:44:12 rich Exp $
+ * $Id: exception.h,v 1.4 1995/12/22 16:53:48 bde Exp $
*
*
*/
@@ -70,7 +70,7 @@
#endif
#ifndef SW_C1
-#include "fpu_emu.h"
+#include <gnu/i386/fpemul/fpu_emu.h>
#endif /* SW_C1 */
#define FPU_BUSY Const_(0x8000) /* FPU busy bit (8087 compatibility) */
diff --git a/sys/gnu/i386/fpemul/fpu_arith.c b/sys/gnu/i386/fpemul/fpu_arith.c
index 5745e1b32d17..7feaad64e315 100644
--- a/sys/gnu/i386/fpemul/fpu_arith.c
+++ b/sys/gnu/i386/fpemul/fpu_arith.c
@@ -56,21 +56,21 @@
* W. Metzenthen June 1994.
*
*
- * $Id: fpu_arith.c,v 1.3 1994/06/10 07:44:14 rich Exp $
+ * $Id: fpu_arith.c,v 1.4 1995/05/30 07:57:43 rgrimes Exp $
*
*/
-#include "param.h"
-#include "proc.h"
-#include "machine/cpu.h"
-#include "machine/pcb.h"
+#include <sys/param.h>
+#include <sys/proc.h>
+#include <machine/cpu.h>
+#include <machine/pcb.h>
-#include "fpu_emu.h"
-#include "fpu_system.h"
-#include "control_w.h"
+#include <gnu/i386/fpemul/fpu_emu.h>
+#include <gnu/i386/fpemul/fpu_system.h>
+#include <gnu/i386/fpemul/control_w.h>
void
diff --git a/sys/gnu/i386/fpemul/fpu_asm.h b/sys/gnu/i386/fpemul/fpu_asm.h
index e618c04e1f35..935a3166a3fa 100644
--- a/sys/gnu/i386/fpemul/fpu_asm.h
+++ b/sys/gnu/i386/fpemul/fpu_asm.h
@@ -54,14 +54,14 @@
* W. Metzenthen June 1994.
*
*
- * $Id: fpu_asm.h,v 1.2 1994/04/29 21:07:14 gclarkii Exp $
+ * $Id: fpu_asm.h,v 1.3 1994/06/10 07:44:16 rich Exp $
*
*/
#ifndef _FPU_ASM_H_
#define _FPU_ASM_H_
-#include "fpu_emu.h"
+#include <gnu/i386/fpemul/fpu_emu.h>
#define EXCEPTION _exception
diff --git a/sys/gnu/i386/fpemul/fpu_aux.c b/sys/gnu/i386/fpemul/fpu_aux.c
index ce64a083efe8..71d68e1e30f7 100644
--- a/sys/gnu/i386/fpemul/fpu_aux.c
+++ b/sys/gnu/i386/fpemul/fpu_aux.c
@@ -56,20 +56,20 @@
* W. Metzenthen June 1994.
*
*
- * $Id: fpu_aux.c,v 1.3 1994/06/10 07:44:17 rich Exp $
+ * $Id: fpu_aux.c,v 1.4 1995/12/14 09:50:21 phk Exp $
*
*/
-#include "param.h"
-#include "proc.h"
-#include "machine/cpu.h"
-#include "machine/pcb.h"
+#include <sys/param.h>
+#include <sys/proc.h>
+#include <machine/cpu.h>
+#include <machine/pcb.h>
-#include "fpu_emu.h"
-#include "fpu_system.h"
-#include "exception.h"
-#include "status_w.h"
+#include <gnu/i386/fpemul/fpu_emu.h>
+#include <gnu/i386/fpemul/fpu_system.h>
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/status_w.h>
static void
diff --git a/sys/gnu/i386/fpemul/fpu_emu.h b/sys/gnu/i386/fpemul/fpu_emu.h
index b62a9cf89476..23f2748c9ae5 100644
--- a/sys/gnu/i386/fpemul/fpu_emu.h
+++ b/sys/gnu/i386/fpemul/fpu_emu.h
@@ -54,7 +54,7 @@
* W. Metzenthen June 1994.
*
*
- * $Id: fpu_emu.h,v 1.2 1994/04/29 21:16:20 gclarkii Exp $
+ * $Id: fpu_emu.h,v 1.3 1994/06/10 07:44:19 rich Exp $
*
*/
@@ -80,7 +80,7 @@
#define PECULIAR_486
#ifdef LOCORE
-#include "fpu_asm.h"
+#include <gnu/i386/fpemul/fpu_asm.h>
#define Const(x) $/**/x
#else
#define Const(x) x
@@ -108,8 +108,8 @@
#ifndef LOCORE
-#include "types.h"
-#include "math_emu.h"
+#include <sys/types.h>
+#include <gnu/i386/fpemul/math_emu.h>
#ifdef PARANOID
extern char emulating;
@@ -180,7 +180,7 @@ polynomial(unsigned accum[], unsigned x[],
unsigned int control_w);
#ifndef MAKING_PROTO
-#include "fpu_proto.h"
+#include <gnu/i386/fpemul/fpu_proto.h>
#endif
#endif /* LOCORE */
diff --git a/sys/gnu/i386/fpemul/fpu_entry.c b/sys/gnu/i386/fpemul/fpu_entry.c
index 9c82eea13fa2..263401737b12 100644
--- a/sys/gnu/i386/fpemul/fpu_entry.c
+++ b/sys/gnu/i386/fpemul/fpu_entry.c
@@ -55,7 +55,7 @@
*
* W. Metzenthen June 1994.
*
- * $Id: fpu_entry.c,v 1.7 1995/12/14 08:21:17 phk Exp $
+ * $Id: fpu_entry.c,v 1.8 1995/12/14 20:21:49 bde Exp $
*
*/
@@ -83,11 +83,11 @@
#include <machine/cpu.h>
#include <machine/pcb.h>
-#include "fpu_emu.h"
-#include "fpu_system.h"
-#include "exception.h"
-#include "control_w.h"
-#include "status_w.h"
+#include <gnu/i386/fpemul/fpu_emu.h>
+#include <gnu/i386/fpemul/fpu_system.h>
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/control_w.h>
+#include <gnu/i386/fpemul/status_w.h>
#define __BAD__ Un_impl /* Not implemented */
diff --git a/sys/gnu/i386/fpemul/fpu_etc.c b/sys/gnu/i386/fpemul/fpu_etc.c
index 936e39a8b8bb..3b3897a5e136 100644
--- a/sys/gnu/i386/fpemul/fpu_etc.c
+++ b/sys/gnu/i386/fpemul/fpu_etc.c
@@ -56,20 +56,20 @@
* W. Metzenthen June 1994.
*
*
- * $Id: fpu_etc.c,v 1.2 1994/04/29 21:16:22 gclarkii Exp $
+ * $Id: fpu_etc.c,v 1.3 1994/06/10 07:44:24 rich Exp $
*
*/
-#include "param.h"
-#include "proc.h"
-#include "machine/cpu.h"
-#include "machine/pcb.h"
+#include <sys/param.h>
+#include <sys/proc.h>
+#include <machine/cpu.h>
+#include <machine/pcb.h>
-#include "fpu_emu.h"
-#include "fpu_system.h"
-#include "exception.h"
-#include "status_w.h"
-#include "reg_constant.h"
+#include <gnu/i386/fpemul/fpu_emu.h>
+#include <gnu/i386/fpemul/fpu_system.h>
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/status_w.h>
+#include <gnu/i386/fpemul/reg_constant.h>
static void
diff --git a/sys/gnu/i386/fpemul/fpu_trig.c b/sys/gnu/i386/fpemul/fpu_trig.c
index 4dc8101fc1c8..63a1341f66b0 100644
--- a/sys/gnu/i386/fpemul/fpu_trig.c
+++ b/sys/gnu/i386/fpemul/fpu_trig.c
@@ -56,22 +56,22 @@
* W. Metzenthen June 1994.
*
*
- * $Id: fpu_trig.c,v 1.4 1994/06/10 07:44:27 rich Exp $
+ * $Id: fpu_trig.c,v 1.5 1995/12/17 21:13:58 phk Exp $
*
*/
-#include "param.h"
-#include "proc.h"
-#include "machine/cpu.h"
-#include "machine/pcb.h"
+#include <sys/param.h>
+#include <sys/proc.h>
+#include <machine/cpu.h>
+#include <machine/pcb.h>
-#include "fpu_emu.h"
-#include "fpu_system.h"
-#include "exception.h"
-#include "status_w.h"
-#include "reg_constant.h"
-#include "control_w.h"
+#include <gnu/i386/fpemul/fpu_emu.h>
+#include <gnu/i386/fpemul/fpu_system.h>
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/status_w.h>
+#include <gnu/i386/fpemul/reg_constant.h>
+#include <gnu/i386/fpemul/control_w.h>
static void convert_l2reg(long *arg, FPU_REG * dest);
diff --git a/sys/gnu/i386/fpemul/get_address.c b/sys/gnu/i386/fpemul/get_address.c
index 5839e57c2684..5c60050f4de4 100644
--- a/sys/gnu/i386/fpemul/get_address.c
+++ b/sys/gnu/i386/fpemul/get_address.c
@@ -56,7 +56,7 @@
* W. Metzenthen June 1994.
*
*
- * $Id: get_address.c,v 1.2 1994/04/29 21:16:26 gclarkii Exp $
+ * $Id: get_address.c,v 1.3 1994/06/10 07:44:29 rich Exp $
*
*/
@@ -67,16 +67,16 @@
| other processes using the emulator while swapping is in progress. |
+---------------------------------------------------------------------------*/
-#include "param.h"
-#include "proc.h"
-#include "systm.h"
-#include "machine/cpu.h"
-#include "machine/pcb.h"
-#include "machine/reg.h"
+#include <sys/param.h>
+#include <sys/proc.h>
+#include <sys/systm.h>
+#include <machine/cpu.h>
+#include <machine/pcb.h>
+#include <machine/reg.h>
-#include "fpu_emu.h"
-#include "fpu_system.h"
-#include "exception.h"
+#include <gnu/i386/fpemul/fpu_emu.h>
+#include <gnu/i386/fpemul/fpu_system.h>
+#include <gnu/i386/fpemul/exception.h>
static int reg_offset[] = {
tEAX, tECX, tEDX, tEBX, tESP, tEBP, tESI, tEDI};
diff --git a/sys/gnu/i386/fpemul/load_store.c b/sys/gnu/i386/fpemul/load_store.c
index 94f61b6e8274..9ad91dd0a700 100644
--- a/sys/gnu/i386/fpemul/load_store.c
+++ b/sys/gnu/i386/fpemul/load_store.c
@@ -57,7 +57,7 @@
* W. Metzenthen June 1994.
*
*
- * $Id: load_store.c,v 1.4 1994/09/21 22:22:46 bde Exp $
+ * $Id: load_store.c,v 1.5 1996/06/25 20:29:21 bde Exp $
*
*/
@@ -68,17 +68,17 @@
| other processes using the emulator while swapping is in progress. |
+---------------------------------------------------------------------------*/
-#include "param.h"
-#include "proc.h"
-#include "systm.h"
-#include "machine/cpu.h"
-#include "machine/md_var.h"
-#include "machine/pcb.h"
+#include <sys/param.h>
+#include <sys/proc.h>
+#include <sys/systm.h>
+#include <machine/cpu.h>
+#include <machine/md_var.h>
+#include <machine/pcb.h>
-#include "fpu_emu.h"
-#include "fpu_system.h"
-#include "exception.h"
-#include "status_w.h"
+#include <gnu/i386/fpemul/fpu_emu.h>
+#include <gnu/i386/fpemul/fpu_system.h>
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/status_w.h>
#define _NONE_ 0 /* FPU_st0_ptr etc not needed */
diff --git a/sys/gnu/i386/fpemul/poly_2xm1.c b/sys/gnu/i386/fpemul/poly_2xm1.c
index b7e81f241f1c..ad268e7e9153 100644
--- a/sys/gnu/i386/fpemul/poly_2xm1.c
+++ b/sys/gnu/i386/fpemul/poly_2xm1.c
@@ -56,13 +56,13 @@
* W. Metzenthen June 1994.
*
*
- * $Id: poly_2xm1.c,v 1.2 1994/04/29 21:23:25 gclarkii Exp $
+ * $Id: poly_2xm1.c,v 1.3 1994/06/10 07:44:32 rich Exp $
*
*/
-#include "exception.h"
-#include "reg_constant.h"
-#include "fpu_emu.h"
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/reg_constant.h>
+#include <gnu/i386/fpemul/fpu_emu.h>
diff --git a/sys/gnu/i386/fpemul/poly_atan.c b/sys/gnu/i386/fpemul/poly_atan.c
index 4c16c88ec6c8..5042151365a3 100644
--- a/sys/gnu/i386/fpemul/poly_atan.c
+++ b/sys/gnu/i386/fpemul/poly_atan.c
@@ -56,14 +56,14 @@
* W. Metzenthen June 1994.
*
*
- * $Id: poly_atan.c,v 1.4 1994/06/10 07:44:34 rich Exp $
+ * $Id: poly_atan.c,v 1.5 1995/12/14 09:50:24 phk Exp $
*
*/
-#include "exception.h"
-#include "reg_constant.h"
-#include "fpu_emu.h"
-#include "control_w.h"
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/reg_constant.h>
+#include <gnu/i386/fpemul/fpu_emu.h>
+#include <gnu/i386/fpemul/control_w.h>
#define HIPOWERon 6 /* odd poly, negative terms */
diff --git a/sys/gnu/i386/fpemul/poly_div.s b/sys/gnu/i386/fpemul/poly_div.s
index 3ac5bf06fe1b..25dd5078ce6b 100644
--- a/sys/gnu/i386/fpemul/poly_div.s
+++ b/sys/gnu/i386/fpemul/poly_div.s
@@ -57,11 +57,11 @@
* W. Metzenthen June 1994.
*
*
- * $Id: poly_div.s,v 1.2 1994/04/29 21:23:27 gclarkii Exp $
+ * $Id: poly_div.s,v 1.3 1994/06/10 07:44:36 rich Exp $
*
*/
-#include "fpu_asm.h"
+#include <gnu/i386/fpemul/fpu_asm.h>
.text
diff --git a/sys/gnu/i386/fpemul/poly_l2.c b/sys/gnu/i386/fpemul/poly_l2.c
index 0607c1609d28..fcf9f486be38 100644
--- a/sys/gnu/i386/fpemul/poly_l2.c
+++ b/sys/gnu/i386/fpemul/poly_l2.c
@@ -56,15 +56,15 @@
* W. Metzenthen June 1994.
*
*
- * $Id: poly_l2.c,v 1.4 1994/04/30 16:47:08 gclarkii Exp $
+ * $Id: poly_l2.c,v 1.5 1994/06/10 07:44:38 rich Exp $
*
*/
-#include "exception.h"
-#include "reg_constant.h"
-#include "fpu_emu.h"
-#include "control_w.h"
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/reg_constant.h>
+#include <gnu/i386/fpemul/fpu_emu.h>
+#include <gnu/i386/fpemul/control_w.h>
diff --git a/sys/gnu/i386/fpemul/poly_mul64.s b/sys/gnu/i386/fpemul/poly_mul64.s
index c0f5d0fc5ba9..a80a13f18fe3 100644
--- a/sys/gnu/i386/fpemul/poly_mul64.s
+++ b/sys/gnu/i386/fpemul/poly_mul64.s
@@ -59,12 +59,12 @@
* W. Metzenthen June 1994.
*
*
- * $Id: poly_mul64.s,v 1.2 1994/04/29 21:23:29 gclarkii Exp $
+ * $Id: poly_mul64.s,v 1.3 1994/06/10 07:44:39 rich Exp $
*
*/
-#include "fpu_asm.h"
+#include <gnu/i386/fpemul/fpu_asm.h>
.text
.align 2,144
diff --git a/sys/gnu/i386/fpemul/poly_sin.c b/sys/gnu/i386/fpemul/poly_sin.c
index a1aa11c1ca66..f5e1dcb029cb 100644
--- a/sys/gnu/i386/fpemul/poly_sin.c
+++ b/sys/gnu/i386/fpemul/poly_sin.c
@@ -56,15 +56,15 @@
* W. Metzenthen June 1994.
*
*
- * $Id: poly_sin.c,v 1.4 1994/06/10 07:44:41 rich Exp $
+ * $Id: poly_sin.c,v 1.5 1994/08/31 04:45:22 davidg Exp $
*
*/
-#include "exception.h"
-#include "reg_constant.h"
-#include "fpu_emu.h"
-#include "control_w.h"
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/reg_constant.h>
+#include <gnu/i386/fpemul/fpu_emu.h>
+#include <gnu/i386/fpemul/control_w.h>
#define HIPOWER 5
diff --git a/sys/gnu/i386/fpemul/poly_tan.c b/sys/gnu/i386/fpemul/poly_tan.c
index 6098c814b42f..a0523818fa52 100644
--- a/sys/gnu/i386/fpemul/poly_tan.c
+++ b/sys/gnu/i386/fpemul/poly_tan.c
@@ -56,14 +56,14 @@
* W. Metzenthen June 1994.
*
*
- * $Id: poly_tan.c,v 1.4 1994/06/10 07:44:42 rich Exp $
+ * $Id: poly_tan.c,v 1.5 1995/05/30 07:57:52 rgrimes Exp $
*
*/
-#include "exception.h"
-#include "reg_constant.h"
-#include "fpu_emu.h"
-#include "control_w.h"
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/reg_constant.h>
+#include <gnu/i386/fpemul/fpu_emu.h>
+#include <gnu/i386/fpemul/control_w.h>
#define HIPOWERop 3 /* odd poly, positive terms */
diff --git a/sys/gnu/i386/fpemul/polynomial.s b/sys/gnu/i386/fpemul/polynomial.s
index f54c729fe6fd..b2e808fbfb14 100644
--- a/sys/gnu/i386/fpemul/polynomial.s
+++ b/sys/gnu/i386/fpemul/polynomial.s
@@ -64,13 +64,13 @@
* W. Metzenthen June 1994.
*
*
- * $Id: polynomial.s,v 1.2 1994/04/29 21:23:31 gclarkii Exp $
+ * $Id: polynomial.s,v 1.3 1994/06/10 07:44:43 rich Exp $
*
*/
.file "fpolynom.s"
-#include "fpu_asm.h"
+#include <gnu/i386/fpemul/fpu_asm.h>
/* #define EXTRA_PRECISE*/
diff --git a/sys/gnu/i386/fpemul/reg_add_sub.c b/sys/gnu/i386/fpemul/reg_add_sub.c
index a122452f19f9..9e11c0b39f7d 100644
--- a/sys/gnu/i386/fpemul/reg_add_sub.c
+++ b/sys/gnu/i386/fpemul/reg_add_sub.c
@@ -55,7 +55,7 @@
* W. Metzenthen June 1994.
*
*
- * $Id: reg_add_sub.c,v 1.2 1994/04/29 21:30:15 gclarkii Exp $
+ * $Id: reg_add_sub.c,v 1.3 1994/06/10 07:44:44 rich Exp $
*
*/
@@ -64,11 +64,11 @@
| the source FPU_REGs. |
+---------------------------------------------------------------------------*/
-#include "exception.h"
-#include "reg_constant.h"
-#include "fpu_emu.h"
-#include "control_w.h"
-#include "fpu_system.h"
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/reg_constant.h>
+#include <gnu/i386/fpemul/fpu_emu.h>
+#include <gnu/i386/fpemul/control_w.h>
+#include <gnu/i386/fpemul/fpu_system.h>
void
diff --git a/sys/gnu/i386/fpemul/reg_compare.c b/sys/gnu/i386/fpemul/reg_compare.c
index 52623f72711a..db4eb9dfbf6d 100644
--- a/sys/gnu/i386/fpemul/reg_compare.c
+++ b/sys/gnu/i386/fpemul/reg_compare.c
@@ -56,24 +56,24 @@
* W. Metzenthen June 1994.
*
*
- * $Id: reg_compare.c,v 1.4 1994/08/31 04:45:23 davidg Exp $
+ * $Id: reg_compare.c,v 1.5 1995/05/30 07:57:54 rgrimes Exp $
*
*/
/*---------------------------------------------------------------------------+
| compare() is the core FPU_REG comparison function |
+---------------------------------------------------------------------------*/
-#include "param.h"
-#include "proc.h"
-#include "systm.h"
-#include "machine/cpu.h"
-#include "machine/pcb.h"
+#include <sys/param.h>
+#include <sys/proc.h>
+#include <sys/systm.h>
+#include <machine/cpu.h>
+#include <machine/pcb.h>
-#include "fpu_emu.h"
-#include "fpu_system.h"
-#include "exception.h"
-#include "control_w.h"
-#include "status_w.h"
+#include <gnu/i386/fpemul/fpu_emu.h>
+#include <gnu/i386/fpemul/fpu_system.h>
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/control_w.h>
+#include <gnu/i386/fpemul/status_w.h>
int
diff --git a/sys/gnu/i386/fpemul/reg_constant.c b/sys/gnu/i386/fpemul/reg_constant.c
index e617b366011f..cd3353ac7d17 100644
--- a/sys/gnu/i386/fpemul/reg_constant.c
+++ b/sys/gnu/i386/fpemul/reg_constant.c
@@ -62,16 +62,16 @@
-#include "param.h"
-#include "proc.h"
-#include "systm.h"
-#include "machine/cpu.h"
-#include "machine/pcb.h"
+#include <sys/param.h>
+#include <sys/proc.h>
+#include <sys/systm.h>
+#include <machine/cpu.h>
+#include <machine/pcb.h>
-#include "fpu_emu.h"
-#include "fpu_system.h"
-#include "status_w.h"
-#include "reg_constant.h"
+#include <gnu/i386/fpemul/fpu_emu.h>
+#include <gnu/i386/fpemul/fpu_system.h>
+#include <gnu/i386/fpemul/status_w.h>
+#include <gnu/i386/fpemul/reg_constant.h>
FPU_REG CONST_1 = {SIGN_POS, TW_Valid, EXP_BIAS,
diff --git a/sys/gnu/i386/fpemul/reg_constant.h b/sys/gnu/i386/fpemul/reg_constant.h
index 6e4ffa86d78e..a3bc57f673f3 100644
--- a/sys/gnu/i386/fpemul/reg_constant.h
+++ b/sys/gnu/i386/fpemul/reg_constant.h
@@ -54,14 +54,14 @@
* W. Metzenthen June 1994.
*
*
- * $Id: reg_constant.h,v 1.2 1994/04/29 21:30:18 gclarkii Exp $
+ * $Id: reg_constant.h,v 1.3 1994/06/10 07:44:49 rich Exp $
*
*/
#ifndef _REG_CONSTANT_H_
#define _REG_CONSTANT_H_
-#include "fpu_emu.h"
+#include <gnu/i386/fpemul/fpu_emu.h>
extern FPU_REG CONST_1;
extern FPU_REG CONST_2;
diff --git a/sys/gnu/i386/fpemul/reg_div.s b/sys/gnu/i386/fpemul/reg_div.s
index 5de5a466c49f..d9360e6d7d02 100644
--- a/sys/gnu/i386/fpemul/reg_div.s
+++ b/sys/gnu/i386/fpemul/reg_div.s
@@ -60,13 +60,13 @@
* W. Metzenthen June 1994.
*
*
- * $Id: reg_div.s,v 1.2 1994/04/29 21:30:19 gclarkii Exp $
+ * $Id: reg_div.s,v 1.3 1994/06/10 07:44:50 rich Exp $
*
*/
-#include "exception.h"
-#include "fpu_asm.h"
-#include "control_w.h"
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/fpu_asm.h>
+#include <gnu/i386/fpemul/control_w.h>
.text
.align 2
diff --git a/sys/gnu/i386/fpemul/reg_ld_str.c b/sys/gnu/i386/fpemul/reg_ld_str.c
index f087b33a5105..418661a89652 100644
--- a/sys/gnu/i386/fpemul/reg_ld_str.c
+++ b/sys/gnu/i386/fpemul/reg_ld_str.c
@@ -56,7 +56,7 @@
* W. Metzenthen June 1994.
*
*
- * $Id: reg_ld_str.c,v 1.5 1994/09/21 22:22:48 bde Exp $
+ * $Id: reg_ld_str.c,v 1.6 1996/06/25 20:29:26 bde Exp $
*
*/
@@ -67,19 +67,19 @@
| Emulator static data may change when user memory is accessed, due to |
| other processes using the emulator while swapping is in progress. |
+---------------------------------------------------------------------------*/
-#include "param.h"
-#include "proc.h"
-#include "systm.h"
-#include "machine/cpu.h"
-#include "machine/md_var.h"
-#include "machine/pcb.h"
+#include <sys/param.h>
+#include <sys/proc.h>
+#include <sys/systm.h>
+#include <machine/cpu.h>
+#include <machine/md_var.h>
+#include <machine/pcb.h>
-#include "fpu_emu.h"
-#include "fpu_system.h"
-#include "exception.h"
-#include "reg_constant.h"
-#include "control_w.h"
-#include "status_w.h"
+#include <gnu/i386/fpemul/fpu_emu.h>
+#include <gnu/i386/fpemul/fpu_system.h>
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/reg_constant.h>
+#include <gnu/i386/fpemul/control_w.h>
+#include <gnu/i386/fpemul/status_w.h>
#define EXTENDED_Emax 0x3fff /* largest valid exponent */
diff --git a/sys/gnu/i386/fpemul/reg_mul.c b/sys/gnu/i386/fpemul/reg_mul.c
index b51e9fcf2ed7..1a40eee73aaa 100644
--- a/sys/gnu/i386/fpemul/reg_mul.c
+++ b/sys/gnu/i386/fpemul/reg_mul.c
@@ -56,7 +56,7 @@
* W. Metzenthen June 1994.
*
*
- * $Id: reg_mul.c,v 1.2 1994/04/29 21:30:21 gclarkii Exp $
+ * $Id: reg_mul.c,v 1.3 1994/06/10 07:44:53 rich Exp $
*
*/
@@ -64,10 +64,10 @@
| The destination may be any FPU_REG, including one of the source FPU_REGs. |
+---------------------------------------------------------------------------*/
-#include "exception.h"
-#include "reg_constant.h"
-#include "fpu_emu.h"
-#include "fpu_system.h"
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/reg_constant.h>
+#include <gnu/i386/fpemul/fpu_emu.h>
+#include <gnu/i386/fpemul/fpu_system.h>
/* This routine must be called with non-empty source registers */
diff --git a/sys/gnu/i386/fpemul/reg_norm.s b/sys/gnu/i386/fpemul/reg_norm.s
index 6f9dd7c9693a..98f07219eaf6 100644
--- a/sys/gnu/i386/fpemul/reg_norm.s
+++ b/sys/gnu/i386/fpemul/reg_norm.s
@@ -61,12 +61,12 @@
* W. Metzenthen June 1994.
*
*
- * $Id: reg_norm.s,v 1.2 1994/04/29 21:30:22 gclarkii Exp $
+ * $Id: reg_norm.s,v 1.3 1994/06/10 07:44:54 rich Exp $
*
*/
-#include "fpu_asm.h"
+#include <gnu/i386/fpemul/fpu_asm.h>
.text
diff --git a/sys/gnu/i386/fpemul/reg_round.s b/sys/gnu/i386/fpemul/reg_round.s
index 99a2a8aa352e..51e9b87ddef3 100644
--- a/sys/gnu/i386/fpemul/reg_round.s
+++ b/sys/gnu/i386/fpemul/reg_round.s
@@ -65,7 +65,7 @@
* W. Metzenthen June 1994.
*
*
- * $Id: reg_round.s,v 1.2 1994/04/29 21:30:23 gclarkii Exp $
+ * $Id: reg_round.s,v 1.3 1994/06/10 07:44:55 rich Exp $
*
*/
@@ -118,9 +118,9 @@
+---------------------------------------------------------------------------*/
-#include "fpu_asm.h"
-#include "exception.h"
-#include "control_w.h"
+#include <gnu/i386/fpemul/fpu_asm.h>
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/control_w.h>
#define LOST_DOWN $1
#define LOST_UP $2
diff --git a/sys/gnu/i386/fpemul/reg_u_add.s b/sys/gnu/i386/fpemul/reg_u_add.s
index 86c84753e679..21707423bdce 100644
--- a/sys/gnu/i386/fpemul/reg_u_add.s
+++ b/sys/gnu/i386/fpemul/reg_u_add.s
@@ -62,7 +62,7 @@
* W. Metzenthen June 1994.
*
*
- * $Id: reg_u_add.s,v 1.2 1994/04/29 21:34:23 gclarkii Exp $
+ * $Id: reg_u_add.s,v 1.3 1994/06/10 07:44:56 rich Exp $
*
*/
@@ -76,9 +76,9 @@
| Basic checks are performed if PARANOID is defined.
*/
-#include "exception.h"
-#include "fpu_asm.h"
-#include "control_w.h"
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/fpu_asm.h>
+#include <gnu/i386/fpemul/control_w.h>
.text
.align 2,144
diff --git a/sys/gnu/i386/fpemul/reg_u_div.s b/sys/gnu/i386/fpemul/reg_u_div.s
index 4952923886a2..e49c58ec3bd8 100644
--- a/sys/gnu/i386/fpemul/reg_u_div.s
+++ b/sys/gnu/i386/fpemul/reg_u_div.s
@@ -57,7 +57,7 @@
* W. Metzenthen June 1994.
*
*
- * $Id: reg_u_div.s,v 1.2 1994/04/29 21:34:24 gclarkii Exp $
+ * $Id: reg_u_div.s,v 1.3 1994/06/10 07:44:57 rich Exp $
*
*/
@@ -70,9 +70,9 @@
| Does not compute the destination exponent, but does adjust it. |
+---------------------------------------------------------------------------*/
-#include "exception.h"
-#include "fpu_asm.h"
-#include "control_w.h"
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/fpu_asm.h>
+#include <gnu/i386/fpemul/control_w.h>
/* #define dSIGL(x) (x) */
diff --git a/sys/gnu/i386/fpemul/reg_u_mul.s b/sys/gnu/i386/fpemul/reg_u_mul.s
index 798f2046c8eb..4cd129b29878 100644
--- a/sys/gnu/i386/fpemul/reg_u_mul.s
+++ b/sys/gnu/i386/fpemul/reg_u_mul.s
@@ -57,7 +57,7 @@
* W. Metzenthen June 1994.
*
*
- * $Id: reg_u_mul.s,v 1.2 1994/04/29 21:34:25 gclarkii Exp $
+ * $Id: reg_u_mul.s,v 1.3 1994/06/10 07:44:58 rich Exp $
*
*/
@@ -71,9 +71,9 @@
| Result is rounded to nearest 53 or 64 bits, using "nearest or even". |
+---------------------------------------------------------------------------*/
-#include "exception.h"
-#include "fpu_asm.h"
-#include "control_w.h"
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/fpu_asm.h>
+#include <gnu/i386/fpemul/control_w.h>
.data
diff --git a/sys/gnu/i386/fpemul/reg_u_sub.s b/sys/gnu/i386/fpemul/reg_u_sub.s
index 3161e190284b..a899de5641da 100644
--- a/sys/gnu/i386/fpemul/reg_u_sub.s
+++ b/sys/gnu/i386/fpemul/reg_u_sub.s
@@ -61,7 +61,7 @@
* W. Metzenthen June 1994.
*
*
- * $Id: reg_u_sub.s,v 1.2 1994/04/29 21:34:26 gclarkii Exp $
+ * $Id: reg_u_sub.s,v 1.3 1994/06/10 07:44:59 rich Exp $
*
*/
@@ -76,9 +76,9 @@
| Basic checks are performed if PARANOID is defined.
*/
-#include "exception.h"
-#include "fpu_asm.h"
-#include "control_w.h"
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/fpu_asm.h>
+#include <gnu/i386/fpemul/control_w.h>
.text
.align 2,144
diff --git a/sys/gnu/i386/fpemul/wm_shrx.s b/sys/gnu/i386/fpemul/wm_shrx.s
index 9de946448597..7920a08840e7 100644
--- a/sys/gnu/i386/fpemul/wm_shrx.s
+++ b/sys/gnu/i386/fpemul/wm_shrx.s
@@ -62,12 +62,12 @@
* W. Metzenthen June 1994.
*
*
- * $Id: wm_shrx.s,v 1.2 1994/04/29 21:34:29 gclarkii Exp $
+ * $Id: wm_shrx.s,v 1.3 1994/06/10 07:45:03 rich Exp $
*
*/
-#include "fpu_asm.h"
+#include <gnu/i386/fpemul/fpu_asm.h>
.text
.align 2,144
diff --git a/sys/gnu/i386/fpemul/wm_sqrt.s b/sys/gnu/i386/fpemul/wm_sqrt.s
index b1bc03b2a933..db55921a6cc3 100644
--- a/sys/gnu/i386/fpemul/wm_sqrt.s
+++ b/sys/gnu/i386/fpemul/wm_sqrt.s
@@ -60,7 +60,7 @@
* W. Metzenthen June 1994.
*
*
- * $Id: wm_sqrt.s,v 1.2 1994/04/29 21:34:30 gclarkii Exp $
+ * $Id: wm_sqrt.s,v 1.3 1994/06/10 07:45:04 rich Exp $
*
*/
@@ -77,8 +77,8 @@
| The guess is kept in %esi:%edi |
+---------------------------------------------------------------------------*/
-#include "exception.h"
-#include "fpu_asm.h"
+#include <gnu/i386/fpemul/exception.h>
+#include <gnu/i386/fpemul/fpu_asm.h>
.data