IBM Support

Documentation errata for IBM XL C/C++ for AIX, V11.1

Preventive Service Planning


Abstract

This page contains corrections and additions to the product documentation shipped with IBM XL C/C++ for AIX, V11.1.

Content

Quickstart Guide
The following corrections and additions apply to the IBM XL C/C++ for AIX, V11.1 Quickstart Guide:

A current list of IBM trademarks is available on the Web at “Copyright and trademark information” at www.ibm.com/legal/copytrade.shtml.


Getting Started
The following corrections and additions apply to the IBM XL C/C++ for AIX, V11.1 Getting Started:

Topic location: What's new for IBM XL C/C++ for AIX, V11.1 > New or changed compiler options and directives

-qprefectch=assistthread should read -qprefetch=assistthread


Installation Guide
The following corrections and additions apply to the IBM XL C/C++ for AIX, V11.1 Installation Guide:

Topic location: Update installation > Updating an advanced installation using vacppndi

The example in the second step:

ls /compiler/update/ > /home/user/update.list

Should read:

ls /compiler/update/*.bff > /home/user/update.list


Language Reference
The following corrections and additions apply to the IBM XL C/C++ for AIX, V11.1 Language Reference:

Topic location: Lexical elements > Tokens > Literals > Character literals

The characters can be from the source program character set. You can represent the double quotation mark symbol by itself, but to represent the single quotation mark symbol, you must use the backslash symbol followed by a single quotation mark symbol ( \' escape sequence).

Should read:

The characters can be from the source program character set. You can represent the double quotation mark symbol by itself, but to represent the single quotation mark symbol, you must use
the backslash symbol followed by a single quotation mark symbol ( \' escape sequence). If compiled with -qlanglvl(extc89/extc99/extended), a character literal without a character or escape sequence between the single quotation mark symbols is treated as '\0'.

Topic location: Data objects and declarations > Type specifiers > User-defined types > Structures and unions

Member declarations

A structure or union member may be of any type except:

  • any variably modified type
  • C a function
  • any incomplete type

Should read:

A structure or union member may be of any type except:
  • any variably modified type
  • void type
  • C a function
  • any incomplete type

Flexible array members should read as follows:

A flexible array member is an unbounded array that occurs within a structure. It is a C99 feature and can be used to access a variable-length object. A flexible array member is permitted as the last member of a structure, provided that the structure has more than one named member. It is declared with an empty index as follows:

array_identifier [ ];

For example, b is a flexible array member of structure f.

Because a flexible array member has an incomplete type, you cannot apply the sizeof operator to a flexible array. In this example, the statement sizeof(f) returns the same result as sizeof(f.a), which is the size of an integer. The statement sizeof(f.b) is not allowed, because b is a flexible array member that has an incomplete type.

Any structure containing a flexible array member cannot be a member of another structure or an element of an array, for example:


IBM extension To be compatible with GNU C, XL C/C++ extends Standard C and C++, to ease the restrictions on flexible array members and allow the following situations:
  • Flexible array members can be declared in any part of a structure, not just as the last member. C++ only The type of any member that follows the flexible array member must be compatible with the type of the flexible array member. C only The type of any member that follows the flexible array member is not required to be compatible with the type of the flexible array member; however, a warning is issued when a flexible array member is followed by members of an incompatible type. The following example demonstrates this:
  • Structures containing flexible array members can be members of other structures.
  • Flexible array members can be statically initialized only if either of the following two conditions is true:
  • The flexible array member is the last member of the structure, for example:
  • Flexible array members are contained in the outermost structure of nested structures. Members of inner structures cannot be statically initialized, for example:

End IBM extension

Zero-extent array members (IBM extension) should read as follows:

Zero-extent arrays are provided for GNU C/C++ compatibility, and can be used to access a variable-length object.

A zero-extent array is an array with an explicit zero specified as its dimension.

array_identifier [0]

For example, b is a zero-extent array member of structure f.

The sizeof operator can be applied to a zero-extent array, and the value returned is 0. In this example, the statement sizeof(f) returns the same result as sizeof(f.a), which is the size of an integer. The statement sizeof(f.b) returns 0.

A structure containing a zero-extent array can be an element of an array, for example:


A zero-extent array can only be statically initialized with an empty set {}. Otherwise, it must be initialized as a dynamically allocated array. For example:

If a zero-extent array is not initialized, no static zero filling occurs, because a zero-extent array is defined to have no members. The following example demonstrates this:

In this example, the two printf statements produce the same output:


A zero-extent array can be declared in any part of a structure, not just as the last member. The type of any member following the zero-extent array is not required to be compatible with the type of the zero-extent array; however, a warning is issued when a zero-extent array is followed by members of incompatible type. For example:



Topic location: Declarators > Pointers > Type-based aliasing

In the example:



Should read:



The compiler determines that the result of f += 1.0; is never used subsequently. Thus, the optimizer may discard the statement from the generated code.

Should read:

The compiler determines that the result of f += 1.0 does not affect the value of *p. Thus, the optimizer might move the assignment after the printf statement.


Topic location: Declarators > Initializers > Initialization of structures and unions

You do not have to initialize all members of a structure or union; the initial value of uninitialized structure members depends on the storage class associated with the structure or union variable. In a structure declared as static, any members that are not initialized are implicitly initialized to zero of the appropriate type; the members of a structure with automatic storage have no default initialization. The default initializer for a union with static storage is the default for the first component; a union with automatic storage has no default initialization.

The following definition shows a partially initialized structure:


struct address {
                int street_no;
                char *street_name;
                char *city;
                char *prov;
                char *postal_code;
              };
struct address temp_address =
              { 44, "Knyvet Ave.", "Hamilton", "Ontario" };


The values of temp_address are:

Member
Value
temp_address.street_no44
temp_address.street_nameaddress of string "Knyvet Ave."
temp_address.cityaddress of string "Hamilton"
temp_address.provaddress of string "Ontario"
temp_address.postal_codeDepends on the storage class of the temp_address variable; if it is static, the value would be NULL.

Should read:

You do not have to initialize all members of structure variables. If a structure variable does not have an initializer, the initial values of the structure members depend on the storage class associated with the structure variable:
  • If a structure variable has static storage, its members are implicitly initialized to zero of the appropriate type.
  • If a structure variable has automatic storage, its members have no default initialization.

If a structure variable is partially initialized, all the uninitialized structure members are implicitly initialized to zero no matter what the storage class of the structure variable is. See the following example:

struct one {
   int a;
   int b;
   int c;
};
void main(){
   struct one z1;               // Members in z1 do not have default initial values.
   static struct one z2;        // z2.a=0, z2.b=0, and z2.c=0.
   struct one z3 = {1};         // z3.a=1, z3.b=0, and z3.c=0.
}


In this example, structure variable z1 has automatic storage, and it does not have an initializer, so all the members in z1 do not have default initial values. Structure variable z2 has static storage, and all its members are implicitly initialized to zero. Structure variable z3 is partially initialized, so all its uninitialized members are implicitly initialized to zero.

You do not have to initialize all members of a union. The default initializer for a union with static storage is the default for the first component. A union with automatic storage has no default initialization.


Topic location: Expressions and Operators > Unary expressions > The __real__ and __imag__ operators (C only) (IBM extension)

The topic title should be:

The __real__ and __imag__ operators (IBM extension)


Compiler Reference
The following corrections and additions apply to the IBM XL C/C++ for AIX, V11.1 Compiler Reference:

Topic location: Configuring compiler defaults > Setting environment variables > Environment variables for parallel processing

In "XLSMPOPTS", the description of stack=num should read:

stack=num
    Specifies the largest amount of space in bytes (num) that a thread's stack needs. The default value for num is 4194304.

    Set num so it is within the acceptable upper limit. num can be up to 256 MB for 32-bit mode, or up to the limit imposed by system resources for 64-bit mode. An application that exceeds the upper limit may cause a segmentation fault.

Topic location: Configuring compiler defaults > Setting environment variables > Environment variables for parallel processing > OpenMP environment variables for parallel processing > OMP_STACKSIZE environment variable

The default value for 32-bit mode is 256M. For 64-bit mode, the default is up to the limit imposed by system resources.

Should read:

The default value is 4194304B. The maximum value for 32-bit mode is 256M. For 64-bit mode, the maximum is up to the limit imposed by system resources.


Topic location: Tracking and reporting compiler usage > Generating usage reports

In "Understanding usage reports", the following sample reports should be listed:

Here are the sample reports generated with the two different report types:

Sample 1: A sample report generated with -qreporttype=detail



Sample 2: A sample report generated with -qreporttype=maxconcurrent




Topic location: Compiler options reference > Individual option descriptions > -qdfp

The following new information is added:

Note: To use decimal floating-point types and literals, you must also enable specific code in header files by defining the __STDC_WANT_DEC_FP__ macro at compiler time. See Examples.

Examples
To compile myprogram.c so that the compiler supports decimal floating-point types and literals, enter:
xlc myprogram.c -qarch=pwr7 -qdfp -D__STDC_WANT_DEC_FP__


Topic location: Compiler options reference > Individual option descriptions > -qinline

Defaults
  • -qnoinline
  • At an optimization level of -O0, the default is -qinline=noauto
  • At optimization levels of -O2 and higher, the default is -qinline=auto
  • -qinline=auto:level=5 is the default suboption of -qinline

Should read:
  • -qnoinline
  • At optimization levels of -O2 and higher, the default is -qinline=noauto
  • -qinline=auto:level=5 is the default suboption of -qinline


Topic location: Compiler options reference > Individual option descriptions > -O, -qoptimize

The following statement should be added under "Usage":

If optimization level -O3 or higher is specified on the command line, the -qhot and -qipa options that are set by the optimization level cannot be overridden by #pragma option_override(identifier, "opt(level, 0)") or #pragma option_override(identifier, "opt(level, 2)").


Topic location: Compiler options reference > Individual option descriptions > -qpdf1, -qpdf2

exename
Generates the name of the PDF file based on what you specify with the -o option. For example, you can use -qpdf1=exename -o foo foo.f to generate a PDF file called .foo_pdf.

should read:

exename
Sets the name of the generated PDF file based on what you specify with the -o option. For example, you can use -qpdf1=exename -o foo foo.c to generate a PDF file called .foo_pdf.


Topic location: Compiler options reference > Individual option descriptions > -qipa

file_name
Gives the name of a file which contains suboption information in a special format.
The file format is the following:

# ... comment
attribute{, attribute} = name{, name}

missing =
attribute{, attribute}
exits =
name{, name}
lowfreq =
name{, name}
inline
inline [ = auto | = noauto ]
inline =
name{, name} [ from name{, name}]
inline-threshold =
unsigned_int
inline-limit =
unsigned_int
list [ = file-name | short | long ]
noinline
noinline =
name{, name} [ from name{, name}]
level = 0 | 1 | 2
partition = small | medium | large  


Should read:

file_name
Gives the name of a file which contains suboption information in a special format.
The file format is the following:

# ... comment
attribute{, attribute} = name{, name}
missing =
attribute{, attribute}
exits =
name{, name}
lowfreq =
name{, name}
list [ = file-name | short | long ]
level = 0 | 1 | 2
partition = small | medium | large


Topic location: Compiler options reference > Individual option descriptions > -qtune

The following rows in the Acceptable -qarch/-qtune combinations table:

-qarch optionDefault -qtune settingAvailable -qtune settings
pwr4pwr4auto | pwr4 | pwr5 | pwr7 | ppc970 | balanced
pwr5pwr5auto | pwr5 | pwr7 | balanced
pwr5xpwr5auto | pwr5 | pwr7 | balanced

Should read:

-qarch optionDefault -qtune settingAvailable -qtune settings
pwr4pwr4auto | pwr4 | pwr5 | pwr6 | pwr7 | ppc970 | balanced
pwr5pwr5auto | pwr5 | pwr6 | pwr7 | balanced
pwr5xpwr5auto | pwr5 | pwr6 | pwr7 | balanced


Topic location: Compiler pragmas reference > Individual pragma descriptions > #pragma option_override

Syntax



Should read:



Parameters

#pragma option_override valueEquivalent compiler option
level, 0-O
level, 2-O2
level, 3-O3
level, 4-O4
level, 5-O5
registerspillsize, size-qspill=size
size-qcompact
size, yes
size, no-qnocompact
strict, all-qstrict, -qstrict=all
strict, no, none-qnostrict
strict, suboption_list-qstrict=suboption_list

Should read:

#pragma option_override valueEquivalent compiler option
level, 0-O1
level, 2-O21
level, 3-O32
registerspillsize, size-qspill=size
size-qcompact
size, yes
size, no-qnocompact
strict -qstrict, -qstrict=all
strict, yes
strict, no-qnostrict
strict, suboption_list-qstrict=suboption_list

Notes:
1. If optimization level -O3 or higher is specified on the command line, #pragma option_override(identifier, "opt(level, 0)") or #pragma option_override(identifier, "opt(level, 2)") does not turn off the implication of the -qhot and -qipa options.
2. Specifying -O3 implies -qhot=level=0. However, specifying #pragma option_override(identifier, "opt(level, 3)") in source code does not imply -qhot=level=0.

Topic location: Compiler pragmas reference > Individual pragma descriptions > #pragma reg_killed_by

fs
    Floating-point and status control register

Should read:

fsr
    Floating-point and status control register


Topic location: Compiler pragmas reference > Individual pragma descriptions > #pragma stream_unroll

Examples

Should read:

The following example shows how #pragma stream_unroll can increase performance.

int i, m, n;
int a[1000];
int b[1000];
int c[1000];

....

#pragma stream_unroll(4)
for (i=0; i<n; i++) {
 a[i] = b[i] * c[i];
}


The unroll factor of 4 reduces the number of iterations from n to n/4, as follows:

m = n/4;

for (i=0; i<n/4; i++){
 a[i] = b[i] + c[i];
 a[i+m] = b[i+m] + c[i+m];
 a[i+2*m] = b[i+2*m] + c[i+2*m];
 a[i+3*m] = b[i+3*m] + c[i+3*m];
}


The increased number of read and store operations are distributed among a number of streams determined by the compiler, which reduces computation time and increase performance.

Topic location: Compiler predefined macros > Macros indicating the XL C/C++ compiler product

The Description and Predefined value of __xlC__ should be updated as follows:

Predefined macro nameDescriptionPredefined value
__xlC__Indicates the VR level of the XL C and XL C++ compilers in hexadecimal format. Using the XL C compiler also automatically defines this macro.A four-digit hexadecimal integer in the format 0xVVRR, where:

V
    Represents the version number
R
    Represents the release number

In XL C/C++ V11.1, the value of the macro is 0x0a01.

The following predefined macro should be added in the table:

Predefined macro nameDescriptionPredefined value
__xlC_ver__Indicates the MF level of the XL C and XL C++ compilers in hexadecimal format. Using the XL C compiler also automatically defines this macro.An eight-digit hexadecimal integer in the format 0x0000MMFF, where:

M
    Represents the modification number
F
    Represents the fix level

In XL C/C++ V11.1, PTF 10.1.0.3, the value of the macro is 0x00000003.


Topic location: Compiler built-in functions > Synchronization and atomic built-in functions > Synchronization functions > __lwsync, __iospace_lwsync

Load Word Synchronize

Should read:

Lightweight Synchronize


Optimization and Programming Guide
The following corrections and additions apply to the IBM XL C/C++ for AIX, V11.1 Optimization and Programming Guide:

Topic location: Handling floating-point operations > Compiling a decimal floating-point program

The following text:

If you are using decimal floating-point formats in your programs, use the -qdfp option when you compile them. For example, to compile the following Hello World program dfp_hello.c, the compiler invocation is:
xlc -qdfp dfp_hello.c

Should read:

If you are using decimal floating-point formats in your programs, use the -qdfp option and define the __STDC_WANT_DEC_FP__ macro when you compile them.

For example, to compile dfp_hello.c, use the following compiler invocation:


xlc dfp_hello.c -qdfp -qarch=pwr7 -D__STDC_WANT_DEC_FP__


Topic location: Using C++ templates > Using the -qtemplateregistry compiler option

The following two paragraphs should be deleted:

If you want to use either -qtemplateregistry or -qtempinc to compile your programs, you must organize your source code with -qtempinc. See the examples described in the Example of -qtempinc section for more information.

If you also want to compile your program with -qtempinc, you must organize your source code so that it can be compiled with and without -qtempinc.


Topic location: Using the C++ utilities > Demangling compiled C++ names > Demangling compiled C++ names with the demangle class library

The following note should be added:

Note: The demangle class library is not threadsafe. If the library functions are used in a multithreaded program, calls to these functions must be serialized.


Topic location: Optimizing your applications > Using profile-directed feedback

To use PDF, follow these steps:

2. Run the program all the way through using data that is representative of the data that is used during a normal run of your finished program. The program records profiling information when it finishes. You can run the program multiple times with different data sets, and the profiling information is accumulated to provide a count of how often branches are taken and blocks of code are executed, based on the input data used. When the application exits, by default, it writes profiling information to the PDF file in the current working directory or the directory specified by the PDFDIR environment variable. The default name for the instrumentation file is ._pdf . To override the defaults, use -qpdf1=pdfname or -qpdf2=pdfname.

Should read:

2. Run the program all the way through using data that is representative of the data that is used during a normal run of your finished program. The program records profiling information when it finishes. You can run the program multiple times with different data sets, and the profiling information is accumulated to provide a count of how often branches are taken and blocks of code are executed, based on the input data used. When the application exits, by default, it writes profiling information to the PDF file in the current working directory or the directory specified by the PDFDIR environment variable. The default name for the instrumentation file is ._pdf . To override the defaults, use -qpdf1=pdfname or -qpdf1=exename.

You can take more control of the PDF file generation, as follows:

3. Change the PDF file location specified by the PDFDIR environment variable or the -qipa=pdfname option to produce a PDF file in a different location.

Should read:

3. Change the PDF file location specified by the PDFDIR environment variable or the -qpdf1=pdfname option to produce a PDF file in a different location.

Topic location: Optimizing your applications > Using profile-directed feedback > Viewing profiling information with showpdf

3. Run the showpdf utility to display the call and block counts for the executable file. If you used the -qipa=pdfname option during compilation, use the -f option to indicate the instrumentation file.

Should read:

3. Run the showpdf utility to display the call and block counts for the executable file. If you used the -qpdf[1|2]=pdfname option during compilation, use the -f option to indicate the instrumentation file.

Topic location: Debugging optimized code > Using -qoptdebug to help debug optimized programs

Example 2 and Example 3 should read:

Example 2: dbx debugger listing



Example 3: Stepping through optimized source




Man pages
The following corrections and additions apply to the IBM XL C/C++ for AIX, V11.1 man pages:

 -qipa[=<suboptions_list>] | -qnoipa

           

[{"Product":{"code":"SSGH3R","label":"XL C\/C++ for AIX"},"Business Unit":{"code":"BU058","label":"IBM Infrastructure w\/TPS"},"Component":"Documentation","Platform":[{"code":"PF002","label":"AIX"}],"Version":"11.1","Edition":"","Line of Business":{"code":"LOB57","label":"Power"}}]

Document Information

Modified date:
06 December 2018

UID

swg21423954