2021-02-22 09:32:17

by Andrew Pinski

[permalink] [raw]
Subject: Re: problems with memory allocation and the alignment check

On Mon, Feb 22, 2021 at 1:17 AM Michael J. Baars
<[email protected]> wrote:
>
> Hi,
>
> I just wrote this little program to demonstrate a possible flaw in both malloc and calloc.
>
> If I allocate a the simplest memory region from main(), one out of three optimization flags fail.
> If I allocate the same region from a function, three out of three optimization flags fail.
>
> Does someone know if this really is a flaw, and if so, is it a gcc or a kernel flaw?

There is no flaw. GCC (kernel, glibc) all assume unaligned accesses
on x86 will not cause an exception.

Thanks,
Andrew

>
> Regards,
> Mischa.


2021-02-22 10:29:15

by Michael J. Baars

[permalink] [raw]
Subject: Re: problems with memory allocation and the alignment check

On Mon, 2021-02-22 at 01:29 -0800, Andrew Pinski wrote:
> On Mon, Feb 22, 2021 at 1:17 AM Michael J. Baars
> <[email protected]> wrote:
> > Hi,
> >
> > I just wrote this little program to demonstrate a possible flaw in both malloc and calloc.
> >
> > If I allocate a the simplest memory region from main(), one out of three optimization flags fail.
> > If I allocate the same region from a function, three out of three optimization flags fail.
> >
> > Does someone know if this really is a flaw, and if so, is it a gcc or a kernel flaw?
>
> There is no flaw. GCC (kernel, glibc) all assume unaligned accesses
> on x86 will not cause an exception.

Is this just an assumption or more like a fact? I agree with you that byte aligned is more or less the same as unaligned.

>
> Thanks,
> Andrew
>
> > Regards,
> > Mischa.

2021-02-23 11:50:01

by David Laight

[permalink] [raw]
Subject: RE: problems with memory allocation and the alignment check

> > > I just wrote this little program to demonstrate a possible flaw in both malloc and calloc.
> > >
> > > If I allocate a the simplest memory region from main(), one out of three optimization flags fail.
> > > If I allocate the same region from a function, three out of three optimization flags fail.
> > >
> > > Does someone know if this really is a flaw, and if so, is it a gcc or a kernel flaw?
> >
> > There is no flaw. GCC (kernel, glibc) all assume unaligned accesses
> > on x86 will not cause an exception.
>
> Is this just an assumption or more like a fact? I agree with you that byte aligned is more or less the
> same as unaligned.

They require that such accesses don't cause an exception.

While the misaligned accesses are slightly slower (apart from locked accesses
that cross page boundaries) the cost of avoiding them is typically higher.

This is particularly true for functions like strlen() which are often
called for short strings.
Care does have to be taken to stop strlen() reading across a page boundary.

David

-
Registered Address Lakeside, Bramley Road, Mount Farm, Milton Keynes, MK1 1PT, UK
Registration No: 1397386 (Wales)