A function declared with __callt is called by the callt instruction.
A function declared with __callt (callt function) is called by the callt instruction. |
The callt function is called by the callt instruction using a label name with @_ added to the beginning of the function name. |
The size of the object code becomes smaller because the function is called by a 2-byte call instruction. |
__callt function-declaration; extern __callt function-declaration; static __callt function-declaration; __callt extern function-declaration; __callt static function-declaration; |
__callt needs to be specified for all declarations of the target function. |
__callt can be specified simultaneously with __near but a compilation error will occur when it is specified simultaneously with __far. |
__callt void func1(void); //Function address is set to near __callt __near void func2(void); //Function address is set to near __callt __far void func3(void); //Error |
When there is a #pragma specification for a function that is qualified with __callt in the function declaration, a compilation error will occur. |
The following shows a sample C source code.
The following shows the section allocation and output codes in the assembly source code.
.PUBLIC _func .PUBLIC _main .PUBLIC @_func : .SECTION .text,TEXT _func: : .SECTION .textf,TEXTF _main: callt [@_func] : .SECTION .callt0,CALLT0 @_func: .DB2 _func : |
The __callt keyword cannot be used together with the __far keyword, and a compilation error will occur if used so. |
#pragma callt handles even a function to which the __far keyword is added as if __callt was specified without a warning being output. |