Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
298 views

How is the arm memory model different from ia64?

I have to deal with a lot of multithreaded programming at work. Specifically, I want to know how the ARM memory model differs from IA64. Both are very weak models, but are there any specific ...
5
votes
3answers
2k views

Differences between x86/x64/ia64 memory models on .NET

I'm looking for a reference on the differences between the memory models used by the .NET CLR/JIT on x86/x64/ia64. I know there's some differences between x86 and ia64 (instruction reordering, ...
4
votes
4answers
2k views

DDK/WDM developing problem … driver won't load on x64 windows platform

I am a beginner at DDK/WDM driver developing field. I have a task which involves porting a virtual device driver from x86 to x64 (intel). I got the source code, I modified it a bit and compiled it ...
4
votes
2answers
806 views

What 64bit target to choose when compiling with Visual Studio (vcvarsall.bat)?

The vcvarsall.bat that does setup de build environment let you choose between x86 | ia64 | amd64 | x86_amd64 | x86_ia64. First option is obvious for 32bit, but the question is: what would be the ...
4
votes
6answers
532 views

Should my C++ program support IA64 or only x64?

Should my program support IA64, or should it only support x64? I haven't been able to easily find IA64 computers myself. Is IA64 dead? MS seems to have a wide support for IA64, but it took me a ...
0
votes
1answer
42 views

Assembly code meaning in gdb

Good day! I have a core file, and I disassembled (using gdb) the method that crashed and I was told that the the value assigned to r44 below causes the crash. I am not well verse with assembly so I ...
0
votes
1answer
127 views

crash on 64bt platform

I think I found a simliar thread here, but I could not understand much about it unfortunately as this is related to c++. My prob also seems to occure while I am trying to increment something. ...
0
votes
2answers
132 views

what is the g++ option to build ia64 binaries

what is the g++ option to build ia64 binaries
0
votes
7answers
533 views

x64 compatible C source

I think I know what #ifdefs I need to use to be x86-32 and x86-64 compatible on both msvc and gcc, see below. Is this complete for those platforms? #if defined(_MSC_VER) # if defined(_M_IA64) || ...