Deleted Added
full compact
npx.c (26309) npx.c (26373)
1/*-
2 * Copyright (c) 1990 William Jolitz.
3 * Copyright (c) 1991 The Regents of the University of California.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 18 unchanged lines hidden (view full) ---

27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * from: @(#)npx.c 7.2 (Berkeley) 5/12/91
1/*-
2 * Copyright (c) 1990 William Jolitz.
3 * Copyright (c) 1991 The Regents of the University of California.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 18 unchanged lines hidden (view full) ---

27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * from: @(#)npx.c 7.2 (Berkeley) 5/12/91
35 * $Id: npx.c,v 1.43 1997/05/07 19:58:13 peter Exp $
35 * $Id: npx.c,v 1.44 1997/05/31 09:27:31 peter Exp $
36 */
37
38#include "npx.h"
39#if NNPX > 0
40
41#include "opt_cpu.h"
42#include "opt_math_emulate.h"
43#include "opt_smp.h"

--- 20 unchanged lines hidden (view full) ---

64#include <machine/specialreg.h>
65#if defined(APIC_IO)
66#include <machine/apic.h>
67#include <machine/mpapic.h>
68#endif /* APIC_IO */
69
70#include <i386/isa/icu.h>
71#include <i386/isa/isa_device.h>
36 */
37
38#include "npx.h"
39#if NNPX > 0
40
41#include "opt_cpu.h"
42#include "opt_math_emulate.h"
43#include "opt_smp.h"

--- 20 unchanged lines hidden (view full) ---

64#include <machine/specialreg.h>
65#if defined(APIC_IO)
66#include <machine/apic.h>
67#include <machine/mpapic.h>
68#endif /* APIC_IO */
69
70#include <i386/isa/icu.h>
71#include <i386/isa/isa_device.h>
72#include <i386/isa/intr_machdep.h>
72#include <i386/isa/isa.h>
73
74/*
75 * 387 and 287 Numeric Coprocessor Extension (NPX) Driver.
76 */
77
78/* Configuration flags. */
79#define NPX_DISABLE_I586_OPTIMIZED_BCOPY (1 << 0)

--- 601 unchanged lines hidden ---
73#include <i386/isa/isa.h>
74
75/*
76 * 387 and 287 Numeric Coprocessor Extension (NPX) Driver.
77 */
78
79/* Configuration flags. */
80#define NPX_DISABLE_I586_OPTIMIZED_BCOPY (1 << 0)

--- 601 unchanged lines hidden ---