Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: The Source of All Evil <source@NetBSD.ORG>
List: source-changes
Date: 07/14/1996 00:20:06
cgd
Sun Jul 14 00:12:04 EDT 1996
Update of /a/cvsroot/src/sys/arch/alpha/include
In directory pain.lcs.mit.edu:/a/tmp/cvs-serv3310

Removed Files:
	trap.h 
Log Message:
(1)     Remove old trap definitions, define trap and interrupt handling
more naturally in terms of way the OSF/1 PALcode delivers traps and 
interrupts.  Clean up fault/exception handling code and system entry
points.  Seperate ASTs into a seperate C function. 


cgd
Sun Jul 14 00:12:47 EDT 1996
Update of /a/cvsroot/src/sys/arch/alpha/include
In directory pain.lcs.mit.edu:/a/tmp/cvs-serv3328

Modified Files:
	alpha_cpu.h 
Log Message:
(1)     Remove old trap definitions, define trap and interrupt handling
more naturally in terms of way the OSF/1 PALcode delivers traps and 
interrupts.  Clean up fault/exception handling code and system entry
points.  Seperate ASTs into a seperate C function. 
(2)     Restructure and improve machine check and correctable error
handling based on information in the 2nd Ed. of the Alpha Architecture 
Reference Manual.
(3)     Removed unused (and not likely useful) PALcode assembly stubs.


cgd
Sun Jul 14 00:13:01 EDT 1996
Update of /a/cvsroot/src/sys/arch/alpha/include
In directory pain.lcs.mit.edu:/a/tmp/cvs-serv3349

Modified Files:
	autoconf.h 
Log Message:
(1)     Clean up interrupt handling slightly.
(2)     Clean up badaddr() definition.


cgd
Sun Jul 14 00:15:11 EDT 1996
Update of /a/cvsroot/src/sys/arch/alpha/include
In directory pain.lcs.mit.edu:/a/tmp/cvs-serv3370

Modified Files:
	cpu.h 
Log Message:
(1)     Add unaligned access fixup code to fix unaligned quad, long,
and IEEE S and T floating datum loads and stores.  VAX floating data 
types not yet supported, and in the future will only be supported if 
FIX_UNALIGNED_VAX_FP is defined.  (No point in wasting the space when 
most of the time there will never be VAX FP loads and stores.)  Right 
now, these features can be controlled only by sysctl.  The (boolean)
integer sysctls machdep.unaligned_print, machdep.unaligned_fix, and
machdep.unaligned_sigbus control printing about unaligned accesses
(defaults on), fixing up of unaligned accesses (defaults on), and 
forcing a SIGBUS on unaligned accesses (defaults off).  If an access 
is not fixed up (for lack of method or explicit decision), a SIGBUS is 
always generated to keep programs from using bogus data.  At some point, 
these three choices should be controlled by per-process flags, as well. 


cgd
Sun Jul 14 00:15:29 EDT 1996
Update of /a/cvsroot/src/sys/arch/alpha/include
In directory pain.lcs.mit.edu:/a/tmp/cvs-serv3395

Modified Files:
	pcb.h 
Log Message:
(1)     Add machinery to make [fs]uswintr be a bit more careful when
determining if a fault was actually their fault.  (Unfortunately, they're
not actually implemented now, anyway.)
(2)     Minor cleanup.