[Bug c++/56127] New: Incorrect code with -O2

2013-01-28 Thread trosenband at gmail dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56127



 Bug #: 56127

   Summary: Incorrect code with -O2

Classification: Unclassified

   Product: gcc

   Version: 4.6.3

Status: UNCONFIRMED

  Severity: normal

  Priority: P3

 Component: c++

AssignedTo: unassig...@gcc.gnu.org

ReportedBy: trosenb...@gmail.com





Created attachment 29290

  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=29290

main.ii



It seems like GCC 4.6.3 generates incorrect assembly for ARM Cortex-A9 from the

following C++ code when invoked with -O1, -O2 and -O3

The code just increments two variables 100 times and divides them.



Correct output is:

average = 1.000

PMTsum = 100  nValues = 100



but -O1 gives this:

average = 0.000

PMTsum = 100  nValues = 100



and -O2 and -O3 yield this:

average =   inf

PMTsum = 100  nValues = 100



This 3-file C++ project is the minimal configuration that shows this behavior. 

With everything in one file the problem vanishes.



Below the C++ code is the assembly language output, marked with *** where I

think the error may be (but I'm unfamiliar with assembly language).



Thanks to anyone who looks into this, and to everyone who has been developing

GCC!



//exp_results.h



class exp_results

{

public:

exp_results() :

PMTsum(0),

nValues(0)

{

}



unsigned increment();



double get_average()

{

if (nValues)

return ((double)PMTsum) / ((double)nValues);

else

return 0;

}



unsigned PMTsum;

unsigned nValues;

};





//exp_results.cpp



#include "exp_results.h"





unsigned exp_results::increment()

{

PMTsum++;

nValues++;



return 1;

}



//main.cc



#include 

#include "exp_results.h"



int main()

{

exp_results r;



for(unsigned i=0; i< 100; i++)

r.increment();



printf("average = %9.3f\n", r.get_average());

printf("PMTsum = %u  nValues = %u\n", r.PMTsum, r.nValues);

return 0;

}





// main.s



.cpu cortex-a9

.eabi_attribute 27, 3

.fpu neon-fp16

.eabi_attribute 20, 1

.eabi_attribute 21, 1

.eabi_attribute 23, 3

.eabi_attribute 24, 1

.eabi_attribute 25, 1

.eabi_attribute 26, 1

.eabi_attribute 30, 2

.eabi_attribute 34, 1

.eabi_attribute 18, 4

.file"main.cc"

@ GNU C++ (Sourcery CodeBench Lite 2012.03-83) version 4.6.3 (arm-xilinx-eabi)

@compiled by GNU C version 4.3.2, GMP version 4.3.2, MPFR version 3.0.1-p4,

MPC version 0.9

@ GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072

@ options passed:  -fpreprocessed main.ii -mcpu=cortex-a9

@ -mfloat-abi=softfp -mfpu=neon-fp16 -auxbase-strip src/main.o -O2 -Wall

@ -fmessage-length=0 -fverbose-asm -fremove-local-statics

@ options enabled:  -fauto-inc-dec -fbranch-count-reg -fcaller-saves

@ -fcombine-stack-adjustments -fcommon -fcompare-elim -fcprop-registers

@ -fcrossjumping -fcse-follow-jumps -fdefer-pop

@ -fdelete-null-pointer-checks -fdevirtualize -fdwarf2-cfi-asm

@ -fearly-inlining -feliminate-unused-debug-types -fexceptions

@ -fexpensive-optimizations -fextension-elimination -fforward-propagate

@ -ffunction-cse -fgcse -fgcse-lm -fguess-branch-probability -fident

@ -fif-conversion -fif-conversion2 -findirect-inlining -finline

@ -finline-functions-called-once -finline-small-functions -fipa-cp

@ -fipa-profile -fipa-pure-const -fipa-reference -fipa-sra

@ -fira-share-save-slots -fira-share-spill-slots -fivopts

@ -fkeep-static-consts -fleading-underscore -fmath-errno -fmerge-constants

@ -fmerge-debug-strings -fmove-loop-invariants -fomit-frame-pointer

@ -foptimize-register-move -foptimize-sibling-calls -fpartial-inlining

@ -fpeephole -fpeephole2 -fprefetch-loop-arrays -fpromote-loop-indices

@ -freg-struct-return -fregmove -frename-registers -freorder-blocks

@ -freorder-functions -frerun-cse-after-loop

@ -fsched-critical-path-heuristic -fsched-dep-count-heuristic

@ -fsched-group-heuristic -fsched-interblock -fsched-last-insn-heuristic

@ -fsched-rank-heuristic -fsched-spec -fsched-spec-insn-heuristic

@ -fsched-stalled-insns-dep -fschedule-insns -fschedule-insns2

@ -fsection-anchors -fshow-column -fsigned-zeros -fsplit-ivs-in-unroller

@ -fsplit-wide-types -fstrict-aliasing -fstrict-overflow

@ -fstrict-volatile-bitfields -fthread-jumps -ftoplevel-reorder

@ -ftrapping-math -ftree-bit-ccp -ftree-builtin-call-dce -ftree-ccp

@ -ftree-ch -ftree-copy-prop -ftree-copyrename -ftree-cselim -ftree-dce

@ -ftree-dominator-opts -ftree-dse -ftree-forwprop -ftree-fre

@ -ftree-if-to-switch-conversion -ftree-loop-if-convert -ftree-loop-im

@ -ftree-loop-ivcanon -ftree-loop-optimize -ftree-parallelize-loops=

@ -ftree-phiprop -ftree-pre -ftree-pta -ftree-reassoc -ftree-scev-cprop

@ -ftree-sink -ftree-slp-vectorize -ftree-sra -ftree-switch-conversion

@ -ftree-ter -ftree-vect-loop-version -ftree-vrp -funit-at-a-time

@ -funroll-l

[Bug c++/56127] Incorrect code with -O1, -O2, -O3

2013-01-28 Thread trosenband at gmail dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56127



--- Comment #1 from Till  2013-01-28 10:20:48 UTC 
---

Created attachment 29291

  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=29291

exp_results.ii


[Bug target/56127] Incorrect code with -O1, -O2, -O3

2013-01-28 Thread trosenband at gmail dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56127



--- Comment #3 from Till  2013-01-28 11:20:46 UTC 
---

Thank you for checking.  You are right, this seems to be a version-specific

problem for Sourcery CodeBench.  I don't see an obvious bug in the assembly

code produce by these compilers:



@ GNU C++ (Ubuntu/Linaro 4.6.3-8ubuntu1) version 4.6.3 20120624 (prerelease)

(arm-linux-gnueabi)



@ GNU C++ (Ubuntu/Linaro 4.7.2-1ubuntu1) version 4.7.2 (arm-linux-gnueabi)


[Bug target/56127] Incorrect code with -O1, -O2, -O3

2013-01-28 Thread trosenband at gmail dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56127



Till  changed:



   What|Removed |Added



 Status|UNCONFIRMED |RESOLVED

 Resolution||INVALID



--- Comment #4 from Till  2013-01-28 11:39:58 UTC 
---

Can't reproduce problem with non-vendor-modified GCC.