From owner-cvs-all Thu Oct 12 7:36:43 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 01E1E37B502; Thu, 12 Oct 2000 07:36:40 -0700 (PDT) Received: (from dfr@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id HAA28803; Thu, 12 Oct 2000 07:36:40 -0700 (PDT) (envelope-from dfr@FreeBSD.org) Message-Id: <200010121436.HAA28803@freefall.freebsd.org> From: Doug Rabson Date: Thu, 12 Oct 2000 07:36:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 exception.s genassym.c locore.s machdep.c support.s swtch.s trap.c vm_machdep.c src/sys/ia64/include cpu.h globals.h pcb.h proc.h reg.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG dfr 2000/10/12 07:36:39 PDT Modified files: sys/ia64/ia64 exception.s genassym.c locore.s machdep.c support.s swtch.s trap.c vm_machdep.c sys/ia64/include cpu.h globals.h pcb.h proc.h reg.h Log: * Fix exception handling so that it actually works. We can now handle exceptions from both kernel and user mode. * Fix context switching so that we can switch back to a proc which we switched away from (we were saving the state in the wrong place). * Implement lazy switching of the high-fp state. This needs to be looked at again for SMP to cope with the case of a process migrating from one processor to another while it has the high-fp state. * Make setregs() work properly. I still think this should be called cpu_exec() or something. * Various other minor fixes. With this lot, we can execve() /sbin/init and we get all the way up to its first syscall. At that point, we stop because syscall handling is not done yet. Revision Changes Path 1.6 +97 -59 src/sys/ia64/ia64/exception.s 1.4 +5 -1 src/sys/ia64/ia64/genassym.c 1.4 +1 -115 src/sys/ia64/ia64/locore.s 1.5 +35 -83 src/sys/ia64/ia64/machdep.c 1.4 +8 -4 src/sys/ia64/ia64/support.s 1.5 +346 -5 src/sys/ia64/ia64/swtch.s 1.3 +7 -3 src/sys/ia64/ia64/trap.c 1.5 +5 -5 src/sys/ia64/ia64/vm_machdep.c 1.3 +2 -3 src/sys/ia64/include/cpu.h 1.2 +1 -2 src/sys/ia64/include/globals.h 1.4 +3 -1 src/sys/ia64/include/pcb.h 1.4 +2 -1 src/sys/ia64/include/proc.h 1.3 +3 -3 src/sys/ia64/include/reg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message