x86 is a series of computer microprocessor instruction set architectures based on the Intel 8086 CPU.
130
votes
7answers
66k views
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?
111
votes
7answers
36k 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?
47
votes
5answers
3k views
Why does integer overflow on x86 with GCC cause an infinite loop?
The following code goes into an infinite loop on GCC:
#include <iostream>
using namespace std;
int main(){
int i = 0x10000000;
int c = 0;
do{
c++;
i += i;
...
15
votes
3answers
6k 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 ...
27
votes
2answers
22k 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?
44
votes
5answers
19k 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?
28
votes
8answers
15k 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 ...
21
votes
6answers
29k views
Windows 64-bit registry v.s. 32-bit registry
I heard on Windows x64 architecture, in order to support to run both x86 and x64 application, there is two separate/different sets of Windows registry -- one for x86 application to access and the ...
22
votes
7answers
25k 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 ...
16
votes
3answers
25k views
Change target CPU settings in Visual Studio 2010 Express
I wish to change the target CPU settings from "Any CPU" to "x86" in Visual Studio 2010.
I read on another website that I need to do the following:
Go to the startup project of your program.
Open ...
34
votes
4answers
12k 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 ...
18
votes
6answers
4k 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 ...
10
votes
8answers
8k views
What is the fastest way to convert float to int on x86
What is the fastest way you know to convert a floating-point number to an int on an x86 CPU. Preferrably in C or assembly (that can be in-lined in C) for any combination of the following:
...
10
votes
2answers
2k views
How to: pow(real, real) in x86
I'm searching for the implementation of pow(real, real) in x86 assembler. Also I'd like to understand how the algorithm works.
109
votes
4answers
6k 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 ...
15
votes
5answers
4k views
How to write self-modifying code in x86 assembly
I'm looking at writing a JIT compiler for a hobby virtual machine I've been working on recently. I know a bit of assembly, (I'm mainly a C programmer. I can read most assembly with reference for ...
15
votes
2answers
17k views
C# COM DLL: do I use Regasm, or Regsvr32?
I am building a C# ActiveX DLL... do I use REGASM or REGSVR32 to register it?
How do I register the 64-bit interface vs the 32-bit interface?
18
votes
3answers
14k 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. ...
11
votes
7answers
12k views
about assembly CF(Carry) and OF(Overflow) flag
It's known that CF indicates unsigned carry out and OF indicates signed overflow. So how does an assembly program differentiate between unsigned and signed data since it's only a sequence of bits? ...
15
votes
3answers
693 views
Is it possible to call a non-exported function that resides in an exe?
I'd like to call a function that resides in a 3rd-party .exe and obtain its result. It seems like there should be a way, as long as I know the function address, calling-convention, etc... but I don't ...
44
votes
5answers
24k 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
...
9
votes
10answers
16k views
2
votes
2answers
147 views
Printing a string without OS
I have a simple program in x86 assembly language. It should print a string directly to the video memory without OS.
[bits 16]
[org 0x7c00]
mov ax, 0x3
int 0x10
sdl
mov ax, 0xb800
mov es,ax
mov si, ...
31
votes
5answers
6k views
How to write a disassembler? [closed]
I'm interested in writing an x86 dissembler as an educational project.
The only real resource I have found is Spiral Space's, "How to write a disassembler". While this gives a nice high level ...
33
votes
7answers
2k views
Efficient integer compare function
The compare function is a function that takes two arguments a and b and returns an integer describing their order. If a is smaller than b, the result is some negative integer. If a is bigger than b, ...
6
votes
4answers
4k views
What is stack frame in assembly?
What is the structure of a stack frame and how is it used while calling functions in assembly?
27
votes
1answer
5k 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 ...
26
votes
3answers
15k views
System.BadImageFormatException:Could not load file or assembly … incorrect 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: Could not load file or assembly '{xxx.exe}' or one of its ...
12
votes
4answers
3k views
Disassembling, modifying and then reassembling a Linux executable
Is there anyway this can be done? I've used objdump but that doesn't produce assembly output that will be accepted by any assembler that I know of. I'd like to be able to change instructions within an ...
17
votes
1answer
302 views
Entity Framework spinup much slower on x64 vs x86
My coworker posted this question yesterday: 7-second EF startup time even for tiny DbContext.
After taking his code and moving it to a separate solution to isolate it as much as possible, I found ...
11
votes
3answers
1k 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:
...
7
votes
2answers
3k views
x86 assembly Protected mode Keyboard Access
So I'm working on keyboard input for a very bare bones kernel that I'm throwing together, and I'm completely stuck. I can't seem to find any information online that can tell me the information I need ...
7
votes
7answers
7k views
x86 Assembly: INC and DEC instruction and overflow flag
In x86 assembly, the overflow flag is set when an add or sub operation on a signed integer overflows, and the carry flag is set when an operation on an unsigned integer overflows.
However, when it ...
5
votes
4answers
2k views
Using software floating point on x86 linux
Is it (easily) possible to use software floating point on i386 linux without incurring the expense of trapping into the kernel on each call? I've tried -msoft-float, but it seems the normal (ubuntu) C ...
4
votes
2answers
3k views
How to detect that a given PE file (exe or dll) is 64 bit or 32 bit
I need to detect whether a given .dll or .exe file is 32 bit or 64 bit
At the moment I have only one solution: read the PE Header from the specified file and take the 'Machine' field from there.
( ...
8
votes
4answers
606 views
In what circumstances can large pages produce a speedup?
Modern x86 CPUs have the ability to support larger page sizes than the legacy 4K (ie 2MB or 4MB), and there are OS facilities (Linux, Windows) to access this functionality.
The Microsoft link above ...
3
votes
1answer
845 views
Fastest way to do horizontal vector sum with AVX instructions
I have a packed vector of four 64-bit floating-point values.
I would like to get the sum of the vector's elements.
With SSE (and using 32-bit floats) I could just do the following:
v_sum = ...
0
votes
1answer
1k views
Is this code correct (Number plus number, then print the result)
I want to do something simple in assembly language.
addition two numbers, and print the result on the screen.
I did that code:
.Model SMALL
.Stack 100h
.Code
start:
MOV ax, 10
ADD ax, 5
...
0
votes
3answers
1k views
How do I do assembly language encrypt/decrypt programming?
This is an encryption routine to encrypt a character:
Can anybody shine some light on the decryption routine?
Edit (see comments):
-1
votes
2answers
340 views
x86 convert to lower case assembly
This program is to convert a char pointer into lower case. I'm using Visual Studio 2010.
This is from another question, but much simpler to read and more direct to the point.
int b_search (char* ...
26
votes
3answers
6k views
Google maps SDK with new Intel Atom x86 emulator
Is there any way, how to get new x86 image for Android emulator working with Google Maps SDK?
27
votes
14answers
5k 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 ...
56
votes
4answers
14k 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 ...
12
votes
4answers
4k views
How Do You Make An Assembler?
I'd like to make a simple x86 assembler. I'm wondering if there's any tutorials for making your own assembler. Or if there's a simple assembler that I could study.
Also, I wonder what tools are used ...
34
votes
5answers
17k 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 ...
28
votes
6answers
12k 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 ...
13
votes
7answers
15k views
Linux cross-compilation for ARM architecture
I am interested in cross-compile a Linux kernel for an ARM target on a x86 host.
There are some good practices you recommend?
Which is the best cross-compile suite in your opinion?
Have you setted ...
25
votes
3answers
4k 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?
15
votes
9answers
17k 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 ...
14
votes
1answer
1k views
Why do virtual memory addresses for linux binaries start at 0x8048000?
Disassembling an ELF binary on a Ubuntu x86 system I couldn't help but notice that the code(.text) section starts from the virtual address 0x8048000 and all lower memory addresses seem to be unused.
...

