noft Manual (G06.26+)
Table Of Contents
- What’s New in This Manual
- About This Manual
- 1 Introduction
- 2 noft Utility
- 3 noft Options
- Break Key
- ! (Exclamation Point)
- CD
- COMMENT
- DUMPADDRESS or DA
- DUMPOFFSET or DO
- DUMPPROC or DP
- DYNSTR2
- ENV
- EXIT or E
- FC
- FILE or F
- HELP or ?
- HISTORY or H
- LAYOUT
- LIBLIST
- LISTATTRIBUTE or LA
- LISTCOMPILERS or LC
- LISTOPTIMIZE or LO
- LISTPROC or LP
- LISTSOURCE or LS
- LISTSRLEXPORTS or LLE
- LISTSRLFIXUPS or LLF
- LISTSRLINFO or LLI
- LISTUNREFERENCED or LUR
- LISTUNRESOLVED or LU
- LOG
- OBEY
- OUT
- QUIT or Q
- RESET
- SET
- SHOW
- SYSTEM or VOLUME
- XREFPROC or XP
- 4 noft Diagnostic Messages
- 5 ar Utility
- 6 ar Diagnostic Messages
- A Sample nld and noft Session
- B Converting From Binder to noft
- C Native Object File Structure
- Glossary
- Index

noft Options
noft Manual—528273-001
3-29
LISTPROC or LP
BRIEF
B
provides minimal information about procedures and subprocedures. This is the
default.
DETAIL
D
provides detailed information about procedures and subprocedures. For C++
functions, DETAIL provides the “demangled” (original) names as well as the
“mangled” internal equivalents.
The scope settings apply only to the list of procedures.
Example 3-21. LISTPROC Option (BRIEF)
noft> listproc *
******** List of Procedures ********
# Address Procedure
0 0x70000390 l_to_str__FPcl
1 0x700004a4 main
2 0x7000092c __pl__5pointFR5point
3 0x70000a1c __apl__5pointFR5point
4 0x70000aac __pp__5pointFi
5 0x70000c48 __pp__5pointFv
6 0x70000d58 print__5pointFv
7 0x70000dd0 __apl__6stringFR6string
8 0x70000ee8 __vc__6stringFi
9 0x70000f64 print__6stringFv
10 0x70000fa0 __INIT__1_C
11 0x70000fe4 _MAIN
12 0x70001030 T8432D40_01NOV95_CRTLMAIN
Example 3-22. LISTPROC Option (DETAIL)
noft> listproc __pp__5pointFi detail
******** List of Procedures ********
Number : 4
Name :
__pp__5pointFi
Demangled Name :
point::operator ++(int)
Address : 0x70000aac
Size : 412 bytes
Resident : No
Privileged : No
Callable : No
Interrupt : No
Alternate Entry Point : No
Subprocedure : No
Visibility : External
Optimization Level : 1
Parent Procedure : (none)
Source File : \CYCLONE.$NATIV1.CRGCPP.SPOINT
Note. Visibility has two values, External and Static. Static is given for pTAL subprocedures or if
local symbols exist and the function symbol type is static. Otherwise, External is given.