Re: GCC support for PowerPC VLE

2013-03-22 Thread David Brown
On 21/03/13 18:03, David Edelsohn wrote: > On Thu, Mar 21, 2013 at 4:58 AM, Will wrote: >> James Lemke codesourcery.com> writes: >> >>> I have completed the binutils submission for VLE. >>> I am working on the gcc submission. The test results are looking good >>> now. Patches will be posted ver

Re: GCC support for PowerPC VLE

2013-03-22 Thread Richard Biener
On Thu, Mar 21, 2013 at 6:03 PM, David Edelsohn wrote: > On Thu, Mar 21, 2013 at 4:58 AM, Will wrote: >> James Lemke codesourcery.com> writes: >> >>> I have completed the binutils submission for VLE. >>> I am working on the gcc submission. The test results are looking good >>> now. Patches wil

Re: GCC support for PowerPC VLE

2013-03-22 Thread David Edelsohn
On Fri, Mar 22, 2013 at 6:28 AM, David Brown wrote: > I use Freescale PPC devices with VLE, and I use Freescale's CodeWarrior > to do so. At the start of the project, I looked at CodeSourcery's > PPC-EABI tools (I have used CodeSourcery's gcc tools for other targets) > - but without VLE support,

Re: GCC support for PowerPC VLE

2013-03-22 Thread David Brown
On 22/03/13 16:18, David Edelsohn wrote: > On Fri, Mar 22, 2013 at 6:28 AM, David Brown wrote: > >> I use Freescale PPC devices with VLE, and I use Freescale's CodeWarrior >> to do so. At the start of the project, I looked at CodeSourcery's >> PPC-EABI tools (I have used CodeSourcery's gcc tools

Switch optimization idea

2013-03-22 Thread Steve Ellcey
I am looking at implementing a GCC optimization pass based on constant propagation into a switch statement. Given: if (expr) s = 1; codeX; (code that allows definition of s to propogate through) switch (s) {

Re: Switch optimization idea

2013-03-22 Thread Xinliang David Li
How about finding the single-entry/single exit region that dominates the switch and post-dominates the s assignment. You can then examine if s is modified in the region. David On Fri, Mar 22, 2013 at 10:17 AM, Steve Ellcey wrote: > I am looking at implementing a GCC optimization pass based on c

Re: Switch optimization idea

2013-03-22 Thread Andrew Pinski
On Fri, Mar 22, 2013 at 10:17 AM, Steve Ellcey wrote: > I am looking at implementing a GCC optimization pass based on constant > propagation into a switch statement. > > Given: > > if (expr) > s = 1; > codeX; (code that allows definition of s

Re: Switch optimization idea

2013-03-22 Thread Jeff Law
On 03/22/2013 11:17 AM, Steve Ellcey wrote: I am looking at implementing a GCC optimization pass based on constant propagation into a switch statement. Given: if (expr) s = 1; codeX; (code that allows definition of s to propogate through)

GCC 4.8.0 Released

2013-03-22 Thread Jakub Jelinek
Exactly one year after the last major GCC release has been announced, celebrating the 26th anniversary of the GNU Compiler Collection, the GCC development team announces a new major GCC release, 4.8.0. GCC 4.8.0 is a major release containing substantial new functionality not available in GCC 4.7.x

GCC 4.8.1 Status Report (2013-03-22)

2013-03-22 Thread Jakub Jelinek
Status == GCC 4.8.0 has been released, the branch is now open again under the usual release branch rules (regression fixes and documentation fixes only). The next release, 4.8.1, should be released in about two or three months from now, unless something very urgent forces us to release earlier

Re: Switch optimization idea

2013-03-22 Thread Steve Ellcey
On Fri, 2013-03-22 at 13:00 -0600, Jeff Law wrote: > As others have pointed out, this is jump threading. > > The reason you're not seeing jump threading in the CoreMark test is the > switch is inside a loop and threading a backedge is severely constrained. > > There's a BZ for this issue with a

Re: Switch optimization idea

2013-03-22 Thread Steve Ellcey
On Fri, 2013-03-22 at 13:00 -0600, Jeff Law wrote: > There's a BZ for this issue with a bit more state for this issue. > > jeff Found it. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54742 Steve Ellcey sell...@imgtec.com

gcc-4.6-20130322 is now available

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

gcc 4.8 and N3276

2013-03-22 Thread Joe Gottman
Does gcc 4.8 include the changes to decltype specified in N3276 (http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3276.pdf)? If not, can we expect these for 4.8.1? Thanks, Joe Gottman