Previous Next Contents Index Doc Set Home


Using Sun Fortran Compilers

2


This chapter describes how to use the Fortran 77 and Fortran 90 compilers.

The principal use of any compiler is to transform a program written in a procedural language like Fortran into a data file that is executable by the target computer hardware. As part of its job, the compiler may also automatically invoke a system linker to generate the executable file.

The Sun Fortran 77 and Fortran 90 compilers can also be used to:


A Quick Start

This section provides a quick overview of how to use the Sun Fortran compilers to compile and run Fortran programs. A full reference to command-line options appears in the next chapter.


Note - The command line examples in this chapter show f77 usages. Except where noted, equivalent usages of f90 are similarly valid; however, the printed output may be slightly different.
The very basic steps to running a Fortran application involve using an editor to create a Fortran source file with a .f, .for, .f90, .F, or .F90 filename suffix; invoking the compiler to produce an executable; and finally, launching the program into execution by typing the name of the file:

Example: This program displays a message on the screen:

demo% cat greetings.f
	PROGRAM GREETINGS
	PRINT *, 'Real programmers write Fortran!'
	END
demo% f77 greetings.f 
greetings.f:
  MAIN greetings:
demo% a.out 
 Real programmers write Fortran!
demo%

In the example, f77 compiles source file greetings.f and compiles the executable program onto the file, a.out, by default. To launch our program, the name of the executable file, a.out, is typed at the command prompt.

Traditionally, UNIX compilers write executable output to the default file called a.out. It can be awkward to have each compilation write to the same file. Moreover, if such a file already exists, it will be overwritten by the next run of the compiler. Instead, use the -o compiler option to explicitly specify the name of the executable output file:

demo% f77 -o greetings greetings.f 
greetings.f: 
MAIN greetings: 
demo%

In the preceeding example, to -o option tells the compiler to write the executable code to the file greetings. (By convention, executable files usually are given the same name as the main source file, but without an extension.)

Alternatively, the default a.out file could be renamed via the mv command after each compilation. Either way, run the program by typing the name of the executable file:

demo% greetings 
 Real programmers write Fortran! 
demo%

The next sections of this chapter discuss the conventions used by the f77 and f90 commands, compiler source line directives, and other issues concerning the use of these compilers. The next chapter describes the command-line syntax and all the options in detail.


Invoking the Compiler

The syntax of a simple compiler command is as follows:

f77  [options] sfn ...                 invokes the Fortran 77 compiler
f90  [options] sfn ...                 invokes the Fortran 90 compiler

Here sfn is a Fortran source file name that ends in .f, .F, .f90, .F90, or .for; options is one or more of the compiler options. (Files with names ending in a .f90 or .F90 extension are "free-format" Fortran 90 source files recognized only by the f90 compiler.)

In the example below, f90 is used to compile two source files to produce an executable file named growth with runtime debugging enabled:

demo% f90 -g -o growth growth.f fft.f90

Compile-Link Sequence

In the previous example, the compiler will automatically generate the loader object files, growth.o and fft.o, and then invoke the system linker to create the executable program on the file growth.

After compilation, the object files, growth.o and fft.o, will remain. This convention permits easy relinking and recompilation of files.

If the compilation fails, you will receive a message for each error. No .o files are generated for those source files with errors, and no executable program is written.

Command-Line File Name Conventions

The suffix extension attached to file names appearing on the command-line determine how the compiler will process the file. File names with a suffix extension other than one of those listed below, or without an extension, are passed to the linker.

Table  2-1 File Name Suffixes That Fortran Compilers Recognize 

Suffix
Language
Action

.f

Fortran 77 or Fortran 90 fixed-format

Compile Fortran source files, put object files in current directory; default name of object file is that of the source but with .o suffix.

.f90

Fortran 90 free-format

Same action as .f (f90 only)

.for

Fortran 77

Same action as .f.

.F

Fortran 77

Apply the Fortran (or C) preprocessor to the Fortran 77 source file before Fortran compiles it.

.F90

Fortran 90

Apply the Fortran (or C) preprocessor to the Fortran 90 free-format source file before Fortran compiles it.

.r

Ratfor

