Tagged Questions
The machine-instruction tag has no wiki summary.
26
votes
6answers
2k views
How was the first compiler written?
I heard about the chicken and the egg and bootstrapping. I have a few questions.
What wrote the first compiler that converted something into binary instructions?
Is assembly compiled or translated ...
7
votes
5answers
1k views
What's the purpose of the rotate instructions (ROL, RCL on x86)?
I always wondered what's the purpose of the rotate instructions some CPUs have (ROL, RCL on x86, for example). What kind of software makes use of these instructions? I first thought they may be used ...
6
votes
5answers
744 views
What C++ code compiles down to the x86 REP instruction?
I'm copying elements from one array to another in C++. I found the rep movs instruction in x86 that seems to copy an array at ESI to an array at EDI of size ECX. However, neither the for nor while ...
3
votes
4answers
1k views
ADC instruction in ASM 8086
When I use ADC for exmaple:
AL = 01 and BL = 02, and CF = 1
when I make this:
ADC AL,BL
Will AL be 3 or 4? (with the CF addition or without?)
2
votes
3answers
87 views
The real speed of a computer
How fast does each assembly language instruction take? Do operations like set, read, move and compare all take the same time to execute?
If not: Is there any way to find out how long.
Is there ...
2
votes
1answer
53 views
How to read the direction bit and source or destination of an assembly instruction
So I'm working on some code (for x86) where I need to get the source or destination point of an instruction. For this I need the direction bit which says whether ModRM or REG is the destination or ...
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
44 views
Modify only the LSB of a memory cell
Is it possible to write a sequence of instructions that will place a 1 in the least significant bit of the memory cell at address B3 without disturbing the other bits in the memory cell?
The machine ...
1
vote
4answers
192 views
C programming and error_code variable efficiency
Most code I have ever read uses a int for standard error handling (return values from functions and such). But I am wondering if there is any benefit to be had from using a uint_8 will a compiler -- ...
0
votes
1answer
47 views
Single instruction push/pop for user stack instead accessory function calls?
On the processor stack push mov and pop and so on are single instructions.
When compiling source code the compiler generates the single machine instruction version, but during run-time, assuming the ...
0
votes
2answers
78 views
Assembly Language Symbolic opcodes
I'm pretty confused with converting hex machine instructions to symbolic opcodes. I have a few review problems from this section:
What machine code is generated for the instruction: sbb al, 10
sbb ...
0
votes
1answer
64 views
MIPS Shift Instruction
In an sll instruction in MIPS, it can only take 5-bits. How would the shift work if the shift amount was more than 31? How do we represent that with 5-bits?
Thanks
0
votes
3answers
114 views
Is there any performance difference between greater than and greater than or equal?
On today's modern processors, is there any performance difference between greater than and greater than or equal comparison for a branch condition? If I have a condition that could just as easily be ...
0
votes
3answers
204 views
How is data, address and Instruction differentiated in Processor/Register/memory?
In Processor , how are Data, Address and instructions are differentiated ? When a program is executed, how is processor differentiate instructions when everything is in 0s and 1s and register`s load ...
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 ...