From owner-svn-src-all@freebsd.org Sun Jan 10 17:50:11 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 26786A69323; Sun, 10 Jan 2016 17:50:11 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from d.mail.sonic.net (d.mail.sonic.net [64.142.111.50]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 140F21BA8; Sun, 10 Jan 2016 17:50:10 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from zeppelin.tachypleus.net (75-101-50-44.static.sonic.net [75.101.50.44]) (authenticated bits=0) by d.mail.sonic.net (8.15.1/8.15.1) with ESMTPSA id u0AHo74X005625 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT); Sun, 10 Jan 2016 09:50:08 -0800 Subject: Re: svn commit: r293636 - in head/sys/powerpc: include ofw powermac powerpc To: Justin Hibbits References: <201601101642.u0AGgEV3077040@repo.freebsd.org> Cc: src-committers , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" From: Nathan Whitehorn Message-ID: <569299CF.4030604@freebsd.org> Date: Sun, 10 Jan 2016 09:50:07 -0800 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.5.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Sonic-CAuth: UmFuZG9tSVZkcx4bYvy/eHbuOCQDua8ZSEYHG6XE1WFtTomKhgPC452dJyCSKdKQxyZxKNES0dyKrHBdHV+4WQ66oi+JrpBL5uaAz84Kp9w= X-Sonic-ID: C;lDtMlsK35RG5hPA4AoajKQ== M;NsahlsK35RG5hPA4AoajKQ== X-Spam-Flag: No X-Sonic-Spam-Details: 0.0/5.0 by cerberusd X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jan 2016 17:50:11 -0000 On 01/10/16 09:27, Justin Hibbits wrote: > On Sun, Jan 10, 2016 at 10:42 AM, Nathan Whitehorn > wrote: >> Author: nwhitehorn >> Date: Sun Jan 10 16:42:14 2016 >> New Revision: 293636 >> URL: https://svnweb.freebsd.org/changeset/base/293636 >> >> Log: >> Use setjmp() instead of the identical-except-for-having-a-wrong-prototype >> setfault() when testing for faults. This should also help the compiler >> do the right thing with this complicated-to-optimize function. >> >> Modified: >> head/sys/powerpc/include/pcb.h >> head/sys/powerpc/include/setjmp.h >> head/sys/powerpc/ofw/rtas.c >> head/sys/powerpc/powermac/grackle.c >> head/sys/powerpc/powerpc/copyinout.c >> head/sys/powerpc/powerpc/mp_machdep.c >> head/sys/powerpc/powerpc/trap.c >> > Does this mean the assembly function can be removed now from locore*.S? > Yes, that will be a follow-up commit in a few minutes along with some other dead code removal. -Nathan