pick

From Mill Computing Wiki
Jump to: navigation, search
speculable  exu stream  pick block  picked phase   operation   in the logical value domain  

native on: all

Pick between two values based on a condition.

The pick operation takes 3 arguments and has its own dedicated encoding Block. The selector argument q only looks at the lowest bit, and when it is set, the first value v1 is moved to the front of the belt, else v2.
When the selector and the two other operands are vectors of the same size, the pick takes place on a per element basis.

The pick operation has zero latency, because there isn't actually any processing taking place. It merely renames the belt positions in different ways in the same process that advances the belt positions between cycles as new values are dropped.

How many pick operations can be executed in parallel depends on the number of pick Slots of the Core. It finds extensive use in if-conversion to transform control flow into data flow and avoid conditional branches which are a major source of stalls.

related operations: recur


pick(sel q, op v1)

operands: like Inv :

A pick operation where the second pick value would be a None of the same width as the first.

Core In Slots Latencies
Tin P0 1
Copper P0 1
Silver P0 P1 1
Gold P0 1

pick(sel q, op v1, op v2)

operands: like Inv :


Core In Slots Latencies
Tin P0 1
Copper P0 1
Silver P0 P1 1
Gold P0 1


Instruction Set, alphabetical, Instruction Set by Category, Instruction Set, sortable, filterable