Hi!
I am planning a migration from COBOL 4.2 to 6.1 (after attempting 5.1 and 5.2). I have applied the Dec 2016 APAR and I am running on a zBC12 machine. What I am seeing is a *huge* increase in compile time (both elapsed and cpu) for my test programs. Here are some 4.2 totals:
SEG120I ------------------------------------------------------------------------
J o b E n d S t a t i s t i c s
Job Name: BOXWELL5 System ID: Z100 Submit: 10-Feb-2017 10:53:06 PM
Job JESID: JOB03759 MVS level: SP7.2.1 Start: 10-Feb-2017 10:53:06 PM
Job Class: A End: 10-Feb-2017 10:53:32 PM
CPU (TCB): 00:00:22.54 Storage below 16M: 8,928k
CPU (SRB): 00:00:00.15 Storage above 16M: 1,710,540k
Trans Act: 00:00:26.01 Service Units: 97,705
Tape Mnts: 0 Total EXCPs: 8,214
---------------Paging--------------- ---------------Paging---------------
VIO In: 10,773 VIO Out: 9,106
Pages In: 0 Pages Out: 0
Common (LPA+CSA): 271 Hiperspace: 0
VIO Reclaims: 20 Pages Stolen: 0
23 Secs CPU and 26 Secs elapsed. Run this now with the 6.1 Libs:
SEG120I ------------------------------------------------------------------------
J o b E n d S t a t i s t i c s
Job Name: BOXWELL5 System ID: Z100 Submit: 10-Feb-2017 10:36:08 PM
Job JESID: JOB03758 MVS level: SP7.2.1 Start: 10-Feb-2017 10:36:08 PM
Job Class: A End: 10-Feb-2017 10:42:48 PM
CPU (TCB): 00:06:22.55 Storage below 16M: 900k
CPU (SRB): 00:00:00.16 Storage above 16M: 225,768k
Trans Act: 00:06:39.43 Service Units: 18,891,423
Tape Mnts: 0 Total EXCPs: 22,593
---------------Paging--------------- ---------------Paging---------------
VIO In: 13,276 VIO Out: 9,782
Pages In: 0 Pages Out: 0
Common (LPA+CSA): 7 Hiperspace: 0
VIO Reclaims: 15 Pages Stolen: 0
I get six minutes added!! What can I have done wrong ?? VIO? Compile options are basic to say the least:
//COMP EXEC PGM=IGYCRCTL,REGION=0M,
// PARM='OPTFILE'
//SYSOPTF DD DATA,DLM=$$
APOST,BUF(32760),LC(0),OPT(1),NOSEQ,ARCH(10),
TRUNC(BIN),BLOCK0
$$
//STEPLIB DD DISP=SHR,DSN=IGY610.SIGYCOMP
* Statistics for COBOL program WLXPM100:
* Source records = 57196
* Data Division statements = 8350
* Procedure Division statements = 23002
* Generated COBOL statements = 0
* Program complexity factor = 23056
End of compilation 1, program WLXPM100, no statements flagged.
Return code 0
Not exactly a beast...
Any ideas what I can change??
Roy
rldbox