From owner-svn-src-head@freebsd.org Sun Jan 10 17:27:29 2016 Return-Path: Delivered-To: svn-src-head@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 81C7DA6BB5A; Sun, 10 Jan 2016 17:27:29 +0000 (UTC) (envelope-from chmeeedalf@gmail.com) Received: from mail-oi0-x231.google.com (mail-oi0-x231.google.com [IPv6:2607:f8b0:4003:c06::231]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 555291D1D; Sun, 10 Jan 2016 17:27:29 +0000 (UTC) (envelope-from chmeeedalf@gmail.com) Received: by mail-oi0-x231.google.com with SMTP id o124so30336441oia.3; Sun, 10 Jan 2016 09:27:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=5QT4oUkw5cM4YAqnp7pFffOtHHBctSTC/n6BTmFpfPs=; b=CynRe6PfcIpf7M6qdcXt9j/CQdVPZBVJkg4OWrdR3jbZexqMTINHzk4Q2cZOGK03r+ 1oKjzev/C2+U/tCNpeHhRn/YMkZgYRUk8EYaJF/xdgW++L14gKmI/zsJXQ9iUjPksUT6 KiBHlG+hmGJboZW45OCASynZI1sSGXRHmdjwqSYJCrbz301mDFuzBLNA/5XHzH+mP7bW 4WlFmfIGK6RR/xco6wt8kqwv2sl+e6JwO/I5p+FxaJvhOYzic7Rvt1Y+qN6KQJdqGcXA k99hA+wA+wMjqmbxX/7JSYBDqVlKhAuIQ/OIUOhEjhZ07C2su+Y8R8k8OJI4BArsMRWT 8cAA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=alumni-cwru-edu.20150623.gappssmtp.com; s=20150623; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=5QT4oUkw5cM4YAqnp7pFffOtHHBctSTC/n6BTmFpfPs=; b=ytUmI1fcyaGyWY7ZP5/wk2M4tdJ+Lu7u3Uqk5M5ximJqBkj/K8X9dSlDxS7YlSuSvb xpR/FusYLQAn4a/7lyhQscTJUBbSQosKMQbJOMs1QAxv7v9U9a0V1bnEZ0FQUvfTNXyM wEqRPvdHCCCElMiOYDbqzyXltd/ViEz0sr5JPgl/k7/r2aeGzapIVyLO+OpVCwfjt8ep CuPYB3KwHbZSr42EXFMOysAHYCDUHjbXeqtQkvS9Rq3aFjz/fejtYLNd2eCfpGiFpHUc swGyi5E9NoAWm/ygn1tVBNzJM0m9O9uHc718k78i4WtRWA0rggREG+hJrkVp9N9WJIyL Y24A== MIME-Version: 1.0 X-Received: by 10.202.98.84 with SMTP id w81mr85361909oib.3.1452446848516; Sun, 10 Jan 2016 09:27:28 -0800 (PST) Sender: chmeeedalf@gmail.com Received: by 10.182.184.84 with HTTP; Sun, 10 Jan 2016 09:27:28 -0800 (PST) In-Reply-To: <201601101642.u0AGgEV3077040@repo.freebsd.org> References: <201601101642.u0AGgEV3077040@repo.freebsd.org> Date: Sun, 10 Jan 2016 11:27:28 -0600 X-Google-Sender-Auth: utOTyfdHErwsVouTpas5f3i5teo Message-ID: Subject: Re: svn commit: r293636 - in head/sys/powerpc: include ofw powermac powerpc From: Justin Hibbits To: Nathan Whitehorn Cc: src-committers , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jan 2016 17:27:29 -0000 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?