From owner-cvs-src@FreeBSD.ORG Fri Jul 11 21:35:10 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EE5837B401; Fri, 11 Jul 2003 21:35:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BAB543F3F; Fri, 11 Jul 2003 21:35:10 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h6C4Z90U004939; Fri, 11 Jul 2003 21:35:09 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h6C4Z9Tp004938; Fri, 11 Jul 2003 21:35:09 -0700 (PDT) Message-Id: <200307120435.h6C4Z9Tp004938@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 11 Jul 2003 21:35:09 -0700 (PDT) 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 db_trace.c unwind.c src/sys/ia64/include unwind.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Jul 2003 04:35:10 -0000 marcel 2003/07/11 21:35:09 PDT FreeBSD src repository Modified files: sys/ia64/ia64 db_trace.c unwind.c sys/ia64/include unwind.h Log: Add logic to trace across/over a trapframe. We have ABI markers in our unwind information for functions that are entry points into the kernel. When stepping to the next frame, the unwinder will let us know when sych a marker was encountered. We use this to stop the current unwind session, query the trapframe and restart a new unwind session based on the new trapframe. The implementation is a bit sloppy, but at this time there are bigger fish to fry. Revision Changes Path 1.17 +21 -2 src/sys/ia64/ia64/db_trace.c 1.9 +16 -4 src/sys/ia64/ia64/unwind.c 1.5 +1 -0 src/sys/ia64/include/unwind.h