1994-08-02 07:55:43 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1993 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1996-07-23 07:46:59 +00:00
|
|
|
* $Id: cpufunc.h,v 1.52 1996/07/01 20:16:09 bde Exp $
|
1994-08-02 07:55:43 +00:00
|
|
|
*/
|
|
|
|
|
1993-06-12 14:58:17 +00:00
|
|
|
/*
|
|
|
|
* Functions to provide access to special i386 instructions.
|
|
|
|
*/
|
|
|
|
|
1993-11-07 17:43:17 +00:00
|
|
|
#ifndef _MACHINE_CPUFUNC_H_
|
1994-11-14 15:04:06 +00:00
|
|
|
#define _MACHINE_CPUFUNC_H_
|
1993-11-07 17:43:17 +00:00
|
|
|
|
1993-06-12 14:58:17 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
|
1996-04-07 18:30:56 +00:00
|
|
|
static __inline void
|
|
|
|
breakpoint(void)
|
1994-09-25 21:31:55 +00:00
|
|
|
{
|
1994-11-14 15:04:06 +00:00
|
|
|
__asm __volatile("int $3");
|
1994-09-25 21:31:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void
|
1994-11-14 15:04:06 +00:00
|
|
|
disable_intr(void)
|
1994-09-25 21:31:55 +00:00
|
|
|
{
|
1995-08-08 04:50:52 +00:00
|
|
|
__asm __volatile("cli" : : : "memory");
|
1994-09-25 21:31:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void
|
1994-11-14 15:04:06 +00:00
|
|
|
enable_intr(void)
|
1994-09-25 21:31:55 +00:00
|
|
|
{
|
1995-08-26 20:45:59 +00:00
|
|
|
__asm __volatile("sti");
|
1994-09-25 21:31:55 +00:00
|
|
|
}
|
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
#define HAVE_INLINE_FFS
|
|
|
|
|
|
|
|
static __inline int
|
|
|
|
ffs(int mask)
|
1994-09-25 21:31:55 +00:00
|
|
|
{
|
1994-11-14 15:04:06 +00:00
|
|
|
int result;
|
|
|
|
/*
|
|
|
|
* bsfl turns out to be not all that slow on 486's. It can beaten
|
|
|
|
* using a binary search to reduce to 4 bits and then a table lookup,
|
|
|
|
* but only if the code is inlined and in the cache, and the code
|
|
|
|
* is quite large so inlining it probably busts the cache.
|
|
|
|
*
|
|
|
|
* Note that gcc-2's builtin ffs would be used if we didn't declare
|
|
|
|
* this inline or turn off the builtin. The builtin is faster but
|
|
|
|
* broken in gcc-2.4.5 and slower but working in gcc-2.5 and 2.6.
|
|
|
|
*/
|
|
|
|
__asm __volatile("testl %0,%0; je 1f; bsfl %0,%0; incl %0; 1:"
|
|
|
|
: "=r" (result) : "0" (mask));
|
|
|
|
return (result);
|
1994-09-25 21:31:55 +00:00
|
|
|
}
|
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
#if __GNUC__ < 2
|
|
|
|
|
|
|
|
#define inb(port) inbv(port)
|
|
|
|
#define outb(port, data) outbv(port, data)
|
|
|
|
|
|
|
|
#else /* __GNUC >= 2 */
|
|
|
|
|
|
|
|
/*
|
1995-07-25 21:28:47 +00:00
|
|
|
* The following complications are to get around gcc not having a
|
|
|
|
* constraint letter for the range 0..255. We still put "d" in the
|
|
|
|
* constraint because "i" isn't a valid constraint when the port
|
|
|
|
* isn't constant. This only matters for -O0 because otherwise
|
|
|
|
* the non-working version gets optimized away.
|
|
|
|
*
|
1994-11-14 15:04:06 +00:00
|
|
|
* Use an expression-statement instead of a conditional expression
|
|
|
|
* because gcc-2.6.0 would promote the operands of the conditional
|
|
|
|
* and produce poor code for "if ((inb(var) & const1) == const2)".
|
|
|
|
*/
|
|
|
|
#define inb(port) ({ \
|
|
|
|
u_char _data; \
|
|
|
|
if (__builtin_constant_p((int) (port)) && (port) < 256ul) \
|
|
|
|
_data = inbc(port); \
|
|
|
|
else \
|
|
|
|
_data = inbv(port); \
|
|
|
|
_data; })
|
|
|
|
|
|
|
|
#define outb(port, data) \
|
|
|
|
(__builtin_constant_p((int) (port)) && (port) < 256ul \
|
|
|
|
? outbc(port, data) : outbv(port, data))
|
|
|
|
|
|
|
|
static __inline u_char
|
|
|
|
inbc(u_int port)
|
1994-09-25 21:31:55 +00:00
|
|
|
{
|
1994-11-14 15:04:06 +00:00
|
|
|
u_char data;
|
|
|
|
|
1995-07-25 21:28:47 +00:00
|
|
|
__asm __volatile("inb %1,%0" : "=a" (data) : "id" ((u_short)(port)));
|
1994-11-14 15:04:06 +00:00
|
|
|
return (data);
|
1994-09-25 21:31:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void
|
1994-11-14 15:04:06 +00:00
|
|
|
outbc(u_int port, u_char data)
|
1994-09-25 21:31:55 +00:00
|
|
|
{
|
1995-07-25 21:28:47 +00:00
|
|
|
__asm __volatile("outb %0,%1" : : "a" (data), "id" ((u_short)(port)));
|
1994-09-25 21:31:55 +00:00
|
|
|
}
|
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
#endif /* __GNUC <= 2 */
|
1994-09-16 13:33:56 +00:00
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
static __inline u_char
|
|
|
|
inbv(u_int port)
|
|
|
|
{
|
|
|
|
u_char data;
|
|
|
|
/*
|
|
|
|
* We use %%dx and not %1 here because i/o is done at %dx and not at
|
|
|
|
* %edx, while gcc generates inferior code (movw instead of movl)
|
|
|
|
* if we tell it to load (u_short) port.
|
|
|
|
*/
|
|
|
|
__asm __volatile("inb %%dx,%0" : "=a" (data) : "d" (port));
|
|
|
|
return (data);
|
1994-09-16 13:33:56 +00:00
|
|
|
}
|
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
static __inline u_long
|
|
|
|
inl(u_int port)
|
1994-09-16 13:33:56 +00:00
|
|
|
{
|
1994-11-14 15:04:06 +00:00
|
|
|
u_long data;
|
1994-09-16 13:33:56 +00:00
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
__asm __volatile("inl %%dx,%0" : "=a" (data) : "d" (port));
|
|
|
|
return (data);
|
1994-09-16 13:33:56 +00:00
|
|
|
}
|
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
static __inline void
|
|
|
|
insb(u_int port, void *addr, size_t cnt)
|
1994-09-16 13:33:56 +00:00
|
|
|
{
|
1994-11-14 15:04:06 +00:00
|
|
|
__asm __volatile("cld; rep; insb"
|
|
|
|
: : "d" (port), "D" (addr), "c" (cnt)
|
|
|
|
: "di", "cx", "memory");
|
1994-09-16 13:33:56 +00:00
|
|
|
}
|
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
static __inline void
|
|
|
|
insw(u_int port, void *addr, size_t cnt)
|
1994-09-16 13:33:56 +00:00
|
|
|
{
|
1994-11-14 15:04:06 +00:00
|
|
|
__asm __volatile("cld; rep; insw"
|
|
|
|
: : "d" (port), "D" (addr), "c" (cnt)
|
|
|
|
: "di", "cx", "memory");
|
1994-09-16 13:33:56 +00:00
|
|
|
}
|
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
static __inline void
|
|
|
|
insl(u_int port, void *addr, size_t cnt)
|
1994-09-16 13:33:56 +00:00
|
|
|
{
|
1994-11-14 15:04:06 +00:00
|
|
|
__asm __volatile("cld; rep; insl"
|
|
|
|
: : "d" (port), "D" (addr), "c" (cnt)
|
|
|
|
: "di", "cx", "memory");
|
1994-09-16 13:33:56 +00:00
|
|
|
}
|
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
static __inline u_short
|
|
|
|
inw(u_int port)
|
1994-09-16 13:33:56 +00:00
|
|
|
{
|
1994-11-14 15:04:06 +00:00
|
|
|
u_short data;
|
|
|
|
|
|
|
|
__asm __volatile("inw %%dx,%0" : "=a" (data) : "d" (port));
|
|
|
|
return (data);
|
1994-09-16 13:33:56 +00:00
|
|
|
}
|
|
|
|
|
1996-04-07 18:30:56 +00:00
|
|
|
static __inline u_int
|
1995-05-11 07:24:35 +00:00
|
|
|
loadandclear(u_int *addr)
|
|
|
|
{
|
|
|
|
u_int result;
|
|
|
|
|
|
|
|
__asm __volatile("xorl %0,%0; xchgl %1,%0"
|
1995-05-14 22:25:11 +00:00
|
|
|
: "=&r" (result) : "m" (*addr));
|
1995-05-11 07:24:35 +00:00
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
static __inline void
|
|
|
|
outbv(u_int port, u_char data)
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
1994-11-14 15:04:06 +00:00
|
|
|
u_char al;
|
|
|
|
/*
|
|
|
|
* Use an unnecessary assignment to help gcc's register allocator.
|
|
|
|
* This make a large difference for gcc-1.40 and a tiny difference
|
|
|
|
* for gcc-2.6.0. For gcc-1.40, al had to be ``asm("ax")'' for
|
|
|
|
* best results. gcc-2.6.0 can't handle this.
|
|
|
|
*/
|
|
|
|
al = data;
|
|
|
|
__asm __volatile("outb %0,%%dx" : : "a" (al), "d" (port));
|
|
|
|
}
|
1993-06-12 14:58:17 +00:00
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
static __inline void
|
|
|
|
outl(u_int port, u_long data)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* outl() and outw() aren't used much so we haven't looked at
|
|
|
|
* possible micro-optimizations such as the unnecessary
|
|
|
|
* assignment for them.
|
|
|
|
*/
|
|
|
|
__asm __volatile("outl %0,%%dx" : : "a" (data), "d" (port));
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
static __inline void
|
|
|
|
outsb(u_int port, void *addr, size_t cnt)
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
1994-11-14 15:04:06 +00:00
|
|
|
__asm __volatile("cld; rep; outsb"
|
|
|
|
: : "d" (port), "S" (addr), "c" (cnt)
|
1995-01-04 20:42:25 +00:00
|
|
|
: "si", "cx");
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
static __inline void
|
|
|
|
outsw(u_int port, void *addr, size_t cnt)
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
1994-11-14 15:04:06 +00:00
|
|
|
__asm __volatile("cld; rep; outsw"
|
|
|
|
: : "d" (port), "S" (addr), "c" (cnt)
|
1995-01-04 20:42:25 +00:00
|
|
|
: "si", "cx");
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
static __inline void
|
|
|
|
outsl(u_int port, void *addr, size_t cnt)
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
1994-11-14 15:04:06 +00:00
|
|
|
__asm __volatile("cld; rep; outsl"
|
|
|
|
: : "d" (port), "S" (addr), "c" (cnt)
|
1995-01-04 20:42:25 +00:00
|
|
|
: "si", "cx");
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
static __inline void
|
|
|
|
outw(u_int port, u_short data)
|
1993-06-12 14:58:17 +00:00
|
|
|
{
|
1994-11-14 15:04:06 +00:00
|
|
|
__asm __volatile("outw %0,%%dx" : : "a" (data), "d" (port));
|
1993-06-12 14:58:17 +00:00
|
|
|
}
|
|
|
|
|
1996-06-14 11:02:28 +00:00
|
|
|
#ifdef PC98
|
1996-07-23 07:46:59 +00:00
|
|
|
#include <machine/spl.h>
|
|
|
|
|
1996-06-14 11:02:28 +00:00
|
|
|
static inline u_char
|
|
|
|
epson_inb(u_int port)
|
|
|
|
{
|
|
|
|
u_char data;
|
|
|
|
|
|
|
|
outb(0x43f, 0x42);
|
|
|
|
data = inb(port);
|
|
|
|
outb(0x43f, 0x40);
|
|
|
|
return (data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
epson_outb(u_int port, u_char data)
|
|
|
|
{
|
|
|
|
outb(0x43f, 0x42);
|
|
|
|
outb(port,data);
|
|
|
|
outb(0x43f, 0x40);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
epson_insw(u_int port, void *addr, size_t cnt)
|
|
|
|
{
|
|
|
|
int s;
|
|
|
|
|
|
|
|
s = splbio();
|
|
|
|
outb(0x43f, 0x42);
|
|
|
|
disable_intr();
|
|
|
|
insw((u_int)port, (void *)addr, (size_t)cnt);
|
|
|
|
outb(0x43f, 0x40);
|
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
epson_outsw(u_int port, void *addr, size_t cnt)
|
|
|
|
{
|
|
|
|
int s;
|
|
|
|
|
|
|
|
s = splbio();
|
|
|
|
outb(0x43f, 0x42);
|
|
|
|
disable_intr();
|
|
|
|
outsw((u_int)port, (void *)addr, (size_t)cnt);
|
|
|
|
outb(0x43f, 0x40);
|
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
#endif /* PC98 */
|
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
static __inline void
|
|
|
|
pmap_update(void)
|
VM system performance improvements from John Dyson and myself. The
following is a summary:
1) increased object cache back up to a more reasonable value.
2) removed old & bogus cruft from machdep.c (clearseg, copyseg,
physcopyseg, etc).
3) inlined many functions in pmap.c
4) changed "load_cr3(rcr3())" into tlbflush() and made tlbflush inline
assembly.
5) changed the way that modified pages are tracked - now vm_page struct
is kept updated directly - no more scanning page tables.
6) removed lots of unnecessary spl's
7) removed old unused functions from pmap.c
8) removed all use of page_size, page_shift, page_mask variables - replaced
with PAGE_ constants.
9) moved trunc/round_page, atop, ptoa, out of vm_param.h and into i386/
include/param.h, and optimized them.
10) numerous changes to sys/vm/ swap_pager, vnode_pager, pageout, fault
code to improve performance. LRU algorithm modified to be more
effective, read ahead/behind values tuned for better performance,
etc, etc...
1994-01-31 04:19:00 +00:00
|
|
|
{
|
1994-11-14 15:04:06 +00:00
|
|
|
u_long temp;
|
|
|
|
/*
|
|
|
|
* This should be implemented as load_cr3(rcr3()) when load_cr3()
|
|
|
|
* is inlined.
|
|
|
|
*/
|
1995-08-26 20:45:59 +00:00
|
|
|
__asm __volatile("movl %%cr3, %0; movl %0, %%cr3" : "=r" (temp)
|
|
|
|
: : "memory");
|
VM system performance improvements from John Dyson and myself. The
following is a summary:
1) increased object cache back up to a more reasonable value.
2) removed old & bogus cruft from machdep.c (clearseg, copyseg,
physcopyseg, etc).
3) inlined many functions in pmap.c
4) changed "load_cr3(rcr3())" into tlbflush() and made tlbflush inline
assembly.
5) changed the way that modified pages are tracked - now vm_page struct
is kept updated directly - no more scanning page tables.
6) removed lots of unnecessary spl's
7) removed old unused functions from pmap.c
8) removed all use of page_size, page_shift, page_mask variables - replaced
with PAGE_ constants.
9) moved trunc/round_page, atop, ptoa, out of vm_param.h and into i386/
include/param.h, and optimized them.
10) numerous changes to sys/vm/ swap_pager, vnode_pager, pageout, fault
code to improve performance. LRU algorithm modified to be more
effective, read ahead/behind values tuned for better performance,
etc, etc...
1994-01-31 04:19:00 +00:00
|
|
|
}
|
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
static __inline u_long
|
|
|
|
rcr2(void)
|
1994-06-06 14:54:41 +00:00
|
|
|
{
|
1994-08-04 19:46:57 +00:00
|
|
|
u_long data;
|
1994-11-14 15:04:06 +00:00
|
|
|
|
|
|
|
__asm __volatile("movl %%cr2,%0" : "=r" (data));
|
|
|
|
return (data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline u_long
|
|
|
|
read_eflags(void)
|
|
|
|
{
|
|
|
|
u_long ef;
|
|
|
|
|
1995-05-30 08:16:23 +00:00
|
|
|
__asm __volatile("pushfl; popl %0" : "=r" (ef));
|
1994-11-14 15:04:06 +00:00
|
|
|
return (ef);
|
|
|
|
}
|
|
|
|
|
1996-04-07 18:30:56 +00:00
|
|
|
static __inline quad_t
|
|
|
|
rdmsr(u_int msr)
|
1994-11-14 15:04:06 +00:00
|
|
|
{
|
1996-04-07 18:30:56 +00:00
|
|
|
quad_t rv;
|
|
|
|
|
|
|
|
__asm __volatile(".byte 0x0f, 0x32" : "=A" (rv) : "c" (msr));
|
|
|
|
return (rv);
|
1994-06-06 14:54:41 +00:00
|
|
|
}
|
|
|
|
|
1996-04-07 18:30:56 +00:00
|
|
|
static __inline quad_t
|
|
|
|
rdpmc(u_int pmc)
|
1996-03-26 19:57:56 +00:00
|
|
|
{
|
1996-04-07 18:30:56 +00:00
|
|
|
quad_t rv;
|
|
|
|
|
|
|
|
__asm __volatile(".byte 0x0f, 0x33" : "=A" (rv) : "c" (pmc));
|
|
|
|
return (rv);
|
1996-03-26 19:57:56 +00:00
|
|
|
}
|
|
|
|
|
1996-04-07 18:30:56 +00:00
|
|
|
static __inline quad_t
|
1996-03-26 19:57:56 +00:00
|
|
|
rdtsc(void)
|
|
|
|
{
|
1996-04-07 18:30:56 +00:00
|
|
|
quad_t rv;
|
|
|
|
|
1996-03-26 19:57:56 +00:00
|
|
|
__asm __volatile(".byte 0x0f, 0x31" : "=A" (rv));
|
1996-04-07 18:30:56 +00:00
|
|
|
return (rv);
|
1996-03-26 19:57:56 +00:00
|
|
|
}
|
|
|
|
|
1996-07-01 20:16:10 +00:00
|
|
|
static __inline void
|
|
|
|
setbits(volatile unsigned *addr, u_int bits)
|
|
|
|
{
|
|
|
|
__asm __volatile("orl %1,%0" : "=m" (*addr) : "ir" (bits));
|
|
|
|
}
|
|
|
|
|
1996-04-07 18:30:56 +00:00
|
|
|
static __inline void
|
|
|
|
write_eflags(u_long ef)
|
1996-03-26 19:57:56 +00:00
|
|
|
{
|
1996-04-07 18:30:56 +00:00
|
|
|
__asm __volatile("pushl %0; popfl" : : "r" (ef));
|
1996-03-26 19:57:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void
|
1996-04-07 18:30:56 +00:00
|
|
|
wrmsr(u_int msr, quad_t newval)
|
1996-03-26 19:57:56 +00:00
|
|
|
{
|
1996-03-28 20:39:45 +00:00
|
|
|
__asm __volatile(".byte 0x0f, 0x30" : : "A" (newval), "c" (msr));
|
1996-03-26 19:57:56 +00:00
|
|
|
}
|
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
#else /* !__GNUC__ */
|
1993-06-12 14:58:17 +00:00
|
|
|
|
1996-04-07 18:30:56 +00:00
|
|
|
int breakpoint __P((void));
|
1993-06-12 14:58:17 +00:00
|
|
|
void disable_intr __P((void));
|
|
|
|
void enable_intr __P((void));
|
|
|
|
u_char inb __P((u_int port));
|
1994-11-14 15:04:06 +00:00
|
|
|
u_long inl __P((u_int port));
|
|
|
|
void insb __P((u_int port, void *addr, size_t cnt));
|
|
|
|
void insl __P((u_int port, void *addr, size_t cnt));
|
|
|
|
void insw __P((u_int port, void *addr, size_t cnt));
|
|
|
|
u_short inw __P((u_int port));
|
1995-05-11 07:24:35 +00:00
|
|
|
u_int loadandclear __P((u_int *addr));
|
1994-11-14 15:04:06 +00:00
|
|
|
void outb __P((u_int port, u_char data));
|
|
|
|
void outl __P((u_int port, u_long data));
|
|
|
|
void outsb __P((u_int port, void *addr, size_t cnt));
|
|
|
|
void outsl __P((u_int port, void *addr, size_t cnt));
|
|
|
|
void outsw __P((u_int port, void *addr, size_t cnt));
|
|
|
|
void outw __P((u_int port, u_short data));
|
1995-02-16 13:21:47 +00:00
|
|
|
void pmap_update __P((void));
|
1994-11-14 15:04:06 +00:00
|
|
|
u_long rcr2 __P((void));
|
1996-04-07 18:30:56 +00:00
|
|
|
quad_t rdmsr __P((u_int msr));
|
|
|
|
quad_t rdpmc __P((u_int pmc));
|
1996-03-26 19:57:56 +00:00
|
|
|
quad_t rdtsc __P((void));
|
1996-04-07 18:30:56 +00:00
|
|
|
u_long read_eflags __P((void));
|
1996-07-01 20:16:10 +00:00
|
|
|
void setbits __P((volatile unsigned *addr, u_int bits));
|
1996-04-07 18:30:56 +00:00
|
|
|
void write_eflags __P((u_long ef));
|
|
|
|
void wrmsr __P((u_int msr, quad_t newval));
|
1994-11-14 15:04:06 +00:00
|
|
|
|
1993-06-12 14:58:17 +00:00
|
|
|
#endif /* __GNUC__ */
|
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
void load_cr0 __P((u_long cr0));
|
|
|
|
void load_cr3 __P((u_long cr3));
|
|
|
|
void ltr __P((u_short sel));
|
|
|
|
u_int rcr0 __P((void));
|
|
|
|
u_long rcr3 __P((void));
|
|
|
|
|
1996-07-01 20:16:10 +00:00
|
|
|
#include <machine/spl.h> /* XXX belongs elsewhere */
|
|
|
|
|
1994-11-14 15:04:06 +00:00
|
|
|
#endif /* !_MACHINE_CPUFUNC_H_ */
|