gcc-6-20160609 is now available

2016-06-09 Thread gccadmin
Snapshot gcc-6-20160609 is now available on ftp://gcc.gnu.org/pub/gcc/snapshots/6-20160609/ and on various mirrors, see http://gcc.gnu.org/mirrors.html for details. This snapshot has been generated from the GCC 6 SVN branch with the following options: svn://gcc.gnu.org/svn/gcc/branches/gcc-6

Re: [Patch 0,1a] Improving effectiveness and generality of autovectorization using unified representation.

2016-06-09 Thread Richard Biener
On Thu, Jun 9, 2016 at 10:54 AM, Richard Biener wrote: > On Tue, Jun 7, 2016 at 3:59 PM, Sameera Deshpande > wrote: >> Hi Richard, >> >> This is with reference to our discussion at GNU Tools Cauldron 2015 >> regarding my talk titled "Improving the effectiveness and generality of GCC >> auto-vec

How to get the offset of a local variable relative to the stack frame address

2016-06-09 Thread gkour...@freemail.gr
The offset of a local variable relative to the frame address in C or C++ may be found by||: || |(char*)&a -(char*)__builtin_frame_address(0)| || |||A more straightforward builtin should be already available by gcc. Which is it ?| || |p.s. the previous code adds the offset to bp and afterwards s

Re: [Patch 0,1a] Improving effectiveness and generality of autovectorization using unified representation.

2016-06-09 Thread Richard Biener
On Tue, Jun 7, 2016 at 3:59 PM, Sameera Deshpande wrote: > Hi Richard, > > This is with reference to our discussion at GNU Tools Cauldron 2015 regarding > my talk titled "Improving the effectiveness and generality of GCC > auto-vectorization." Further to our prototype implementation of the conce

Re: [gimplefe] Parsing __GIMPLE function body

2016-06-09 Thread Richard Biener
On Wed, Jun 8, 2016 at 10:57 PM, Prathamesh Kulkarni wrote: > On 6 June 2016 at 15:49, Richard Biener wrote: >> On Mon, Jun 6, 2016 at 11:27 AM, Prasad Ghangal >> wrote: >>> Hi, >>> >>> This patch parses simple assignment statement >>> >>> int a; >>> void __GIMPLE foo() >>> { >>> a = 1; >>> }