Where put subroutine/function to inline

718 Views Asked by At

If I want a subroutine to be inlined in the calling routine, where may I keep it? Need it be in the same module or file? Can inlining be done with subroutines from different object files? May the answer be compiler dependent?

1

There are 1 best solutions below

3
On

This is not controlled by the Fortran standard. The processor can do as it sees fit.

It will definitely depend on the compiler settings.

Commonly, internal functions will be inlined. But many other other functions are often inlined as well, at least if they happen to be in the same source file or module.

But even inlining from other source files / compiled object files is not out of the question. That can and is often done during link time optimizations (https://gcc.gnu.org/wiki/LinkTimeOptimization). These optimizations are either included in certain compiler flags (like -fast) or can be enabled separately (-flto,-ipo).