 |
» |
|
|
|
|  |  |
These pragmas can improve performance of shared libraries
by reducing the overhead of calling shared library routines. You
must be very careful using these pragmas because incorrect use can
result in incorrect and unpredictable behavior. See also the HP-UX
Linker and Libraries User's Guide for more information
on improving shared library performance. HP_LONG_RETURN
Pragma |  |
This pragma improves performance of shared library calls by
omitting export stubs and using a long return instruction sequence
instead. An export stub is a short code segment generated by the
linker for a global definition in a shared library. External calls
to shared library functions go through the export stub. Put this pragma in header files of functions that will go
in shared libraries so it is specified at the function definition
and at all calls. For functions with floating point parameters or
returns, use the HP_NO_RELOCATION pragma along
with this pragma.  |  |  |  |  | WARNING! This pragma must be at the function
definition and at all call sites. If the pragma
is omitted from the function definition or from any call, the compiler
will generate incompatible return code and the application will
behave incorrectly. |  |  |  |  |
#pragma HP_LONG_RETURN
name1[, name2[,
...]] where name1, name2,
and so forth are names of functions in shared libraries. An export stub is generated by default for each function in
a shared library. Each call to the function goes through the export
stub. The export stub serves two purposes: to relocate parameters
and perform an interspace return. The HP_LONG_RETURN pragma generates a long
return sequence in the export stub instead of an interspace branch.
If you also use the HP_NO_RELOCATION pragma (for
functions taking floating point parameters) with the HP_LONG_RETURN
pragma, all the code in the export stub is omitted, eliminating
the export stub entirely. The HP_LONG_RETURN pragma
by itself eliminates the need for export stubs for functions taking
non-floating-point parameters. HP_DEFINED_EXTERNAL Pragma |  |
This pragma improves performance of shared library calls by
inlining import stubs. Place this pragma at calls to shared library
routines along with the HP_NO_RELOCATION pragma
(if using floating-point parameters or return values) and the HP_LONG_RETURN
pragma. #pragma HP_DEFINED_EXTERNAL name1[,
name2[, ...]]where
name1, name2,
and so forth are names of functions in shared libraries. Import stubs are code sequences generated at calls to shared
library routines. The import stub queries the PLT (Procedure Linkage
Table) to determine the address of the shared library function &
calls it. The HP_DEFINED_EXTERNAL pragma inlines
this import stub.
|