From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48873) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VU08g-0007Tq-TH for qemu-devel@nongnu.org; Wed, 09 Oct 2013 16:13:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VU08Y-0002bw-8L for qemu-devel@nongnu.org; Wed, 09 Oct 2013 16:13:46 -0400 Sender: Richard Henderson Message-ID: <5255B8D9.4040608@twiddle.net> Date: Wed, 09 Oct 2013 13:13:13 -0700 From: Richard Henderson MIME-Version: 1.0 References: <524EBE04.8050207@gmail.com> <524EC1A7.7070304@gmail.com> In-Reply-To: <524EC1A7.7070304@gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 11/13] Add xxsel List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Tom Musta Cc: qemu-ppc@nongnu.org, qemu-devel@nongnu.org On 10/04/2013 06:24 AM, Tom Musta wrote: > + tcg_gen_and_i64(b, b, c); > + tcg_gen_not_i64(c, c); > + tcg_gen_and_i64(a, a, c); tcg_gen_andc_i64. > +#define GEN_XXSEL() \ > +GEN_XXSEL_ROW(0x00) \ > +GEN_XXSEL_ROW(0x01) \ Why bother with defining GEN_XXSEL when its only used once? Surely just put the rows there. OTOH, this does suggest that we could do with a better way to decode the instructions, because this is ugly... r~