This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Abt SIMD Emulation


Mohamed Shafi <shafitvm@yahoo.com> writes:

This question is more appropriate for the gcc-help mailing list than
for the gcc mailing list.

> For targets which doesn't have simd hardware support like fr30 ,  simd stuff is emulated?

Yes, if you use __attribute__ ((vector_size (NN))) for a target which
does not support vector registers of that size, gcc will emulate the
vector handling.

> Is there some flags/macros in gcc to indicate that?

To indicate what?

> How is it done in other targets which deosnt have the hardware support?

In the obvious tedious way: as a loop over the elements.

Ian


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]