From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.tuxdriver.com (charlotte.tuxdriver.com [70.61.120.58]) by dpdk.org (Postfix) with ESMTP id CF4A7592E for ; Fri, 25 Jul 2014 04:19:43 +0200 (CEST) Received: from cpe-098-026-066-094.nc.res.rr.com ([98.26.66.94] helo=localhost) by smtp.tuxdriver.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.63) (envelope-from ) id 1XAV7y-00018z-Pz; Thu, 24 Jul 2014 22:21:11 -0400 Date: Thu, 24 Jul 2014 22:20:57 -0400 From: Neil Horman To: "Venkatesan, Venky" Message-ID: <20140725022057.GA8231@localhost.localdomain> References: <1406226211-1364-1-git-send-email-nhorman@tuxdriver.com> <1FD9B82B8BF2CF418D9A1000154491D97414563E@ORSMSX102.amr.corp.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1FD9B82B8BF2CF418D9A1000154491D97414563E@ORSMSX102.amr.corp.intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-Spam-Score: -2.9 (--) X-Spam-Status: No Cc: "dev@dpdk.org" Subject: Re: [dpdk-dev] [PATCH] ixgbe: convert sse intrinsics to use __builtin variants X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Jul 2014 02:19:44 -0000 On Thu, Jul 24, 2014 at 08:41:33PM +0000, Venkatesan, Venky wrote: > Neil, > > Nice patch! One question - what gcc versions did you try this out on? We'll round out with checking the other versions. > Thanks! This was built using gcc 4.8.3. I had hoped to do something simmilar for the ACL library, but the sse instructions used there only emitted code when sse was enabled (IOW there was no genereic non-sse variant)? Neil