From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28965 invoked by alias); 11 Jun 2014 10:20:36 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 28761 invoked by uid 89); 11 Jun 2014 10:20:34 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-we0-f175.google.com Received: from mail-we0-f175.google.com (HELO mail-we0-f175.google.com) (74.125.82.175) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Wed, 11 Jun 2014 10:20:33 +0000 Received: by mail-we0-f175.google.com with SMTP id p10so8690226wes.20 for ; Wed, 11 Jun 2014 03:20:30 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=2X3rdeEKpmVYQ1D3iD6RGOiMSYsxUa1NnYpdV0rKgJQ=; b=K7f4bBXCbnL2MYx0ae8HIwzoHTHmpLAgB4uthbgiVt4NBgKQ/L+R5VLykQxCt6gSbz cdZLZUhbXKl0w2QPwFMuGJmtjzK9oSsI3x2Ve4Z+7ygeCqJ+1bGappg5MMlODDuatJgL EieOE3KId0KFIcGV+frCie1SRyhQAc3f0jvXWshWT0tZHji2VFkn5fSEjeRlUJyTfjUX oI4dgrNI0M8fXHJnKafyZyuSPhuepRtgVz3rCqouO4s23Oxa/U6qwQ9agot1bDmnGtck aeqtyIlrnZAd6jUn6FJt6e2RCfOXPaRC0FbS0shrIK2NjfHvq5IyBlSSeZ/cBL8FBgbJ um8Q== X-Gm-Message-State: ALoCoQnbU1E18oYX80SFJ9fqIKrjhhf/c0IlrqqOKiSuuFxj+E3HPKHvbqAt2ASs6Qiw2oFihEmN X-Received: by 10.180.108.51 with SMTP id hh19mr37400994wib.25.1402482030239; Wed, 11 Jun 2014 03:20:30 -0700 (PDT) Received: from sale.linaro.local ([213.122.173.130]) by mx.google.com with ESMTPSA id ej2sm33548768wjd.21.2014.06.11.03.20.29 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 11 Jun 2014 03:20:29 -0700 (PDT) From: Charles Baylis To: rearnsha@arm.com Cc: gcc-patches@gcc.gnu.org, Ramana.Radhakrishnan@arm.com Subject: [PATCH 4/9] Optimise __aeabi_uldivmod Date: Wed, 11 Jun 2014 10:20:00 -0000 Message-Id: <1402481995-12749-4-git-send-email-charles.baylis@linaro.org> In-Reply-To: <1402481995-12749-1-git-send-email-charles.baylis@linaro.org> References: <5398226C.5060905@arm.com> <1402481995-12749-1-git-send-email-charles.baylis@linaro.org> X-IsSubscribed: yes X-SW-Source: 2014-06/txt/msg00908.txt.bz2 2014-05-22 Charles Baylis * config/arm/bpabi.S (__aeabi_uldivmod): Perform division using call to __udivmoddi4. --- libgcc/config/arm/bpabi.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgcc/config/arm/bpabi.S b/libgcc/config/arm/bpabi.S index 67246b0..927e37f 100644 --- a/libgcc/config/arm/bpabi.S +++ b/libgcc/config/arm/bpabi.S @@ -207,7 +207,7 @@ ARM_FUNC_START aeabi_uldivmod push_for_divide __aeabi_uldivmod /* arguments in (r0:r1), (r2:r3) and *sp */ - bl SYM(__gnu_uldivmod_helper) __PLT__ + bl SYM(__udivmoddi4) __PLT__ pop_for_divide RET cfi_end LSYM(Lend_aeabi_uldivmod) -- 1.9.1