From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25688 invoked by alias); 15 Feb 2017 18:39:36 -0000 Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org Received: (qmail 25640 invoked by uid 89); 15 Feb 2017 18:39:35 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=H*Ad:U*andrew, Hx-languages-length:1336, H*RU:74.125.83.66, H*i:sk:91889a4 X-HELO: mail-pg0-f66.google.com Received: from mail-pg0-f66.google.com (HELO mail-pg0-f66.google.com) (74.125.83.66) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 15 Feb 2017 18:39:25 +0000 Received: by mail-pg0-f66.google.com with SMTP id 75so11785185pgf.3 for ; Wed, 15 Feb 2017 10:39:25 -0800 (PST) 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:cc:cc:subject:in-reply-to :message-id:mime-version; bh=0yKQ3FthYjCQ5U/9rd1Y/RX21sBcF3197kb8mMsoLy4=; b=Lv5iVtbf/3acJgd+BJ6bLaJfx68OZBEeDCxhk+vL7xbPC+zhnismmNQYKjDWprv6ir oD3rCC96NtOlop5SCviIsjxJNRPWaa4PxpR6SC6VgSdEfdptMoqUOKeLE3grzrkihcrb 5l9weDNaJpoUS5EM/rCzJ25SmK9daIH0PJOw+MMs9c1hgfHNUdG2u1GRtmx4mUrGBqK+ /QOci/ewgyYMt1l/NbZzlsDJhEqezqVo1M2DiX0xjuZqVGByRGRvCXEZ0LkpleKy1tiN 7htZLRIiRyZWZlGnEsLxsxnpztMLqgv/cBUxbXs2J5eQVxQWMPnhcke5a1ENNDB7Fr0f bfKw== X-Gm-Message-State: AMke39kTgbFd8kXq/J5owX2g9sr5qQrZXHVS8IqCbxSEY9ZIHYeKEArf6C6o/22MX0VDZw== X-Received: by 10.98.65.148 with SMTP id g20mr39810812pfd.44.1487183964170; Wed, 15 Feb 2017 10:39:24 -0800 (PST) Received: from localhost (c-73-222-189-110.hsd1.ca.comcast.net. [73.222.189.110]) by smtp.gmail.com with ESMTPSA id i82sm8896355pfk.52.2017.02.15.10.39.23 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 15 Feb 2017 10:39:23 -0800 (PST) Date: Wed, 15 Feb 2017 18:39:00 -0000 X-Google-Original-Date: Wed, 15 Feb 2017 10:38:53 PST (-0800) From: Palmer Dabbelt To: nickc@redhat.com CC: binutils@sourceware.org CC: Tristan Gingold CC: Andrew Waterman Subject: Re: [PATCH] Add SFENCE.VMA instruction In-Reply-To: <91889a41-e953-e08f-f04c-30a3197819c8@redhat.com> Message-ID: Mime-Version: 1.0 (MHng) X-IsSubscribed: yes X-SW-Source: 2017-02/txt/msg00129.txt.bz2 On Wed, 15 Feb 2017 03:33:40 PST (-0800), nickc@redhat.com wrote: > Hi Palmer, > >> include/ChangeLog: >> 2017-02-14 Andrew Waterman >> >> * opcode/riscv-opc.h (MATCH_SFENCE_VMA): New define. >> (MASK_SFENCE_VMA): Likewise. >> (sfence_vma): Declare instruction. >> >> opcodes/ChangeLog: >> 2017-02-14 Andrew Waterman >> >> * riscv-opc.c (riscv_opcodes): Add sfence.vma instruction and >> pseudoinstructions. > > OK for trunk. Thanks! >> diff --git a/include/ChangeLog b/include/ChangeLog >> index 6a61d61..df14aca 100644 >> --- a/include/ChangeLog >> +++ b/include/ChangeLog >> @@ -1,3 +1,9 @@ >> +2017-02-14 Andrew Waterman >> + >> + * opcode/riscv-opc.h (MATCH_SFENCE_VMA): New define. >> + (MASK_SFENCE_VMA): Likewise. >> + (sfence_vma): Declare instruction. >> + > > Note - it is customary to include ChangeLog entries as plain text rather > than context diffs. This is because the changelogs change so rapidly that > it is often not possible to apply a patch cleanly if they contain changelog > diffs. I've been using "git-merge-changelog" to merge my ChangeLog entries and haven't had a merge conflict yet. If you'd like I can drop them from the mailing list posts, but it's slightly easier for me to keep everything together.