Re: [x86-64 psABI]: Extend x86-64 psABI to support AVX-512

2013-08-02 Thread Kirill Yukhin
On 30 Jul 17:55, Kirill Yukhin wrote: > On Wed, Jul 24, 2013 at 08:25:14AM -1000, Richard Henderson wrote: > > On 07/24/2013 05:23 AM, Richard Biener wrote: > > > "H.J. Lu" wrote: > > > > > >> Hi, > > >> > > >> Here is a patch to extend x86-64 psABI to support AVX-512: > > > > > > Afaik avx 512

Re: whether DIE of a "static const int" member has attribute "DW_AT_const_value"

2013-08-02 Thread Richard Henderson
On 07/24/2013 05:11 AM, hex wrote: > I find a strange things: Whether DIE(Debug Information Entry) of a > "static const int" member in a class has the attribute > "DW_AT_const_value" depends on whether there is a virtual function > defined in the class. Is it a expected behavior for GCC? And the >

Re: AVR-gcc shift optimization

2013-08-02 Thread Oleg Endo
Hi, On Thu, 2013-08-01 at 21:23 -0400, Asm Twiddler wrote: > Hello all. > > The current implementation produces non-optimal code for large shifts > that aren't a multiple of eight when operating on long integers (4 > bytes). > All such shifts are broken down into a slow loop shift. > For example,

why cross out cout make result different?

2013-08-02 Thread eric lin
I have tried to copy QuickSort c++ programs: --- #include using namespace std; class Element { public: int getKey() const { return key;}; void setKey(int k) { key=k;}; private: int key; // other fields }; #define InterChange(list, i, j) t