Go to main content
Oracle® Developer Studio 12.5: Fortran User's Guide

Exit Print View

Updated: June 2016
 
 

4.1 Source Language Features

The f95 compiler provides the following source language features and extensions to the Fortran standard .

4.1.1 Continuation Line Limits

f95 allows 999 continuation lines (1 initial and 999 continuation lines). Standard Fortran 95 allows 19 for fixed-form and 39 for free-form.

4.1.2 Fixed-Form Source Lines

In fixed-form source, lines can be longer than 72 characters, but everything beyond column 73 is ignored. Standard Fortran 95 only allows 72-character lines.

4.1.3 Tab Form

The f95 fixed-format source text is defined as follows:

  • A tab in any of columns 1 through 6 makes the line as a tab form source line.

  • A comment indicator or a statement number may precede the tab.

  • If a tab is the first nonblank character, then:

    • If the character after the tab is anything other than a nonzero digit, then the text following the tab is an initial line.

    • If there is a nonzero digit after the first tab, the line is a continuation line. The text following the nonzero digit is the next part of the statement.

The f95 default maximum line length is 72 columns for fixed form and 250 for free form. Use the -e compiler option to extend the lines in fixed-format source to 250 columns.

Example: The tab form source on the left is treated as shown on the right.

!^IUses of tabs
^ICHARACTER *3 A = ’A’
^IINTEGER B = 2
^IREAL C = 3.0
^IWRITE(*,9) A, B, C
9^IFORMAT(1X, A3,
^I1 I3,
^I2 F9.1 )
^IEND
!       Uses of tabs
        CHARACTER *3 A = ’A’
        INTEGER B = 2
        REAL C = 3.0
        WRITE(*,9) A, B, C
9       FORMAT(1X, A3,
       1 I3,
       2 F9.1 )
        END

In the example above, ”^I” stands for the tab character, and the line starting with “1” and “2” are continuation lines. The coding is shown to illustrate various tab situations, and not to advocate any one style.

Tabs in f95 force the rest of the line to be padded out to column 72. This may cause unexpected results if the tab appears within a character string that is continued onto the next line:

Source file:

^Iprint *, "Tab on next line
^I1this  continuation line starts with a tab."
^Iend

Running the code:

Tab on next line                                             this  continuation
 line starts with a tab.

When tab formatting is used with the —f77 option, there is no 250 character limit to the line length. The line can be much longer.

4.1.4 Source Form Assumed

The source form assumed by f95 depends on options, directives, and suffixes.

Files with a .f or .F suffix are assumed to be in fixed format. Files with a .f90, .f95, .F90, or .F95 suffix are assumed to be in free format.

Table 27  F95 Source Form Command-line Options
Option
Action
-fixed
Interpret all source files as Fortran fixed form
-free
Interpret all source files as Fortran free form

If the -free or -fixed option is used, it overrides the file name suffix. If either a !DIR$ FREE or !DIR$ FIXED directive is used, it overrides the option and file name suffix.

4.1.4.1 Mixing Forms

Some mixing of source forms is allowed.

  • In the same f95 command, some source files can be fixed form, some free.

  • In the same file, free form can be mixed with fixed form by using !DIR$ FREE and !DIR$ FIXED directives.

  • In the same program unit, tab form can be mixed with free or fixed form.

4.1.4.2 Case

Oracle Developer Studio Fortran 95 is case insensitive by default. That means that a variable AbcDeF is treated as if it were spelled abcdef. Compile with the -U option to have the compiler treat upper and lower case as unique.

4.1.5 Limits and Defaults

  • A single Fortran program unit can define up to 65,535 derived types and 16,777,215 distinct constants.

  • Names of variables and other objects can be up to 127 characters long. 31 is standard.