Intel® ISA Extensions
Use hardware-based isolation and memory encryption to provide more code protection in your solutions.
Announcements
The Intel sign-in experience has changed to support enhanced security controls. If you sign in, click here for more information.
1078 Discussions

Latest ASM compiler other than Intel C and C++ Compilers

Uday_Krishna__G_
254 Views

Hi,

Am trying to code my application in Assembly to run on x86. Please suggest me the suitable compiler which will support all SSE4.2 Assembly instructions(other than Intel Compiler). If any links which help in execution and procedure will be helpful. 

0 Kudos
1 Solution
Bernard
Black Belt
254 Views

If you are developing on Win platform you can use MASM32.Please bear in mind that default assembler ml.exe is outdated so you need to copy from VS directory a newer version of that compiler.

View solution in original post

6 Replies
Bernard
Black Belt
255 Views

If you are developing on Win platform you can use MASM32.Please bear in mind that default assembler ml.exe is outdated so you need to copy from VS directory a newer version of that compiler.

Bernard
Black Belt
254 Views

@Uday

Masm forum linkhttp://www.masm32.com/board/index.php

SergeyKostrov
Valued Contributor II
254 Views
>>...Am trying to code my application in Assembly to run on x86. Please suggest me the suitable compiler which will support all SSE4.2... Please also consider GCC ( versions from 3.4.2 up to a latest one 4.8.2 ). However, you didn't specify what assembler-style you're using, that is, Microsoft-Intel-like or AT&T-like ( used by GCC ). In case of GCC your codes will be portable on all platforms where GCC is ported.
TimP
Black Belt
254 Views

if you would use sse intrinsics you would have more options including visual studio and, if you were willing to use intel, automatic translation to avx128.

Bernard
Black Belt
254 Views

@Uday

You can also try NASM or YASM assemblers.

bronxzv
New Contributor II
254 Views

Tim Prince wrote:
if you would use sse intrinsics you would have more options including visual studio and, if you were willing to use intel, automatic translation to avx128.

and AVX2 FMA from a simple recompilation of code with _mm_mul_ps / _mm_add_ps intrinsics

Reply