| |||
| Home > Using the Inline and Embedded Assemblers of the ARM Compiler > Calling nonstatic member functions in embedded assembler | |||
You can use keywords beginning with __mcall and __vcall to
call nonvirtual and virtual functions from __asm functions.
There is no __mcall_is_static to detect static
member functions because static member functions have different
parameters (that is, no this), so call sites
are likely to already be specific to calling a static member function.