From owner-cvs-all@FreeBSD.ORG Sat Jul 10 22:59:30 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D197016A4CE; Sat, 10 Jul 2004 22:59:30 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA02E43D2D; Sat, 10 Jul 2004 22:59:30 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i6AMxUK5045281; Sat, 10 Jul 2004 22:59:30 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6AMxU5S045280; Sat, 10 Jul 2004 22:59:30 GMT (envelope-from marcel) Message-Id: <200407102259.i6AMxU5S045280@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 10 Jul 2004 22:59:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 machdep.c trap.c unwind.c src/sys/ia64/include md_var.h unwind.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jul 2004 22:59:31 -0000 marcel 2004-07-10 22:59:30 UTC FreeBSD src repository Modified files: sys/ia64/ia64 machdep.c trap.c unwind.c sys/ia64/include md_var.h unwind.h Log: Update for the KDB framework: o ksym_start and ksym_end changed type to vm_offset_t. o Make debugging support conditional upon KDB instead of DDB. o Call kdb_enter() instead of breakpoint(). o Remove implementation of Debugger(). o Call kdb_trap() according to the new world order. unwinder: o s/db_active/kdb_active/g o Various s/ddb/kdb/g o Add support for unwinding from the PCB as well as the trapframe. Abuse a spare field in the special register set to flag whether the PCB was actually constructed from a trapframe so that we can make the necessary adjustments. md_var.h: o Add RSE convenience macros. o Add ia64_bsp_adjust() to add or subtract from BSP while taking NaT collections into account. Revision Changes Path 1.180 +9 -17 src/sys/ia64/ia64/machdep.c 1.102 +12 -11 src/sys/ia64/ia64/trap.c 1.11 +169 -80 src/sys/ia64/ia64/unwind.c 1.17 +29 -8 src/sys/ia64/include/md_var.h 1.6 +5 -1 src/sys/ia64/include/unwind.h