Is there any c compiler on windows able to use 128 bit integers natively? On example, you can use gcc on linux, with __uint128_t... any other chance on windows? (It would be great if 128 bit worked on 32 bit computers as well! :D)

Matteo

link|improve this question

41% accept rate
1  
Can't you use MinGW? – myrkos Jun 20 '11 at 16:48
1  
I tried, but... looks like it doesn't recognize __uint128_t as a native type... – Matteo Monti Jun 20 '11 at 16:54
I can't get __int128 to work in MSVC for either x86 or x64: error C4235 not recognised on this architecture. – Rup Jun 20 '11 at 17:14
why are you wanting to do this? it won't be as optimal as natural integer sizes. Sounds like you want a basic bignum library. – IanNorton Jun 20 '11 at 19:31
feedback

2 Answers

You could try using SSE intrinsics built into Visual C++

http://msdn.microsoft.com/en-us/library/5eawz414%28v=VS.80%29.aspx (Look at the __m128 type).

link|improve this answer
feedback

In GCC you can try `__attribute__((mode(...))), see here and here, e.g.

typedef unsigned int myU128 __attribute__((mode(TI)));

The results depend on your platform, though.

link|improve this answer
That looked very good but.... "Unable to emulate TI" what does that mean? I've a i7 processor, 64 bit windows 7... what does this mean? Under linux 128 bit __uint128_t work perfectly, so... what does this mean? – Matteo Monti Jun 20 '11 at 17:34
@Matteo: Is your operating system 64bit, too? I'm not sure, the availability of the TI mode depends on the platform and it might just be that you don't have it... – Kerrek SB Jun 20 '11 at 17:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.