Intel® C++ Compiler Classic Developer Guide and Reference

ID 767249
Date 12/16/2022
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

Use Interprocedural Optimization

This topic discusses how to use IPO from the command line.

Compiling and Linking Using IPO

To enable IPO, you first compile each source file, then link the resulting source files.

Linux and macOS

  1. Compile your source files with the ipo compiler option:

    icpc -ipo -c a.cpp b.cpp c.cpp

    The command produces a.o, b.o, and c.o object files.

    Use the c compiler option to stop compilation after generating .o object files. The output files contain compiler intermediate representation (IR) corresponding to the compiled source files.

  2. Link the resulting files. The following example command will produce an executable named app:

    icpc -ipo -o app a.o b.o c.o

    The command invokes the compiler on the objects containing IR and creates a new list of objects to be linked. Alternately, you can use the xild tool, with the appropriate linking options.

The separate compile and link commands from the previous steps can be combined into a single command, for example:

icpc -ipo -o app a.cpp b.cpp c.cpp

The icpc command, shown in the examples, calls GCC ld to link the specified object files and produce the executable application, which is specified by the -o option.

Windows

  1. Compile your source files with the /Qipo compiler option:

    icl /Qipo /c a.cpp b.cpp c.cpp

    The command produces a.obj, b.obj, and c.obj object files.

    Use the c compiler option to stop compilation after generating .obj files. The output files contain compiler intermediate representation (IR) corresponding to the compiled source files.

  2. Link the resulting files. The following example command will produce an executable named app:

    icl /Qipo /Feapp a.obj b.obj c.obj

    The command invokes the compiler on the objects containing IR and creates a new list of objects to be linked. Alternately, you can use the xilink tool, with the appropriate linking options.

The separate compile and link commands from the previous steps can be combined into a single command, for example:

icl /Qipo /Feapp a.cpp b.cpp c.cpp

The icl command, shown in the examples, calls link.exe to link the specified object files and produce the executable application, which is specified by the /Fe option.

NOTE:

Linux: Using icpc allows the compiler to use standard C++ libraries automatically; icc will not use the standard C++ libraries automatically.

macOS: Using icc/icpc commands allows the compiler to use libc++ libraries, by default. You can switch to using the GNU implementation of the standard C++ library using the -stdlib=libstdc++ compiler option.

The Intel linking tools emulate the behavior of compiling at -O0 (Linux and macOS) and /Od (Windows) option.

If multiple file IPO is applied to a series of object files, no one which are mock object files, no multi-file IPO is performed. The object files are simply linked with the linker.

Capturing Intermediate IPO Output

The [Q]ipo-c and [Q]ipo-S compiler options are useful for analyzing the effects of multi-file IPO, or when experimenting with multi-file IPO between modules that do not make up a complete program.

  • Use the [Q]ipo-c compiler option to optimize across files and produce an object file. The option performs optimizations as described for the [Q]ipo option but stops prior to the final link stage, leaving an optimized object file. The default name for this file is ipo_out.o (Linux and macOS) or ipo_out.obj (Windows).

  • Use the [Q]ipo-S compiler option to optimize across files and produce an assembly file. The option performs optimizations as described for [Q]ipo, but stops prior to the final link stage, leaving an optimized assembly file. The default name for this file is ipo_out.s (Linux) or ipo_out.asm (Windows).

For both options, you can use the -o (Linux and macOS) or /Fe (Windows) option to specify a different name.

These options generate multiple outputs if multi-object IPO is being used. The name of the first file is taken from the value of the -o (Linux and macOS) or /Fe (Windows) option.

The names of subsequent files are derived from the first file with an appended numeric value to the file name. For example, if the first object file is named foo.o (Linux and macOS) or foo.obj (Windows), the second object file will be named foo1.o or foo1.obj.

You can use the object file generated with the [Q]ipo-c option, but you will not get the full benefit of whole program optimizations if you use this option.

The object file created using the [Q]ipo-c option is a real object file, in contrast to the mock file normally generated using IPO; however, the generated object file is significantly different than the mock object file. Whole program optimizations, which require a knowledge of how the real object file will be linked in with other files to produce and object, are not applied.

The compiler generates a message indicating the name of each object or assembly file it generates. These files can be added to the real link step to build the final application.

Using -auto-ilp32 (Linux OS) or /Qauto-ilp32 (Windows OS) Option

On Linux systems based on Intel® 64 architecture, the auto-ilp32 option has no effect unless you specify SSE3 or a higher suffix for the x option.

See Also