From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51874) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VCQug-00076t-Ns for qemu-devel@nongnu.org; Thu, 22 Aug 2013 05:10:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VCQub-0001cv-Cn for qemu-devel@nongnu.org; Thu, 22 Aug 2013 05:10:42 -0400 Received: from mx1.redhat.com ([209.132.183.28]:7530) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VCQua-0001ce-US for qemu-devel@nongnu.org; Thu, 22 Aug 2013 05:10:37 -0400 Message-ID: <5215D561.3050702@redhat.com> Date: Thu, 22 Aug 2013 11:09:53 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1377159632-7446-1-git-send-email-aik@ozlabs.ru> <1377159632-7446-2-git-send-email-aik@ozlabs.ru> In-Reply-To: <1377159632-7446-2-git-send-email-aik@ozlabs.ru> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 1/3] int128: add int128_exts64() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexey Kardashevskiy Cc: Alex Williamson , qemu-devel@nongnu.org Il 22/08/2013 10:20, Alexey Kardashevskiy ha scritto: > This adds macro to extend signed 64bit value to signed 128bit value. > > Signed-off-by: Alexey Kardashevskiy > --- > include/qemu/int128.h | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/include/qemu/int128.h b/include/qemu/int128.h > index 9ed47aa..987a1a9 100644 > --- a/include/qemu/int128.h > +++ b/include/qemu/int128.h > @@ -38,6 +38,11 @@ static inline Int128 int128_2_64(void) > return (Int128) { 0, 1 }; > } > > +static inline Int128 int128_exts64(int64_t a) > +{ > + return (Int128) { .lo = a, .hi = (a >> 63) ? -1 : 0 }; > +} The "? -1 : 0" is not necessary, but the compiler will remove it at -O1 or more (interestingly, or -O0 it will remove the shift and leave the conditional!). > static inline Int128 int128_and(Int128 a, Int128 b) > { > return (Int128) { a.lo & b.lo, a.hi & b.hi }; > Acked-by: Paolo Bonzini Paolo