summaryrefslogtreecommitdiffstats
path: root/sys/gnu/i386
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1996-09-10 08:32:01 +0000
committerbde <bde@FreeBSD.org>1996-09-10 08:32:01 +0000
commit25556c3b939b3fbbe349eb8dda57f5749ec814a1 (patch)
tree8b4d4d6687e6d3c4d98e0925a737caec878fa862 /sys/gnu/i386
parente311f5393d87db9cb9afed5cfea2e6c9c8a39676 (diff)
downloadFreeBSD-src-25556c3b939b3fbbe349eb8dda57f5749ec814a1.zip
FreeBSD-src-25556c3b939b3fbbe349eb8dda57f5749ec814a1.tar.gz
Updated #includes to 4.4Lite style.
Diffstat (limited to 'sys/gnu/i386')
-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.c20
-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.c28
-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, 198 insertions, 198 deletions
diff --git a/sys/gnu/i386/fpemul/div_small.s b/sys/gnu/i386/fpemul/div_small.s
index d25313b..cf875db 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 a303b34..378eb61 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 68280e7..d461115 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 5745e1b..7feaad6 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 e618c04..935a316 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 ce64a08..71d68e1 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 b62a9cf..23f2748 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 9c82eea..2634017 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 936e39a..3b3897a 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 4dc8101..63a1341 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 5839e57..5c60050 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 94f61b6..9ad91dd 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 b7e81f2..ad268e7 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 4c16c88..5042151 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 3ac5bf0..25dd507 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 0607c16..fcf9f48 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 c0f5d0f..a80a13f 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 a1aa11c..f5e1dcb 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 6098c81..a052381 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 f54c729..b2e808f 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 a122452..9e11c0b 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 52623f7..db4eb9d 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 e617b36..cd3353a 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 "fpu_emu.h"
-#include "fpu_system.h"
-#include "status_w.h"
-#include "reg_constant.h"
+#include <sys/param.h>
+#include <sys/proc.h>
+#include <sys/systm.h>
+#include <machine/cpu.h>
+#include <machine/pcb.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 6e4ffa8..a3bc57f 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 5de5a46..d9360e6 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 f087b33..418661a 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 "fpu_emu.h"
-#include "fpu_system.h"
-#include "exception.h"
-#include "reg_constant.h"
-#include "control_w.h"
-#include "status_w.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 <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 b51e9fc..1a40eee 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 6f9dd7c..98f0721 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 99a2a8a..51e9b87 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 86c8475..2170742 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 4952923..e49c58e 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 798f204..4cd129b 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 3161e19..a899de5 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 9de9464..7920a08 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 b1bc03b..db55921 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
OpenPOWER on IntegriCloud