Tagged Questions
The instruction-set tag has no wiki summary.
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 ...
11
votes
7answers
3k views
How to control which core a process runs on?
I can understand how one can write a program that uses multiple processes or threads: fork() a new process and use IPC, or create multiple threads and use those sorts of communication mechanisms.
I ...
8
votes
1answer
189 views
How has CPU architecture evolution affected virtual function call performance?
Years ago I was learning about x86 assembler, CPU pipelining, cache misses, branch prediction, and all that jazz.
It was a tale of two halves. I read about all the wonderful advantages of the lengthy ...
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
3answers
71 views
Do different ARM manufacturers provide different instruction sets?
I first came across the ARM instruction set in the 80's, and have not used it since. Out of curiosity I was looking at the the tablets and other ARM devices and note that the CPU's are produced by ...
6
votes
1answer
124 views
Are ARM instructuons SWI and SVC exactly same thing?
ARM assembly has SWI and SVC instructions for entering into 'supervisor mode'.
What confuses me is, why there are two of them? Here it is said that SVC was formerly SWI. Does it mean that basically ...
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
...
6
votes
4answers
977 views
Do graphic cards have instruction sets of their own?
Do graphic cards have instruction sets of their own?
I assume they do, but I have been wondering if it is proprietary or if there is some sort of open standard.
Is every GPU instruction preceded by a ...
6
votes
4answers
2k views
where can I find a description of *all* MIPS instructions,
Does anyone know of a web site where I can find a list of 32-bit MIPS instructions/opcodes, with the following features:
Clearly distinguishes between real opcodes and assembly-language macros
...
5
votes
2answers
168 views
Integer division on ARM
Kind of a silly question, but how does one do integer division (signed or unsigned, either way) on ARM? I'm working on Cortex-A8 and Cortex-A9 in particular. I know that some architectures don't come ...
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], ...
4
votes
2answers
230 views
Where to get all versions of x86 aka IA32 Instruction Set Architecture manuals
I know about Intel 64 and IA-32 Architectures Software Developer's Manuals. I also know that these cover all the legacy & old processor ISAs.
But I want the individual manual (the one that ...
4
votes
1answer
68 views
GA Framework for Virtual Machines
Does anyone know of any .NET genetic algorithm frameworks for evolving instructions sets in virtual machines to solve abstract problems? I would be particularly interested in a framework which allows ...
3
votes
2answers
156 views
68k register addresses
This question is begging for a bunch of "why are you doing this?" responses.
I haven't been able to find this information in the 68k Programmer's Reference Manual, but that may be because I'm not ...
3
votes
5answers
574 views
Are instruction set and assembly language the same thing?
I was wondering if instruction set and assembly language are the same thing?
If not, how do they differ and what are their relations?
Thanks and regards!
3
votes
2answers
510 views
What exactly does the 3 operand imul instruction do in ia-32 assembly?
I'm reading the instruction
imul 0xffffffd4(%ebp, %ebx, 4), %eax
and I'm baffled by what it's doing exactly. I understand that imul multiplies, but I can't figure out the syntax.
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 ...
3
votes
4answers
739 views
How to analysis how many bytes each instruction takes in assembly?
0x004012d0 <main+0>: push %ebp
0x004012d1 <main+1>: mov %esp,%ebp
0x004012d3 <main+3>: sub $0x28,%esp
If the address is not available,can we calculate it ...
3
votes
4answers
193 views
New instruction sets in CPU
Every new generation of CPU introduces some sets of new instruction, ie.: MMX,3DNOW,SSE and so on.
I've got few general questions about them:
1) If some program uses for example SSE instruction can ...
3
votes
8answers
721 views
Equivalents to Z80 DJNZ instruction on other architectures?
First a little background. The z80 CPU has an instruction called DJNZ which can be used in a similar manner as a for loop. Basically DJNZ decrements the B register and jumps to a label if not zero. ...
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
5answers
150 views
How to write a compiler back-end to generate assembly for user defined hw architecture, from C code
I am working on a project where I have to define a new processor hardware architecture.
I need a compiler to generate assembly code for this target (it has its own instruction set).
Programs for this ...
2
votes
1answer
51 views
Leaf instructions (Processor/Assembly)
I'm not sure if SO is the best place to ask this question. If not, please let me know which sister site I should go to.
I've been reading a paper about Intel's Trusted Execution Technology (TXT) and ...
2
votes
4answers
149 views
Wrapping my head around hardware representations of numbers: a hypothetical two's complement question
This is a super naive question (I know), but I think that it will make for a good jumping off point into considering how the basic instruction set of a CPU actually gets carried out:
In a two's ...
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 ...
2
votes
2answers
66 views
Instruction Sets Virtualization
Windows runs on x86 based CPUs only. Is it possible to make Windows run on non-x86 architecture CPUs like POWER, SPARC, ARM, etc.... I know that there is a program viz., Virtual PC 7 for Mac that ...
1
vote
3answers
50 views
Assembly language instructions implementation
Is there some information source or technical draft (something like RFC for networking) describing implementation of particular instructions (e.g. mov, jmp, je, jle, inc, ...) for Intel architecture?
...
1
vote
1answer
108 views
Simulate a simple Graphic Card
Ok.I can find simulation designs for simple architectures.(Edit :definitely like not x86) For example use an int as the program counter , use a byte array as the Memory and so on.But how can I ...
1
vote
1answer
242 views
Assembler instructions bne and br (NIOS II). How do these branch-instructions work?
I have this assembler code, which I'm supposed to translate into machine code in binary form:
.text
.align 2
.global main
.equ val,0x4712
main: ...
1
vote
2answers
142 views
Instruction set simulator(SystemC) for MIPS architecture
Goodday SOers:
Does anybody know if there is a open source MIPS instruction set simulator (in C++ or SystemC preferably)?
I googled dozens of links and there is just no open ISS of MIPS cpu. Then ...
1
vote
0answers
123 views
Processor Design- Hazard management unit
I am designing a cell SPE processor. I have to check for data hazards before I take data from register file. What is the best way to identify the number of stall cycles necessary and what design ...
1
vote
1answer
117 views
aesimc instruction gives incorrect result
I'm trying to implement AES cryptography using the AES machine instructions (basing it on Intel's white paper) available on my Sandy Bridge. Unfortunately, I've come to a halt in the phase of ...
1
vote
2answers
133 views
How to find the time value of operation to optimize new algorithm design?
My question is specific to iPhone, iPod, and iPad, since I am assuming that the architecture makes a big difference. I'm hoping there is either a specification somewhere (for the various chips ...
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
1answer
113 views
A simple MIPS, question
I have a question, which is kind of confusing
Write the MIPS instruction whose machine language encoding is:
0000 0011 0001 1001 0100 0000 0010 1010
Your answer must use register names (like $t0) not ...
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 ...
1
vote
3answers
2k views
'align' instruction on MIPS
What exactly do this instruction? I know that it try to align data with a multiple of a especific number but, why would you need to do this? Is there an equivalent instruccion in other assemblers?
0
votes
1answer
27 views
Data Types additions larger than word
How are large data types(Double/Float) loaded in to registers for Arithmetic operations ? Can registers hold more than a word size data ? If only 2 registers can be added to load the result to third ...
0
votes
1answer
21 views
What is the actual difference between x86 floating-point and integer instruction types?
There are two fundamental types of microprocessor instructions: integer and floating-point.
Accordingly, they are executed on an Integer Processing Unit and on a Floating-Point Processing Unit. That ...
0
votes
1answer
12 views
Register to register comparisons
I have studied what composes a CPU and how random access memory is structured, but I don't understand register to register comparison operations.
"Why are register to register comparison operations ...
0
votes
1answer
214 views
simple pipelining and superscalar architecture
consider this instruction flow diagram....
instruction fetch->instruction decode->operands fetch->instruction execute->write back
suppose a processor that supports
both cisc and risc...like ...
0
votes
2answers
76 views
AMD Open64: Optimized math functions
Does Open64 has something equivalent to Intel Short Vector Math Library Operations.
Thank you.
0
votes
1answer
156 views
What is the essence of booth's algorithm?
can anyone explain the essence of booths algorithm and how to use it in machine language?
0
votes
2answers
54 views
Instructions per sec for Operating systems
I am new to Computer Architecture and Design. My question was a high level program Instruction set are executed in CPU one after another. Does it even involve Operating System instructions as overhead ...
0
votes
2answers
671 views
JVM instruction set CPU cycles & byte size
The Java Virtual Machine Instruction Set page provides information about mnemonics such as aaload, aastore... etc.
However neither the cpu cycles that these mnemonics would take up is mentioned nor is ...