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
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
>
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,
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