While examining the instruction set for Intel x86 processors I noticed there are 'intuitive' instructions like 'mov', 'add', 'mul' ... while others seem a bit unnatural like 'sete'. The question is more out of curiosity rather than practical concerns: why would designers chose to implement particular execution scenarios in single instructions? Do you know any reading material that would explain such design decisions?
|
|
There are at least two possible sequences to achieve the code. Here's my analysis of them
And
When code executes there are many factors affecting execution speed. Two of them are the time it takes for the result of a comparison/arithmetic/booloean operation to reach the flags register and the other the execution penalty when a jump is taken (I'm over-simplifying this a bit). So the classic code will either execute a move or take a jump. The former will probably be executed in parallell with other code and the latter may cause the prefetcher to load data from the new position resulting in wait states. In the evolved case the preftecher is not affected at all which is good for execution speed. Also the sete sequence will probably fit in fewer bytes than the mov+jne combo which means that relatively less code cache line capacity/work will be involved in the execution which means there will be relatively more data cache capacity/work will be freed up as well. For normal (usually un-tuned) bloated application code the eventual use of sequences such as this will have little impact on overall performance. Highly specialized, hand tuned code with very tight loops the difference between executing in three rather than four cache lines could make an enormous difference, especially if multiple copies of the code are running on different cores. |
||||
|
|
|
Some criteria that designers use to decide if a "particular execution scenario" is a reasonable candidate for an instruction:
|
|||
|
|
In the case of A lot of cases are rather similar to that -- work is basically prototyped in software to find a design that's reasonably flexible, efficient and simple to implement. Then, when the design is relatively polished, the CPU designers look it over and see whether they can't make it at least a little more efficient by implementing (at least parts of) it in hardware. Most of the so-called RISC processors were designed by collecting statistics on the code generated from source code with existing compilers on existing processors. Then they looked through the frequency of instruction use, and (attempted to) optimize those that were used a lot, and simply dropped those that weren't used very much. |
|||
|
|