Is there a conditional-move-equivalent on the PowerPC (32 or 64) instruction set? It can obviously be emulated using a conditional branch, but I want something that outperforms that.
|
feedback
|
|
Remember that PowerPC is RISC, so the instruction set is intentionally simple. You can find useful tips in the IBM "PowerPC Compiler Writer’s Guide" (ISBN 0-9649654-0-2) though - there are a number of examples of branchless implementations of conditional sequences (e.g. max/min) which might give you some ideas. Also, if you have AltiVec, and your code can be vectorised, then conditional moves are very easy using e.g. compares and | |||
feedback
|
|
PowerPC has at least a floating-point conditional move operation, fsel, which works like follows:
For Integer values, you could use bit masks to "select" which value to use. Here's a discussion on this topic (integer at the bottom) | |||
feedback
|
|
Using Integer select has been implemented in at least two variants of PowerPC. IBM has the Motorola/Freescale has the "isel APU" found in the e200 and e500 series (and possibly others). These use a regular condition register bit, but can only select from register sources. | |||
|
feedback
|