Include <machine/asm.h> instead of kernel-only <machine/asmacros.h>.

This commit is contained in:
Bruce Evans 1997-03-09 14:01:11 +00:00
parent 13a44161a2
commit 6b04d9918b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=23577
24 changed files with 48 additions and 48 deletions

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: e_acos.S,v 1.5 1997/02/22 15:08:43 peter Exp $")
/*
* acos(x) = atan2(sqrt(1 - x^2, x).

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: e_asin.S,v 1.5 1997/02/22 15:08:44 peter Exp $")
/*
* asin(x) = atan2(x, sqrt(1 - x^2).

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: e_atan2.S,v 1.4 1997/02/22 15:08:45 peter Exp $")
ENTRY(__ieee754_atan2)
fldl 4(%esp)

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: e_exp.S,v 1.6 1997/02/22 15:08:46 peter Exp $")
/* e^x = 2^(x * log2(e)) */
ENTRY(__ieee754_exp)

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: e_fmod.S,v 1.4 1997/02/22 15:08:47 peter Exp $")
ENTRY(__ieee754_fmod)
fldl 12(%esp)

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: e_log.S,v 1.4 1997/02/22 15:08:48 peter Exp $")
ENTRY(__ieee754_log)
fldln2

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: e_log10.S,v 1.4 1997/02/22 15:08:49 peter Exp $")
ENTRY(__ieee754_log10)
fldlg2

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: e_remainder.S,v 1.4 1997/02/22 15:08:50 peter Exp $")
ENTRY(__ieee754_remainder)
fldl 12(%esp)

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: e_scalb.S,v 1.5 1997/02/22 15:08:51 peter Exp $")
ENTRY(__ieee754_scalb)
fldl 12(%esp)

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: e_sqrt.S,v 1.4 1997/02/22 15:08:52 peter Exp $")
ENTRY(__ieee754_sqrt)
fldl 4(%esp)

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: s_atan.S,v 1.4 1997/02/22 15:08:53 peter Exp $")
ENTRY(atan)
fldl 4(%esp)

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: s_ceil.S,v 1.5 1997/02/22 15:08:54 peter Exp $")
ENTRY(ceil)
pushl %ebp

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: s_copysign.S,v 1.4 1997/02/22 15:08:55 peter Exp $")
ENTRY(copysign)
movl 16(%esp),%edx

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: s_cos.S,v 1.4 1997/02/22 15:08:55 peter Exp $")
ENTRY(cos)
fldl 4(%esp)

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: s_finite.S,v 1.4 1997/02/22 15:08:56 peter Exp $")
ENTRY(finite)
movl 8(%esp),%eax

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: s_floor.S,v 1.5 1997/02/22 15:08:57 peter Exp $")
ENTRY(floor)
pushl %ebp

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: s_ilogb.S,v 1.5 1997/02/22 15:08:59 peter Exp $")
ENTRY(ilogb)
pushl %ebp

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: s_log1p.S,v 1.5 1997/02/22 15:08:59 peter Exp $")
/*
* The fyl2xp1 instruction has such a limited range:

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: s_logb.S,v 1.4 1997/02/22 15:09:00 peter Exp $")
ENTRY(logb)
fldl 4(%esp)

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: s_rint.S,v 1.4 1997/02/22 15:09:01 peter Exp $")
ENTRY(rint)
fldl 4(%esp)

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: s_scalbn.S,v 1.5 1997/02/22 15:09:02 peter Exp $")
ENTRY(scalbn)
fildl 12(%esp)

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: s_significand.S,v 1.4 1997/02/22 15:09:03 peter Exp $")
ENTRY(significand)
fldl 4(%esp)

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: s_sin.S,v 1.4 1997/02/22 15:09:05 peter Exp $")
ENTRY(sin)
fldl 4(%esp)

View file

@ -33,9 +33,9 @@
* J.T. Conklin (jtc@wimsey.com), Winning Strategies, Inc.
*/
#include <machine/asmacros.h>
#include <machine/asm.h>
RCSID("$Id$")
RCSID("$Id: s_tan.S,v 1.4 1997/02/22 15:09:06 peter Exp $")
ENTRY(tan)
fldl 4(%esp)