Process Ratfor source files before compiling.

.s

Assembler

Assemble source files with the assembler.

.S

Assembler

Apply the C preprocessor to the assembler source file before assembling it.

.il

Inline expansion

Process template files for inline expansion. The compiler will use templates to expand inline calls to selected routines. (Template files are special assembler files; see the inline(1) man page.)

.o

Object files

Pass object files through to the linker.

.a

Libraries

Pass names of libraries to the linker.

Fortran 90 free-format is described in Appendix C of this manual.

Source Files

The Fortran compilers will accept multiple source files on the command line. A set of source files compiled together by a single compiler command are often referred to as a compilation unit. A single source file may contain any number of procedures (main program, subroutine, function, block data, module, and so on). There are advantages for organizing an application with one procedure per file, as there are for gathering procedures that work together into a single file. Some of these are described in the Sun Fortran Programmer's Guide.

Source File Preprocessors

Both f77 and f90 support two source file preprocessors, fpp and cpp. Either can be invoked by the compiler to expand source code "macros" and symbolic definitions prior to compilation. The compilers will use fpp by default; the
-xpp=cpp option changes the default from fpp to cpp. (See also the discussion of the -Dname option).

fpp is a language preprocessor specifically for Fortran syntax. See the fpp(1) man page. It is invoked by default by f77 on files with a .F extension, and by f90 on files with a .F or .F90 extension.

The cpp program is the C language preprocessor. See cpp(1). Use of fpp over cpp is recommended.

Separate Compiling and Linking

You can compile and link in separate steps. The -c option compiles source files and generates .o object files, but does not create an executable. Without the -c option the compiler will invoke the linker. By splitting the compile and link steps in this manner, a complete recompilation is not needed just to fix one file, as shown in the following example:

Compile one file and link with others in separate steps:

demo% f77  -c file1.f                          (Make new object file)
demo% f77  -o prgrm file1.o file2.o file3.o         (Make executable file)

Be sure that the link step lists all the object files needed to make the complete program. If any object files are missing from this step, the link will fail with undefined external reference errors (missing routines).

Consistent Compiling and Linking

If you do compile and link in separate steps, consistent compiling and linking is critical when using certain compiler options:

-a, -autopar, -Bx, -cg92, -dy, -dn, -dalign, -dbl,
-dbl_align_all, -explicitpar, -f, -fast, -misalign, -p, -parallel, -pg, -r8, -xarch=a, -xcache=c, -xchip=c, xprofile=p,
-xtarget=t, -Zlp, -Ztha

Compile sbr.f with -dbl and smain.f without it:

 demo% f77 -c -dbl sbr.f
 demo% f77 -c smain.f
 demo% f77 -dbl sbr.o smain.o   {pass -dbl to the linker}

If you compile any subprogram with any of these options, be sure to link with the same options as well.

Linking Mixed Fortran 90 and Fortran 77 Compilations

As a general rule, if any of the object files that make up a program were compiled with f90, then the final link step must be done with f90. Use f77 to produce the executable file only if none of the .o object files were compiled with f90.

Unrecognized Command-Line Arguments

Any arguments on the command-line that the compiler does not recognize are interpreted as being possibly linker options, object program file names, or library names.

The basic distinctions are:

For example:

demo% f77 -bit move.f           <-  -bit is not a recognized f77 option
f77: Warning: Option -bit passed to ld, if ld is invoked, ignored 
otherwise
move.f:
 MAIN move:
demo% f77 fast move.f           <-   The user meant to type -fast
move.f:
 MAIN move:
ld: fatal: file fast: cannot open file; errno=2
ld: fatal: File processing errors.  No output written to a.out

Note that in the first example, -bit is not recognized by f77 and the option is passed on to the linker (ld), who tries to interpret it. Because single letter ld options may be strung together, the linker sees -bit as -b -i -t, which are all legitimate ld options! This may (or may not) be what the user expects, or intended.

In the second example, the user intended to type the f77/f90 option -fast but neglected the leading dash. The compiler again passes the argument to the linker which, in turn, interprets it as a file name.

These examples indicate that extreme care should be observed when composing compiler command lines!

Modules (Fortran 90)

