Tagged Questions
x86-64 is a 64 bit extension to the Intel x86 architecture
58
votes
6answers
43k views
Targeting both 32bit and 64bit with Visual Studio in same solution/project
Greetings.
I have a little dilemma on how to set up my visual studio builds for multi-targeting.
Background: c# .NET v2.0 with p/invoking into 3rd party 32 bit DLL's, SQL compact v3.5 SP1, with a ...
55
votes
4answers
16k views
How to determine if a .NET assembly was built for x86 or x64?
I've got an arbitrary list of .NET assemblies.
I need to programmatically check if each DLL was built for x86. (As opposed to x64 or Any CPU.) Is this possible?
40
votes
10answers
2k views
Why is x86 ugly? aka Why is x86 considered inferior when compared to others?
Recently I've been reading some SO archives and encountered statements against x86 architecture.
Why do we need different CPU architecture for server & mini/mainframe & mixed-core? says "PC ...
28
votes
19answers
4k views
Porting 32 bit C++ code to 64 bit - is it worth it? Why?
I am aware of some the obvious gains of the x64 architecture (higher addressable RAM addresses, etc)... but:
What if my program has no real need to run in native 64 bit mode. Should I port it ...
22
votes
7answers
13k views
How to find if native dll is compiled as x64 or x86?
I want to if native assembly is complied as x64 or x86 from a managed code application (c#).
I think it must somewhere in the PE header since the OS loader needs to know this info
but I couldn't find ...
20
votes
8answers
6k views
Floating point vs integer calculations on modern hardware
I am doing some performance critical work in C++, and we are currently using integer calculations for problems that are inherently floating point because "its faster". This causes a whole lot of ...
20
votes
4answers
2k views
Assembly - 32 bit vs 64 bit…?
I'm really wanting to learn assembly. I'm pretty good at c/c++, but want a better understanding of what's going on at a lower level.
I realize that asembly related questions have been asked before, ...
17
votes
3answers
17k views
Can I load a 32 bit DLL into a 64 bit process on Windows?
I recently upgraded a c# windows service to run as a 64 bit .net process. Normally, this would be trivial, but the system makes use of a 32-bit DLL written in C++. It is not an option to convert this ...
15
votes
5answers
6k views
Best resources for learning x86_64 assembly?
I'm currently teaching myself x86_64 assembly, mostly via AMD's ABI. There's tons of great resources out there for learning x86, but I'm finding that the 64 bit arena is pretty sparse.
Anyone have ...
14
votes
2answers
13k views
NUnit “missing” GPSVC.DLL on Windows 7/64
I recently upgraded from Vista/32 to Win7/64. On my old machine, everything was working fine.
Unfortunately, on my new machine NUnit won't load my unit tests, with the error message ...
14
votes
6answers
7k views
Use 32bit “Program Files” directory in msbuild
In 64 bit versions of windows, 32 bit software is installed in "c:\program files (x86)". This means you cannot use $(programfiles) to get the path to (32 bit) software. So I need a $(ProgramFiles32) ...
13
votes
3answers
2k views
How to late bind 32bit/64 bit libs at runtime
I've got a problem similar to,but subtly different from, that described here (Loading assemblies and their dependencies).
I have a C++ DLL for 3D rendering that is what we sell to customers. For .NET ...
12
votes
1answer
640 views
What does “rep; nop;” mean in x86 assembly?
What does rep; nop mean?
Is it the same as pause instruction?
Is it the same as rep nop (without the semi-colon)?
What's the difference to the simple nop instruction?
Does it behave differently on ...
12
votes
2answers
6k views
System.BadImageFormatException “invalid format” when trying to install service with installutil.exe
I am trying to install a Windows service using InstallUtil.exe and am getting the error message
System.BadImageFormatException - invalid format
What gives?
11
votes
3answers
877 views
Why does Windows64 use a different calling convention from all other OSes on x86-64?
AMD has an ABI specification that describes the calling convention to use on x86-64. All OSes follow it, except for Windows which has it's own x86-64 calling convention. Why?
Does anyone know the ...
11
votes
2answers
2k views
Can an x64 application use x86 assemblies - and vice versa?
My application is built as a x64 application. After moving to VS2010 I got some problems which seems to be related to some x64/x86 mismatch in referenced dlls. Now I'm moving to target .NET4, and I ...
11
votes
5answers
723 views
Is it possible to vectorize myNum += a[b[i]] * c[i]; on x86_64?
What intrinsics would I use to vectorize the following(if it's even possible to vectorize) on the x86_64?
double myNum = 0;
for(int i=0;i<n;i++){
myNum += a[b[i]] * c[i]; //b[i] = int, a[b[i]] ...
11
votes
9answers
8k views
Converting 32-bit Application Into 64-bit Application in C
I am presently working on converting a 32bits application into a 64bits application in C. This application is currently working on x86 architecture (Windows, osx, Unix, Linux). So, before starting ...
10
votes
3answers
210 views
What are the CPU-internal characteristics of CAS collision?
I'm trying to understand the low-level mechanics of CAS on x86/x64 and I'd really appreciate some help/insight.
The reason I've been thinking about this is that I'm trying to reason about exponential ...
10
votes
1answer
286 views
Does the REX.B override work with the MOVSS instruction?
I'm generating the following instruction for 64 bit x86:
41 F3 0F 10 46 10 movss XMM0,014h[R14]
Unfortunately, it seg faults on that line. gdb disassembles it as:
0x0000000000402054 ...
10
votes
2answers
2k views
Running 32 bit assembly code on a 64 bit Linux & 64 bit Processor : Explain the anomaly
I'm in an interesting problem.I forgot I'm using 64bit machine & OS and wrote a 32 bit assembly code. I don't know how to write 64 bit code.
This is the x86 32-bit assembly code for Gnu Assembler ...
10
votes
5answers
1k views
How does an OS affect how assembly code runs?
I'm hoping to learn assembly language for x86. I'm on a Mac, and I'm assuming most x86 tutorials/books use code that's meant for Windows.
How does the OS that code is run on affect what the code ...
9
votes
3answers
759 views
Difference in position-independent code: x86 vs x86-64
I was recently building a certain shared library (ELF) targeting x86-64 architecture, like this:
g++ -o binary.so -shared --no-undefined ... -lfoo -lbar
This failed with the following error:
...
9
votes
3answers
454 views
Faster math library than glibc on x86_64/linux?
Is there a drop-in replacement to glibc's libm (and headers?) for x86_64-linux that is faster?
9
votes
3answers
1k views
How to get `gcc` to generate `bts` instruction for x86-64 from standard C?
Inspired by a recent question, I'd like to know if anyone knows how to get gcc to generate the x86-64 bts instruction (bit test and set) on the Linux x86-64 platforms, without resorting to inline ...
9
votes
5answers
1k views
Benefits of x87 over SSE
I know that x87 has higher internal precision, which is probably the biggest difference that people see between it and SSE operations. But I have to wonder, is there any other benefit to using x87? ...
9
votes
2answers
2k views
Syscall from inline asm in x86_64 Linux?
Why does this print garbage instead of exiting my program gracefully? I use system calls this way on BSD, and I wonder what would I need to make it work in Linux.
int
main(int argc, char **argv)
{
...
8
votes
1answer
352 views
amd64 fs/gs registers in linux
On the x86-64 architecture, two registers have a special purpose: FS and GS. In linux 2.6.*, the FS register seem to be used to store thread-local information.
Is that correct?
What is stored at ...
8
votes
6answers
2k views
How To Create Your Own x86 Operating System for Modern PC Computers
I'd like to create a new operating system for x86 PC computers. I'd like it to be 64-bit but possibly run as 32-bit as well.
I have these kinds of questions:
What kinds of things do you start ...
8
votes
2answers
745 views
How to Tell if a .NET Assembly Was Compiled as x86, x64 or Any CPU
What's the easiest way to discover (without access to the source project) whether a .NET assembly DLL was compiled as 'x86', 'x64' or 'Any CPU'?
Update: A command-line utility was sufficient to meet ...
7
votes
1answer
117 views
IA-32e 64-bit IDT Gate Descriptor
There is a Segment Selector in Intel's 64-bit IDT Gate Descriptor. However, from my understanding across the 5 part Intel manuals, the Linear Address of the Interrupt Handler is loaded into RIP from ...
7
votes
2answers
239 views
Why is %eax zeroed before a call to printf?
I am trying to pick up a little x86. I am compiling on a 64bit mac with gcc -S -O0.
Code in C:
printf("%d", 1);
Output:
movl $1, %esi
leaq LC0(%rip), %rdi
movl $0, %eax ; WHY?
...
7
votes
2answers
989 views
x86 Assembly pushl/popl don't work
I'm a newbie to assembly programming, working through Programming Ground Up on an Ubuntu x86_64 desktop with GNU assembler v2.20.1.
I've been able to assemble/link execute my code, up until I get to ...
7
votes
6answers
1k views
How can I write a “Hello World” app in assembly language? [closed]
Possible Duplicate:
how to write hello world in assembler under windows?
I've often heard of applications written using the language of the gods, assembly language. I've never tried though, ...
7
votes
5answers
9k views
Running C# app 32 bit on 64 bit machine
How do I force my app to run 32 bit on the 64 bit machine? The code is written in C#.
7
votes
12answers
1k views
Are There any Open Source Real Time Operating Systems?
Are there any open source real time operating systems out there? I've heard of real-time Linux, but most implementations seem to really be a proprietary RTOS (that you have to pay for) that run Linux ...
6
votes
3answers
121 views
Why is this inline assembly not working?
For the the following code:
long buf[64];
register long rrax asm ("rax");
register long rrbx asm ("rbx");
register long rrsi asm ("rsi");
rrax = 0x34;
rrbx = 0x39;
__asm__ __volatile__ ("movq ...
6
votes
1answer
97 views
Hardware performance counter APIs for Windows
I'd like to use hardware performance counter, specifically x86 CPUs to obtain cache misses or branch mis-prediction. Performance counters are heavily used in advanced profilers like Intel VTune. ...
6
votes
2answers
151 views
Is mov %esi, %esi a no-op or not on x86-64?
I am a bit confused by the comment in one of the header files for the Linux kernel, arch/x86/include/asm/nops.h. It states that
<...> the following instructions are NOT nops in 64-bit mode, for ...
6
votes
3answers
360 views
Can't allocate 2-4 Gb of RAM with new[]/ C++/Linux/ x86_64
For this easy test, and the linux box with 4Gb or RAM, 0byte of swap and CPU in x86_64 mode, I can't allocate more than 1 Gb of array.
Source:
#include <cstdio>
int main()
{
for(int ...
6
votes
2answers
184 views
How can the first of these two code snippets run 3x faster than the second when its doing more work?
How can this code:
var check = 0;
for (var numerator = 0; numerator <= maxNumerator; numerator++)
{
check += numerator >= 0
? numerator - (int) ((numerator * qdi.Multiplier) ...
6
votes
2answers
205 views
64 bit features in a 32 bit application?
I have a 32 bit application which I plan to run on 64bit Windows 7.
At this stage I cannot convert the entire application to 64 bit due to dependencies to thirdparty functionality.
However, I would ...
6
votes
2answers
285 views
Why does Math.Exp give different results between 32-bit and 64-bit, with same input, same hardware
I am using .NET 2.0 with PlatformTarget x64 and x86. I am giving Math.Exp the same input number, and it returns different results in either platform.
MSDN says you can't rely on a literal/parsed ...
6
votes
2answers
3k views
Force gcc to compile 32 bit programs on 64 bit platform
I've got a proprietary program that I'm trying to use on a 64 bit system.
When I launch the setup it works ok, but after it tries to update itself and compile some modules and it fails to load them. ...
6
votes
5answers
390 views
Recommended textbook for machine-level programming?
I'm looking at textbooks for an undergraduate course in machine-level programming. If the perfect book existed, this is what it would look like:
Uses examples written in C or assembly language, or ...
6
votes
8answers
576 views
How is the x64 architecture different from x86
I need to mess around with the stacks on these architecture and am really a n00b here. Any pointers to reading topics/google searches that i can do. I am looking for how these architectures are ...
6
votes
4answers
965 views
Assembly and multicore CPUs
What x86-64 instructions are used to enable/disable other cores/processors and how does one start executing code on them?
Is there documentation somewhere on how this is done by the operating ...
6
votes
3answers
1k views
Clean x86_64 assembly output with gcc?
I've been teaching myself GNU Assembly for a while now by writing statements in C, compiling them with "gcc -S" and studying the output. This works alright on x86 (and compiling with -m32) but on my ...
6
votes
6answers
2k views
How to use “GS:” in 64-bit Windows Assembly (eg, porting TLS code)
How can an user-space program configure "GS:" under 64-bit Windows (currently XP-64)?
(By configure, set GS:0 at an arbitrary 64-bit linear address).
I am trying to port a "JIT" environment to X86-64 ...
5
votes
2answers
130 views
Performance of modern processor
Being executed on modern processor (AMD Phenom II 1090T), how many clock ticks does the following code consume more likely : 3 or 11?
label: mov (%rsi), %rax
adc %rax, (%rdx)
lea ...