Lines Matching full:calling
7 * Calling convention
10 * Calling the runtime
27 ## Calling convention
28 Panda runtime and managed code must call functions according to the target calling convention.
57 … entrypoints. A runtime entrypoint is a function which conforms to the target calling convention.
76 …ode which can execute the function. This code must conform to the target calling convention and mu…
77 one extra argument: a pointer to `panda::Method` ( See [Calling convention](#calling_convention)).
146 ## Calling a function from compiled code
149 Resolving of a function could be done by calling the corresponding runtime entrypoint.
152 Calling `int max(int a, int b)` function from compiled code on ARM architecture with arguments `2` …
171 ## Calling a function from compiled code: Bridge function
222 * Prepare the arguments according to the target calling convention. The function uses the bytecode …
258 * Store the result in registers or in the stack according to the target calling convention.
392 Throwing an exeption from compiled code is performed by calling a runtime entrypoint `void ThrowExc…