From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32894 invoked by alias); 17 Mar 2017 05:58:40 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 32592 invoked by uid 89); 17 Mar 2017 05:58:06 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.8 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=his X-HELO: mail-pg0-f53.google.com Received: from mail-pg0-f53.google.com (HELO mail-pg0-f53.google.com) (74.125.83.53) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 17 Mar 2017 05:58:04 +0000 Received: by mail-pg0-f53.google.com with SMTP id 21so2802415pgg.1 for ; Thu, 16 Mar 2017 22:58:05 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=ONQsVH/j4CZtuFdoFuRFWh6k331g5HRJRZk8usVSEc0=; b=CFa3Eiv+vjNmKIFOIhIcL/R2y4UmGHWXsM9XdGSbgXzECDfoyvswPecbr5Gy0uK5B4 7rO/jg6WqguF+l9e6lZCyoYqA+6OpH09pxst/A95FnMY86kumTY7hNArhbIvLGSvlXC2 /DYnl7tP2i4VmKME8ebzXJSxUWXaFURkeniwHgsAqs1NONudjMCROrpQrB8Pdk6+KxE9 q+VVHZt4w7olfYGIbB9NtKPtRvJmqBQ40ZIzfAbRScLqA5K+8prijRQu6GQ7A59eqHBl JB87tNhFXAulYk8NGuS+Cb0CU27ftP+XeohZafQRlwyjBPXYKN6kP0yMbnpQ39+vRhki SCRg== X-Gm-Message-State: AFeK/H2jMDnr3Xo7gShTAxJ5N0j24RXsrQHJc46sXFxX5gld2fO0DrlODQ/6LpG0cEpW9g== X-Received: by 10.98.36.81 with SMTP id r78mr14617207pfj.178.1489730283688; Thu, 16 Mar 2017 22:58:03 -0700 (PDT) Received: from localhost (z17.124-44-180.ppp.wakwak.ne.jp. [124.44.180.17]) by smtp.gmail.com with ESMTPSA id r89sm13953383pfe.6.2017.03.16.22.58.02 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Thu, 16 Mar 2017 22:58:03 -0700 (PDT) Date: Fri, 17 Mar 2017 05:58:00 -0000 From: Stafford Horne To: gdb-patches@sourceware.org Cc: openrisc@lists.librecores.org Subject: Re: [PATCH v3 0/5] sim port for OpenRISC Message-ID: <20170317055801.GN2418@lianli.shorne-pla.net> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.8.0 (2017-02-23) X-IsSubscribed: yes X-SW-Source: 2017-03/txt/msg00306.txt.bz2 Note, Some of these patches for generated files are too big for the mail servers, if you want to see them all, please see: The following changes since commit b4fcfd3b4d173129207f804f5eee4557c788d66b: Automatic date update in version.in (2017-03-17 00:00:34 +0000) are available in the git repository at: https://github.com/stffrdhrn/binutils-gdb.git tags/for-upstream for you to fetch changes up to 26010e6737eddb5704d87494930f09afebc517ab: sim: testsuite: add testsuite for or1k sim (2017-03-17 14:22:43 +0900) On Fri, Mar 17, 2017 at 02:39:06PM +0900, Stafford Horne wrote: > Hello Again, > > Please find attached the sim patches that allow to get a basic OpenRISC > system running. This was used to verify the OpenRISC gdb port. > > The main author is Peter Gavin who should have his FSF copyright in place. > > Request for comments on: > - The testcase has a few tests commented out. I do not plan to fix now, > but hopefully be addressed after upstreaming. > - Openrisc supports a l.rem instruction which has been implemented here > using the drem() function from libmath. It seems no other functions use > libmath now, I hope this is ok. > > Sim dejagnu tests were added specifically for openrisc and used to test > this. Please see the details of running the testsuite for sim below: > > === sim Summary === > > # of expected passes 17 > /home/shorne/work/openrisc/build-gdb/sim/or1k/run 0.5 > > Thanks, > -Stafford > > Changes since v2 > * Removed 64-bit implementation (reduced files) > * Removed cgen suffix patch > * Removed different builds for linux > * Removed unused macros > * Fixed gnu style issues pointed out by Mike > * Fixed copyrights (not Cygnus, added to each file) > > Changes since v1 > * Squashed sim patches into single sim patch > * Put Generated files in separate patch > * I have my sim/gdb copyright assignment complete > > > Peter Gavin (3): > sim: cgen: add rem (remainder) function (needed for OR1K lf.rem.[sd]) > sim: cgen: add mul-o1flag, mul-o2flag RTL functions to CGEN > sim: testsuite: add testsuite for or1k sim > > Stafford Horne (2): > sim: or1k: add or1k target to sim > sim: or1k: Add generated files. >