call

From Mill Computing Wiki
Jump to: navigation, search
realizing  flow stream  flow block  call phase   operation  

native on: all

The general purpose unconditional abstract call operations you will be using when writing general assembly code. Depending on the number and order of arguments and the number of return values the assembler will pick the most dense from a myriad of different encodings. This can result in gangs or it can be a short single operation. For the gangs, that accommodate more arguments, there are encoding optimizations for common case of zero or one return values.

The call operation is one of the most important novel features of the Mill architecture. It almost completely abolishes calling conventions and function prologues and epilogues and memory references in calls. Almost all arguments are passed via belt the belt, certainly all native data types up to belt size are.
Things like varargs and big structures still need to be passed through the stack.

A call allocates a new belt in a new frame, initialized with the function arguments in order. There can be a different call operation in each slot in an instruction that has a control functional unit if those slots are not used for gangs in call operation with more arguments. Those call operations are chained into each other, the return values being placed into the belt of the next call. This implements a hardware tail call mechanism without involving any memory.

The target of a function call doesn't necessarily have to be a an EBB that implements the function. It can also be a Portal, i.e. it can initiate a full context switch. What the call hardware does depends on the Permissions on the address.

There are also conditional calls. Pretty handy considering how common predicated calls are.

Call operations always have to define how many return values there will be, so the decoder can work with the correct belt indices to route values to the FUs.

related operations: calltr, callfl, retn


call(lit n, p target, args args) → ops r0 ...

operands: like Inv :

An indirect call to a dynamically computed address.

encoding: call(lit n, p target, off argv, count argc)
encoding: call(lit n, p target, off argv, count argc, lit argv)
alternate encoding: call0, call1, calln,

Core In Slots Latencies
Tin F0 1
Copper F0 F1 1
Silver F0 F1 F2 1
Gold F0 F1 F2 F3 1
Decimal8 F0 F1 F2 1
Decimal16 F0 F1 F2 1

call(lit n, lbl target, args args) → ops r0 ...

operands: like Inv :

Function is known at compile time.

encoding: call(lit n, off target, count argc)
encoding: call(lit n, off target, count argc, lit argv)
encoding: call(lit n, off target, count argc, lit argv, lit argv)
alternate encoding: call0, call1, calln,

Core In Slots Latencies
Tin F0 1
Copper F0 F1 1
Silver F0 F1 F2 1
Gold F0 F1 F2 F3 1
Decimal8 F0 F1 F2 1
Decimal16 F0 F1 F2 1


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