From owner-cvs-all@FreeBSD.ORG Sun May 23 11:27:36 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 7BB7916A4CE; Sun, 23 May 2004 11:27:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E01343D3F; Sun, 23 May 2004 11:27:36 -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 i4NIREXB039272; Sun, 23 May 2004 11:27:14 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i4NIRE0r039271; Sun, 23 May 2004 11:27:14 -0700 (PDT) (envelope-from bde) Message-Id: <200405231827.i4NIRE0r039271@repoman.freebsd.org> From: Bruce Evans Date: Sun, 23 May 2004 11:27:14 -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 prof_machdep.c 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: Sun, 23 May 2004 18:27:36 -0000 bde 2004/05/23 11:27:14 PDT FreeBSD src repository Modified files: sys/amd64/amd64 prof_machdep.c Log: Adjusted for amd64 after repo-copy. The adjustments are routine, except: - perfmon headers must be avoided until perfmon is supported. - all call-used registers including return registers must be preserved by .mcount(), etc., not quite as in profile.h. __cyg_profile_func_*() don't require this, but they are (mis)implemented as aliases for .mcount(), etc. so they preserve the registers. - i386 ifdefs related to perfmon have not been adjusted yet. Revision Changes Path 1.20 +53 -23 src/sys/amd64/amd64/prof_machdep.c