From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21009 invoked by alias); 21 Sep 2007 19:04:25 -0000 Received: (qmail 20986 invoked by uid 22791); 21 Sep 2007 19:04:24 -0000 X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 21 Sep 2007 19:04:20 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.1/8.13.1) with ESMTP id l8LJ4Fdw011440 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 21 Sep 2007 15:04:15 -0400 Received: from pobox.toronto.redhat.com (pobox.toronto.redhat.com [172.16.14.4]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id l8LJ4Enm004090; Fri, 21 Sep 2007 15:04:14 -0400 Received: from [172.16.14.227] (topaz.toronto.redhat.com [172.16.14.227]) by pobox.toronto.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id l8LJ4EEt027449; Fri, 21 Sep 2007 15:04:14 -0400 Message-ID: <46F415AE.5000103@redhat.com> Date: Sat, 22 Sep 2007 10:57:00 -0000 From: Dave Brolley User-Agent: Thunderbird 1.5.0.5 (X11/20060719) MIME-Version: 1.0 To: cgen@sources.redhat.com, sid@sources.redhat.com, binutils@sources.redhat.com Subject: [patch][commit] MeP CPU Description Content-Type: multipart/mixed; boundary="------------090509080202070904000006" X-IsSubscribed: yes Mailing-List: contact sid-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: sid-owner@sourceware.org X-SW-Source: 2007-q3/txt/msg00023.txt.bz2 This is a multi-part message in MIME format. --------------090509080202070904000006 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 341 Hi, I've committed the attached to the cgen .cpu description for the MeP port. This change allows gcc to correctly identify the required argument types for its internally-generated intrinsic builtin functions for each insn. The change causes a cosmetic change to opcodes/mep-desc.c, when regenerated, which I have also committed. Dave --------------090509080202070904000006 Content-Type: text/plain; name="mep.sources.ChangeLog" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="mep.sources.ChangeLog" Content-length: 149 2007-09-21 Dave Brolley * cpu/mep-core.cpu (rnc, rnuc, rns, rnus, rn3c, rn3uc, rn3s) (rn3us): CDATA attribute now LONG. --------------090509080202070904000006 Content-Type: text/plain; name="mep.sources.diff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="mep.sources.diff.txt" Content-length: 3343 Index: cgen/cpu/mep-core.cpu =================================================================== RCS file: /cvs/src/src/cgen/cpu/mep-core.cpu,v retrieving revision 1.1 diff -c -p -r1.1 mep-core.cpu *** cgen/cpu/mep-core.cpu 5 Feb 2007 19:46:38 -0000 1.1 --- cgen/cpu/mep-core.cpu 21 Sep 2007 18:53:23 -0000 *************** *** 623,641 **** (dnop rma "register Rm holding pointer" (all-mep-core-isas (CDATA POINTER)) h-gpr f-rm) ! (dnop rnc "register Rn holding char" (all-mep-core-isas (CDATA CHAR)) h-gpr f-rn) ! (dnop rnuc "register Rn holding unsigned char" (all-mep-core-isas (CDATA UCHAR)) h-gpr f-rn) ! (dnop rns "register Rn holding short" (all-mep-core-isas (CDATA SHORT)) h-gpr f-rn) ! (dnop rnus "register Rn holding unsigned short" (all-mep-core-isas (CDATA USHORT)) h-gpr f-rn) (dnop rnl "register Rn holding long" (all-mep-core-isas (CDATA LONG)) h-gpr f-rn) (dnop rnul "register Rn holding unsigned long" (all-mep-core-isas (CDATA ULONG)) h-gpr f-rn) ! (dnop rn3c "register 0-7 holding unsigned char" (all-mep-core-isas (CDATA CHAR)) h-gpr f-rn3) ! (dnop rn3uc "register 0-7 holding byte" (all-mep-core-isas (CDATA UCHAR)) h-gpr f-rn3) ! (dnop rn3s "register 0-7 holding unsigned short" (all-mep-core-isas (CDATA SHORT)) h-gpr f-rn3) ! (dnop rn3us "register 0-7 holding short" (all-mep-core-isas (CDATA USHORT)) h-gpr f-rn3) ! (dnop rn3l "register 0-7 holding unsigned long" (all-mep-core-isas (CDATA LONG)) h-gpr f-rn3) ! (dnop rn3ul "register 0-7 holding long" (all-mep-core-isas (CDATA ULONG)) h-gpr f-rn3) (dnop lp "link pointer" (all-mep-core-isas) h-csr 1) --- 623,641 ---- (dnop rma "register Rm holding pointer" (all-mep-core-isas (CDATA POINTER)) h-gpr f-rm) ! (dnop rnc "register Rn holding char" (all-mep-core-isas (CDATA LONG)) h-gpr f-rn) ! (dnop rnuc "register Rn holding unsigned char" (all-mep-core-isas (CDATA LONG)) h-gpr f-rn) ! (dnop rns "register Rn holding short" (all-mep-core-isas (CDATA LONG)) h-gpr f-rn) ! (dnop rnus "register Rn holding unsigned short" (all-mep-core-isas (CDATA LONG)) h-gpr f-rn) (dnop rnl "register Rn holding long" (all-mep-core-isas (CDATA LONG)) h-gpr f-rn) (dnop rnul "register Rn holding unsigned long" (all-mep-core-isas (CDATA ULONG)) h-gpr f-rn) ! (dnop rn3c "register 0-7 holding unsigned char" (all-mep-core-isas (CDATA LONG)) h-gpr f-rn3) ! (dnop rn3uc "register 0-7 holding byte" (all-mep-core-isas (CDATA LONG)) h-gpr f-rn3) ! (dnop rn3s "register 0-7 holding unsigned short" (all-mep-core-isas (CDATA LONG)) h-gpr f-rn3) ! (dnop rn3us "register 0-7 holding short" (all-mep-core-isas (CDATA LONG)) h-gpr f-rn3) ! (dnop rn3l "register 0-7 holding unsigned long" (all-mep-core-isas (CDATA LONG)) h-gpr f-rn3) ! (dnop rn3ul "register 0-7 holding long" (all-mep-core-isas (CDATA ULONG)) h-gpr f-rn3) (dnop lp "link pointer" (all-mep-core-isas) h-csr 1) --------------090509080202070904000006--