Tagged Questions
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?
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 ...
8
votes
7answers
1k views
Easiest/Best Way to Learn the x86 Instruction Set?
I would like to learn the x86 Instruction Set Architecture. I don't meaning learning an assembly for x86. I want to understand the machine code baby.
The reason is that I would like to write an ...
6
votes
2answers
2k views
x86 CMP Instruction Difference
Question
What is the (non-trivial) difference between the following two x86 instructions?
39 /r CMP r/m32,r32 Compare r32 with r/m32
3B /r CMP r32,r/m32 Compare r/m32 with r32
...
4
votes
2answers
79 views
Repeat prefixes and mandatory prefixes in x86
In my quest of writing a small disassembler for linux specific to x86 arch, I'm faced with a small issue. It's with regard to mandatory prefixes and repeat prefixes. Looking at the Intel docs [1], ...
3
votes
4answers
188 views
Learning about the x86 Instruction Set
What are good resources for learning about the x86 instruction set?
I'm a total beginner, and have no real understanding of registers, interrupts, address modes etc, so perhaps a generic book on ISAs ...
2
votes
2answers
49 views
Disassembling a 'faddl' instruction
In my venture of coding a disassembler for the linux x86-32 bit platform, I came across an issue. I saw the following opcode sequence when I disassembled a simple ELF-32 executable using 'objdump':
...
2
votes
2answers
1k views
How is a relative JMP (x86) implemented in an Assembler?
While building my assembler for the x86 platform I encountered some problems with encoding the JMP instruction:
OPCODE INSTRUCTION SIZE
EB cb JMP rel8 2
E9 cw JMP rel16 4 ...
1
vote
3answers
252 views
Which is the first CPU that Intel has added conditional move instructions to?
I remember having read about it somewhere… Could anyone shed some light on this?
1
vote
3answers
233 views
Assembler mov issue
I have the next code:
mov ax,@data
mov ds,ax
Why I can not write just like this?
mov ds,@data
All source:
.MODEL small
.STACK 100h
.DATA
HelloMessage DB 'Hello, world',13,10,'$'
...
1
vote
3answers
167 views
Dummy operations handling of Intel processor
Admittedly, I have a bit silly question. Basically, I am wondering if
there are some special mechanisms provided by Intel processors to efficiently
execute a series of dummy, i.e., NOP instructions? ...
1
vote
4answers
642 views
x86 asm instruction set: Any _searchable_ offline reference?
I'm somewhat new to assembly and have to look up the x86 instructions every now and then. Searching the web for every other opcode gets annoying after a while. Then there are the Intel Reference ...