f90 automatically creates module files for each MODULE declaration encountered in the source files, and searches for modules referenced by a USE statement. All the modules appearing in a source file are compiled into a single file with the primary name of the source file and .M suffix. For example, the modules on mysrc.f90 would be compiled to mysrc.M by f90.

The compiler searches the current directory for module files referenced in USE statements. More directories can be added to the search path with the f90 -M command-line option. However, .M files cannot be specified directly on the command line.


Directives

Use a source code directive, a form of Fortran comment, to pass specific information to the compiler regarding special optimization or parallelization choices. Compiler directives are also called pragmas.

Only f77 directives are discussed in this section. For f90 directives, see Appendix C.


Note - Directives are not part of any Fortran standard.

General Directives (f77)

The various forms of an f77 general directive are:

C$PRAGMA keyword
C$PRAGMA keyword ( a [ , a ] ... ) [ , keyword ( a [ , a ] ... ) ] ,... 
C$PRAGMA SUN keyword

The variable keyword identifies the specific directive; the a's are arguments.

The general directives recognized by f77 are:

A general directive has the following syntax:

Observe the following restrictions:

The C Directive (f77)

The C() directive specifies that its arguments are external functions written in the C language. It is equivalent to an EXTERNAL declaration except that unlike ordinary external names, the Fortran compiler will not append an underscore to these argument names. See the Sun Fortran Programmer's Guide for more details.

The C() directive for a particular function should appear before the first reference to that function in each subprogram that contains such a reference.

Example - compiling ABC and XYZ for C:

    EXTERNAL ABC, XYZ  
    C$PRAGMA C(ABC, XYZ) 

The UNROLL Directive (f77)

The UNROLL directive requires that you specify SUN after C$PRAGMA.

The C$PRAGMA SUN UNROLL=n directive instructs the compiler to unroll loops n times during its optimization pass.

n is a positive integer. The choices are:

If any loops are actually unrolled, the executable file becomes larger. For further information, see the Fortran Programmer's Guide chapter on performance and optimization.

Example - unrolling loops two times:

C$PRAGMA SUN UNROLL=2

The WEAK Directive (f77)

The WEAK directive defines a symbol to have less precedence than an earlier definition of the same symbol. This pragma is used mainly in sources files for building libraries. The linker does not produce an error message if it is unable to resolve a weak symbol.

C$PRAGMA WEAK (name1 [=name2])

WEAK (name1) defines name1 to be a weak symbol. The linker does not produce an error message if it does not find a definition for name1.

WEAK (name1=name2) defines name1 to be a weak symbol and an alias for name2.

If your program calls but does not define name1, the linker uses the definition from the library. However, if your program defines its own version of name1, then the program's definition is used and the weak global definition of name1 in the library is not used. If the program directly calls name2, the definition from library is used; a duplicate definition of name2 causes and error. See the Solaris Linker and Libraries Guide for more information.

Parallelization Directives (f77)

