From owner-cvs-src@FreeBSD.ORG Mon May 24 05:09:15 2004 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 D991416A4CE; Mon, 24 May 2004 05:09:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2A4943D41; Mon, 24 May 2004 05:09:15 -0700 (PDT) (envelope-from bde@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 i4OC8uTH005245; Mon, 24 May 2004 05:08:56 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i4OC8uia005244; Mon, 24 May 2004 05:08:56 -0700 (PDT) (envelope-from bde) Message-Id: <200405241208.i4OC8uia005244@repoman.freebsd.org> From: Bruce Evans Date: Mon, 24 May 2004 05:08:56 -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/amd64/amd64 apic_vector.S exception.S src/sys/amd64/isa atpic_vector.S src/sys/conf files.amd64 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: Mon, 24 May 2004 12:09:16 -0000 bde 2004/05/24 05:08:56 PDT FreeBSD src repository Modified files: sys/amd64/amd64 apic_vector.S exception.S sys/amd64/isa atpic_vector.S sys/conf files.amd64 Log: Fixed profiling of trap, syscall and interrupt handlers and some ordinary functions, essentially by backing out half of rev.1.115 of amd64/exception.S. The handlers must be between certain labels for the purposes of profiling, and this was broken by scattering them in separately compiled .S files, especially for ordinary functions that ended up between the labels. Merge the files by #including them as before, except with different pathnames and better comments and organization. Changes to the scattered files are minimal -- just move the labels to the file that does the #includes. This also partly fixes profiling of IPIs -- all IPI handlers are now correctly classified as interrupt handlers, but many are still missing mcount calls. Revision Changes Path 1.100 +0 -2 src/sys/amd64/amd64/apic_vector.S 1.118 +40 -2 src/sys/amd64/amd64/exception.S 1.45 +0 -2 src/sys/amd64/isa/atpic_vector.S 1.37 +3 -3 src/sys/conf/files.amd64