How to use AVX/pclmulqdq on Mac OS X
Asked Answered
C

5

23

I am trying to compile a program that uses the pclmulqdq instruction present in new Intel processors. I've installed GCC 4.6 using macports but when I compile my program (which uses the intrinsic _mm_clmulepi64_si128), I get

/var/folders/ps/sfjmtgx5771_qbqnh4c9xclr0000gn/T//ccEAWWhd.s:16:no such
instruction: `pclmulqdq $0, %xmm0,%xmm1'

It seems that GCC is able to generate the correct assembly code from the instrinsic, but the assembler does not recognize the instruction.

I've installed binutils using macports, but the problem persists. How do I know which assembler gcc is using? The XCode assembler probably does not support it, but the binutils assembler should.

Campos answered 23/3, 2012 at 13:40 Comment(3)
If you have Xcode 4 then you probably need to use clang rather than old skool gcc - see this question: #5257875Gearhart
Why did this get a downvote? It's a perfectly valid question.Kohinoor
void-pointer - some folks on stack overflow are idiots. Don't worry about them. And they hunt in packs, so as soon as one does it, others will follow. Check this one out for a laugh (I still chuckle when I read his action and reasoning): #19017835.Pettway
W
24

A simpler solution that fixed this problem for me was adding -Wa,-q to the compiler flags. From the man pages for as (version 1.38):

-q

     Use the clang(1) integrated assembler instead of the GNU based system assembler.

The -Wa part passes it from the compiler driver to the assembler, much like -Wl passes arguments to the linker.

Wulfenite answered 13/10, 2013 at 6:40 Comment(2)
For anyone stumbling on this again after upgrading to 10.9 and using brew install gcc49, this is the way to go. Note that the CCFLAG is exactly "-Wa,-q", where -Wa passes flags to the assembler and -q is the relevant flag to make it play nice on Mavericks.Worcestershire
It does not work with -flto. Without -flto it works fine.Pleinair
C
13

The GNU assembler (GAS) is not supported in Mac OS X.

In order to use AVX, I had to:

  • Install GCC using MacPorts;
  • Replace the native OS X assembler (/usr/bin/as) by a script which calls the clang assembler.
  • Compile the program with the installed GCC (e.g. gcc-mp-4.7)

The strange thing is that while the clang assembler supports AVX, the clang compiler does not recognize the AVX instrinsics, forcing the ugly workaround above.

Campos answered 13/4, 2012 at 20:31 Comment(6)
This worked for me on some programs, but on others I get: <code>error: invalid instruction mnemonic 'vcvttss2siq</code> type of errorsKachine
@mangledorf I had the same problem; it went away after I upgraded clang.Seemly
The link to above seems broken at present. The script is available here.Bobbinet
@AndersSjögren Thank you, you just saved me here. I just edited the answer to include the updated link.Kohinoor
I wonder, according to the manpage for as, it seems that just adding the '-q' flag will do the same thing. So why not make a script that just has '/usr/bin/as -q $@' in its body (without the single-quotes), instead of actually overwriting /usr/bin/as and using clang directly?Irrupt
@Campos - OS X comes with GNU's AS version 1.38: as -version results in Apple Inc version cctools-855, GNU assembler version 1.38. In practice, its probably more than 1.38 due to back-patching. The problem is, GAS is 15 years or so before SSE3, SSE4, AVX and friends.Pettway
N
4

The built in version of as is outdated. (In OS X 10.8.3)

/usr/libexec/as/x86_64/as -v

Apple Inc version cctools-839, GNU assembler version 1.38

There does not seem to exist a version of gas for OS X. (See: Installing GNU Assembler in OSX)

Using the clang assembler via a script hack (as pointed out by Conrado PLG) is one workaround. However, it does require administrator privileges and overwrites OS X-bundled executables, causing a risk of it being overwritten by a new (yet possibly outdated) version of as bundled with a future version of OS X.

Is there then a better workaround?

As noted on Why does cross gcc invoke native 'as'? it seems to be possible to specify which "as"-executable and flags to use (using "-specs=..."). A cleaner workaround to the problem seems to be to pass the correct "-specs" flags to invoke the clang assembler. This does not require admin privileges and does not risk being broken by an OS X update. The exact details of how to perform this remains to be found out (anyone?).

If this workaround becomes trouble-free and transparent enough, it may be warranted to use those settings as a default (or at least variant) for the macport gcc (so that it supports "-march=native" and the like). There is such as configure.args setting ("--with-as=${prefix}/bin/as", as seen in https://trac.macports.org/browser/trunk/dports/lang/gcc48/Portfile ), which could be replaced.

Nina answered 13/5, 2013 at 18:53 Comment(0)
K
1

Just use

as --version

AVX appeared around version 2.18.50 in gas/binutils.

Kendricks answered 23/3, 2012 at 15:23 Comment(2)
where is the binutils as of gas installed (using macports)?Dryfoos
@Dryfoos - AS and LD are not installed as part of Binutils. See Where is AS located after Binutils is installed? on the MacPorts mailing list and Please enable AS and LD in configure.ac for OS X on the Binutils bug tracker.Pettway
S
1

It appears that I fixed my issue by using the gcc / asm syntax where asm{} function is passed a string consisting of assembler statements surrounded by quotes and separated by a backslash and newline or backslash and quoted string containing another assembler statement.

https://www.ibiblio.org/gferg/ldp/GCC-Inline-Assembly-HOWTO.html#s3

Semipro answered 19/11, 2015 at 2:54 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.