Tagged Questions
x86 designates a family of CPUs starting with the 8086
128
votes
31answers
41k views
“Hello World” in less than 20 bytes [closed]
We have had an interesting competition once, where everyone would write their implementation of hello world program. One requirement was that is should be less than 20 bytes in compiled form. the ...
93
votes
4answers
3k views
What happens when a computer program runs?
I know the general theory but I can't fit in the details.
I know that a program resides in the secondary memory of a computer. Once the program begins execution it is entirely copied to the RAM. Then ...
76
votes
8answers
8k views
Help me understand this JavaScript exploit
I usually do not have difficulty to read JavaScript script but this one I can't figure out the logic. The code is from an Exploit that has been published 4 days ago. You can find it at milw0rm.
Here ...
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?
46
votes
6answers
22k views
x86 asm: What's the purpose of the LEA instruction?
For me, it just seems like a funky MOV. What's its purpose and when should I use it?
40
votes
3answers
723 views
Is this “should not happen” crash an AMD Fusion CPU bug?
My company has started having a number of customers call in because our program is crashing with an access violation on their systems.
The crash happens in SQLite 3.6.23.1, which we ship as part of ...
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 ...
37
votes
19answers
2k views
Effective optimization strategies on modern C++ compilers
I'm working on scientific code that is very performance-critical. An initial version of the code has been written and tested, and now, with profiler in hand, it's time to start shaving cycles from the ...
37
votes
37answers
4k views
Best program you have written in assembly language, so far? [closed]
Back to the golden days of assembly language.
As we know, assembly language is a low-level language with many hidden powers in it. If one can program well in it, many powerful and useful application ...
36
votes
15answers
7k views
Good x86 assembly book
I'm looking to teach myself basic hardware architecture; specifically, I'd like to learn x86 assembly for Linux or OSX. What books does this community recommend?
33
votes
5answers
2k views
GCC's assembly output of an empty program on x86, win32
I write empty programs to annoy the hell out of stackoverflow coders, NOT. I am just exploring the gnu toolchain.
Now the following might be too deep for me, but to continuie the empty program saga I ...
32
votes
10answers
4k views
Fastest way to calculate a 128-bit integer modulo a 64-bit integer
I have a 128-bit unsigned integer A and a 64-bit unsigned integer B. What's the fastest way to calculate A % B - that is the (64-bit) remainder from dividing A by B?
I'm looking to do this in either ...
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 ...
23
votes
1answer
241 views
Can GCC be coerced to generate efficient constructors for memory-aligned objects?
I'm optimizing a constructor that is called in one of our app's innermost loops. The class in question is about 100 bytes wide, consists of a bunch of ints, floats, bools, and trivial structs, and ...
23
votes
5answers
12k views
x86 Assembly - 'testl' eax against eax?
I am trying to understand some assembly.
Assembly as follows, I am interested in the testl line:
000319df 8b4508 movl 0x08(%ebp),%eax
000319e2 8b4004 movl 0x04(%eax),%eax
...
23
votes
14answers
3k views
How should I go about doing operating system development for the X86 architecture?
I want to make my own operating system for the X86 architecture.
What would be the best language to use? (Along with assem of course)
What would the best compiler for the language be on a windows ...
22
votes
8answers
3k views
What is your favourite anti-debugging trick?
At my previous employer we used a third party component which basically was just a DLL and a header file. That particular module handled printing in Win32. However, the company that made the component ...
21
votes
3answers
2k views
What's the point of LEA EAX, [EAX]?
LEA EAX, [EAX]
I encountered this instruction in a binary compiled with the Microsoft C compiler. It clearly can't change the value of EAX. Then why is it there at all?
21
votes
3answers
4k views
Why is SSE scalar sqrt(x) slower than rsqrt(x) * x?
I've been profiling some of our core math on an Intel Core Duo, and while looking at various approaches to square root I've noticed something odd: using the SSE scalar operations, it is faster to take ...
21
votes
4answers
10k views
How do you use gcc to generate assembly code in Intel syntax?
The gcc -S option will generate assembly code in AT&T syntax, is there a way to generate files in Intel syntax? Or is there a way to convert between the two?
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, ...
19
votes
5answers
7k views
What is the purpose of the frame pointer?
I'm a beginner in assembly language and have noticed that the x86 code emitted by compilers usually keeps the frame pointer around even in release/optimized mode, when it could use the EBP register ...
17
votes
3answers
412 views
Race condition on x86
Could someone explain this statement:
shared variables
x = 0, y = 0
Core 1 Core 2
x = 1; y = 1;
r1 = y; r2 = x;
How is it possible to have r1 == 0 and r2 == 0 on x86 processors?
...
17
votes
3answers
1k views
How is thread synchronization implemented, at the assembly language level?
While I'm familiar with concurrent programming concepts such as mutexes and semaphores, I have never understood how they are implemented at the assembly language level.
I imagine there being a set of ...
17
votes
3answers
1k views
alignment requirements for atomic x86 instructions
Microsoft offers the InterlockedCompareExchange function for performing atomic compare-and-swap operations. There is also an _InterlockedCompareExchange intrinsic.
On x86 these are implemented using ...
16
votes
7answers
556 views
Is malloc deterministic?
Is malloc deterministic? Say If I have a forked process, that is, a replica of another process, and at some point both of them call the malloc function. Would the address allocated be the same in both ...
16
votes
6answers
698 views
c++ floating point precision loss: 3015/0.00025298219406977296
The problem.
Microsoft Visual C++ 2005 compiler, 32bit windows xp sp3, amd 64 x2 cpu.
Code:
double a = 3015.0;
double b = 0.00025298219406977296;
//*((unsigned __int64*)(&a)) == ...
16
votes
3answers
6k views
Any reason to do a “xor eax, eax”?
xor eax, eax will always set eax to zero, right? So, why does MSVC++ sometimes put it in my executable's code? Is it more efficient that mov eax, 0?
012B1002 in al,dx
012B1003 push ...
15
votes
5answers
1k views
Why are x86 registers named the way they are?
For example, the accumulator is named EAX and, while the instruction pointer is called IP. I also know that there are bytes called CL and DH. I know there must be a convention to all of the names, ...
15
votes
2answers
10k views
x86 assembly registers — Why do they work the way they do?
Why is %EAX = %AX and %AX = (%AH + %AL). Why isn't there a counterpart to %AX to equal %EAX?
14
votes
4answers
7k views
Can't edit and continue when using Visual Studio 2010 on a 64 bit machine, app targets x86
I'm having some problems with Edit and Continue when using Visual Studio 2010 on a Windows 7 64 bit machine. I've ensured the following
Edit and Continue is enabled under ...
14
votes
8answers
551 views
Where can I find a 8080 to x86 assembler conversion tool?
For a retro computing project, I need to translate a body of 1970s era 8080 assembly language into x86 form. There was a time when a tool to do just that was a key part of Intel's marketing for ...
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) ...
14
votes
10answers
3k views
8086 Assembler Tutorial
Following on from http://stackoverflow.com/questions/27568/, I have decided to try and focus on x86 assembler rather than Z80 assembler. To that end, I'd like suggestions of good tutorials to follow. ...
13
votes
3answers
444 views
Inline assembly that clobbers the red zone
I'm writing a cryptography program, and the core (a wide multiply routine) is written in x86-64 assembly, both for speed and because it extensively uses instructions like adc that are not easily ...
13
votes
3answers
742 views
Odd optimisation problem under MSVC
I've seen this blog:
http://igoro.com/archive/gallery-of-processor-cache-effects/
The "weirdness" in part 7 is what caught my interest.
My first thought was "Thats just C# being weird".
Its not I ...
13
votes
11answers
2k views
Intel x86 assembly optimization techniques in a sample problem
I am learning assembler quite a while and I am trying to rewrite some simple procedures \ functions to it to see performance benefits (if any). My main development tool is Delphi 2007 and first ...
13
votes
9answers
4k views
Can I force cache coherency on a multicore x86 CPU?
The other week, I wrote a little thread class and a one-way message pipe to allow communication between threads (two pipes per thread, obviously, for bidirectional communication). Everything worked ...
13
votes
3answers
3k views
Access x86 COM from x64 .NET
I have an x64 server which, since my libraries are compiled to AnyCPU, run under x64. We are needing to access a COM component which is registered under x86. I don't know enough about COM and my ...
13
votes
7answers
781 views
Are there any considerations needed to be taken running your .net program on x64 vs x86?
I believe the architecture type (x86 vs x64) is abstracted away for you when making .Net programs, but are there any other considerations that can cause problems?
13
votes
3answers
7k views
Calling 32bit Code from 64bit Process
I have an application that we're trying to migrate to 64bit from 32bit. It's .NET, compiled using the x64 flags. However, we have a large number of DLLs written in FORTRAN 90 compiled for 32bit. ...
13
votes
7answers
14k views
x86 Assembly on a Mac
Does anyone know of any good tools (i'm looking for IDEs, primarily) to write assembly on the Mac... Xcode is a little cumbersome to me.
Also, on the Intel Macs, can I use generic x86 asm? or is ...
12
votes
1answer
107 views
How prompt is x86 at setting the page dirty bit?
On the x86 processor family:
From a software point of view, what is the latency between an instruction that dirties a memory page and when the core actually marks the page dirty in the Page Table ...
12
votes
1answer
655 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
427 views
Relative performance of swap vs compare-and-swap locks on x86
Two common locking idioms are:
if (!atomic_swap(lockaddr, 1)) /* got the lock */
and:
if (!atomic_compare_and_swap(lockaddr, 0, val)) /* got the lock */
where val could simply be a constant or ...
12
votes
2answers
857 views
Speed difference between using int and unsigned int when mixed with doubles
I have an application where part of the inner loop was basically:
double sum = 0;
for (int i = 0; i != N; ++i, ++data, ++x) sum += *data * x;
If x is an unsigned int, then the code takes 3 times as ...
12
votes
6answers
4k views
How do I disassemble raw x86 code?
I'd like to disassemble the MBR (first 512 bytes) of a bootable x86 disk that I have. I have copied the MBR to a file using
dd if=/dev/my-device of=mbr bs=512 count=1
Any suggestions for a Linux ...
12
votes
5answers
1k views
Does using xor reg, reg give advantage over mov reg, 0?
There're two well-known ways to set an integer register to zero value on x86.
Either
mov reg, 0
or
xor reg, reg
There's an opinion that the second variant is better since the value 0 is not ...
12
votes
6answers
2k views
Stack allocation, padding, and alignment
I've been trying to gain a deeper understanding of how compilers generate machine code, and more specifically how GCC deals with the stack. In doing so I've been writing simple C programs, compiling ...