Parallelization directives explicitly request the compiler attempt to parallelize the DO loop that follows the directive. The syntax differs from general directives. Parallelization directives are only recognized when compilation options -parallel or -explicitpar are used. (f90 parallelization directives are described in Appendix C; detailed information on Fortran parallelization can be found in the Fortran Programmer's Guide.)

Parallelization directives have the following syntax:

The explicit parallelization directive keywords are:

DOALL, DOSERIAL, and DOSERIAL*

Each parallelization directive has its own set of optional qualifiers that follow the keyword.

Example: Specifying a loop with a shared variable:

C$PAR DOALL SHARED(yvalue)

See the Fortran Programmer's Guide for details about parallelization.


Compiler Usage Notes

The next sections suggest a number of ways to use the Sun Fortran compilers efficiently. A complete compiler options reference follows in the next chapter.

Determining Floating-Point Hardware

Some compiler options are specific to particular hardware options. The utility command fpversion tells which floating-point hardware is installed:

demo% fpversion
 A SPARC-based CPU is available.
 Mbus module's clock rate appears to be approximately 60.1 MHz.
 Kernel says Mbus module's clock rate is 60.0 MHz.
 Kernel says main memory's clock rate is 50.0 MHz.

 Sun-4 floating-point controller version 0 found.
 A TI TMS390Z50 SuperSPARC chip (FAB 3.x or later) is available.
 A TI TMS390Z55 SuperCache appears to be present.
 FPU's frequency appears to be approximately 58.3 MHz.

 Use "-xtarget=sc2000 -xcache=16/32/4:2048/64/1" code option.

It may take a number of seconds before fpversion responds while it dynamically calculates apparent hardware clock rates of the CPU and FPU. (The values printed depend on the load on the system at the moment fpversion is called.)

See fpversion(1) and the Numerical Computation Guide for details.

Simplifying Options

You can simplify complicated compiler commands by defining special shell aliases or using the $FFLAGS environment variable.

Using Aliases (C Shell)

Example: Define an alias for a command with frequently used options:

demo% alias f77fx "f77 -silent -fast -Xlist"

Example: Using the alias f77fx:

demo% f77fx any.f

The command f77fx is now the same as:

f77 -silent -fast -Xlist any.f

Using Environment Variables

You can specify options by setting the FFLAGS or OPTIONS variables.

Either FFLAGS or OPTIONS can be used explicitly in the command line. When you are using make files implicit compilation rules, FFLAGS is used automatically by the make program.

Example: Set FFLAGS: (C Shell)

  demo% setenv FFLAGS '-silent -fast -Xlist'

When using make, if the FFLAGS variable is set as above and the makefile's compilation rules are implicit, that is, there is no explicit f77/f90 compile line, then invoking make will result in a compilation equivalent to:

f77 -silent -fast -Xlist files...

make is a very powerful program development tool that can easily be used with all Sun compilers. See the make(1) man page and the Program Development chapter in the Fortran Programmer's Guide.

Memory Size

A compilation may need to use a lot of memory. This will depend on the optimization level chosen and the size and complexity of the files being compiled. On SPARC systems, if the optimizer runs out of memory, it tries to recover by retrying the current procedure at a lower level of optimization and resumes subsequent routines at the original level specified in the -On option on the command line.

A workstation should have at least 24 megabytes of memory; 32 megabytes are recommended. Memory usage depends on the size of each procedure, the level of optimization, the limits set for virtual memory, the size of the disk swap file, and various other parameters.

Compiling a single source file containing many routines could cause the compiler to run out of memory or swap space.

If the compiler runs out of memory, try reducing the level of optimization, or split multiple-routine source files into files with one routine per file, using fsplit(1).

Swap Space Limits

The Solaris 2.x command, swap -s, displays available swap space. See swap(1M).

Example: Use the swap command:

demo% swap -s 
total: 40236k bytes allocated + 7280k reserved = 47516k used, 
1058708k available


To determine the actual real memory, use the following command:

demo% /usr/sbin/dmesg | grep mem 
mem = 655360K (0x28000000)
avail mem = 602476544

Increasing Swap Space

Use mkfile(1M) and swap (1M) to increase the size of the swap space on a workstation. You must become superuser to do this. mkfile creates a file of a specific size, and swap -a adds the file to the system swap space:

 demo# mkfile -v 90m /home/swapfile 
 /home/swapfile 94317840 bytes 
 demo# /usr/sbin/swap -a  /home/swapfile

Control of Virtual Memory

Compiling very large routines (thousands of lines of code in a single procedure) at -O3 or higher, may require an unreasonable amount of memory. In such cases, performance of the system may degrade. You can control this by limiting the amount of virtual memory available to a single process.

To limit virtual memory:

Example: Limit virtual memory to 16 Mbytes:

 demo$ ulimit -d 16000

Example: Limit virtual memory to 16 Mbytes:

 demo% limit datasize 16M

Each of these command lines causes the optimizer to try to recover at 16 Mbytes of data space.

This limit cannot be greater than the system's total available swap space and, in practice, must be small enough to permit normal use of the system while a large compilation is in progress.

Be sure that no compilation consumes more than half the space.

Example: With 32 Mbytes of swap space, use the following commands:

The best setting depends on the degree of optimization requested, and the amount of real memory and virtual memory available.


Previous Next Contents Index Doc Set Home