Re: Enterprise COBOL code generation question

2009-06-13 Thread Chase, John
-Original Message- From: IBM Mainframe Discussion List On Behalf Of Clark Morris On 1 May 2009 07:52:30 -0700, in bit.listserv.ibm-main you wrote: -Original Message- From: IBM Mainframe Discussion List On Behalf Of Phil Sidler On Fri, 1 May 2009 08:38:59 -0500,

Re: Enterprise COBOL code generation question

2009-06-12 Thread Clark Morris
On 1 May 2009 07:52:30 -0700, in bit.listserv.ibm-main you wrote: -Original Message- From: IBM Mainframe Discussion List On Behalf Of Phil Sidler On Fri, 1 May 2009 08:38:59 -0500, Chase, John wrote: Thanks for pointing out the benefit of TRUNC(OPT) to me. But then there's

Re: Enterprise COBOL code generation question

2009-05-07 Thread Clark Morris
. -Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Rick Arellanes Sent: Friday, May 01, 2009 12:29 PM To: IBM-MAIN@bama.ua.edu Subject: Re: Enterprise COBOL code generation question On Fri, 1 May 2009 08:38:59 -0500, Chase, John jch...@ussco.com wrote

Re: Enterprise COBOL code generation question

2009-05-01 Thread Chase, John
-Original Message- From: IBM Mainframe Discussion List On Behalf Of Farley, Peter x23353 -Original Message- From: IBM Mainframe Discussion List On Behalf Of Clark Morris Snipped On 30 Apr 2009 13:00:02 -0700, in bit.listserv.ibm-main you wrote: Try TRUNC(OPT). Trunc

Re: Enterprise COBOL code generation question

2009-05-01 Thread Phil Sidler
On Fri, 1 May 2009 08:38:59 -0500, Chase, John jch...@ussco.com wrote: Thanks for pointing out the benefit of TRUNC(OPT) to me. But then there's this in the Notes for TRUNC in the Installation Customization Guide: 2. TRUNC=BIN is the recommended option when interfacing with other products

Re: Enterprise COBOL code generation question

2009-05-01 Thread Clark Morris
On 1 May 2009 06:41:19 -0700, in bit.listserv.ibm-main you wrote: -Original Message- From: IBM Mainframe Discussion List On Behalf Of Farley, Peter x23353 -Original Message- From: IBM Mainframe Discussion List On Behalf Of Clark Morris Snipped On 30 Apr 2009 13:00:02

Re: Enterprise COBOL code generation question

2009-05-01 Thread Farley, Peter x23353
-Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Chase, John Sent: Friday, May 01, 2009 9:39 AM To: IBM-MAIN@bama.ua.edu Subject: Re: Enterprise COBOL code generation question Snipped But then there's this in the Notes for TRUNC

Re: Enterprise COBOL code generation question

2009-05-01 Thread Chase, John
-Original Message- From: IBM Mainframe Discussion List On Behalf Of Phil Sidler On Fri, 1 May 2009 08:38:59 -0500, Chase, John wrote: Thanks for pointing out the benefit of TRUNC(OPT) to me. But then there's this in the Notes for TRUNC in the Installation Customization Guide:

Re: Enterprise COBOL code generation question

2009-05-01 Thread Ted MacNEIL
So, we're stuck with TRUNC(BIN) in CICS, where arguably we'd want the best performance. :-( Are you implying that CPU is your primary performance concern? I've been a performance/capacity analys for almost 30 years, and rarely has CPU been the problem. IO paging (which should be rare) have

Re: Enterprise COBOL code generation question

2009-05-01 Thread Rick Arellanes
On Fri, 1 May 2009 08:38:59 -0500, Chase, John jch...@ussco.com wrote: -Original Message- From: IBM Mainframe Discussion List On Behalf Of Farley, Peter x23353 -Original Message- From: IBM Mainframe Discussion List On Behalf Of Clark Morris Snipped On 30 Apr 2009

Re: Enterprise COBOL code generation question

2009-05-01 Thread Schumacher, Otto
...@eds.com We deliver on our commitments so you can deliver on yours. -Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Rick Arellanes Sent: Friday, May 01, 2009 12:29 PM To: IBM-MAIN@bama.ua.edu Subject: Re: Enterprise COBOL code generation

Re: Enterprise COBOL code generation question

2009-05-01 Thread Steve Comstock
...@bama.ua.edu] On Behalf Of Rick Arellanes Sent: Friday, May 01, 2009 12:29 PM To: IBM-MAIN@bama.ua.edu Subject: Re: Enterprise COBOL code generation question On Fri, 1 May 2009 08:38:59 -0500, Chase, John jch...@ussco.com wrote: -Original Message- From: IBM Mainframe Discussion List

Fw: Enterprise COBOL code generation question

2009-05-01 Thread Bill Klein
I will defer to Rick Arellanes (who has already replied) on this (and most performance questions). HOWEVER, I do want to re-iterate that *if* performance is of concern to you, the best general rule is to compile with TRUNC(OPT) and use COMP-5 for specific fields that MAY have values larger

Enterprise COBOL code generation question

2009-04-30 Thread Farley, Peter x23353
I am failing to understand something about the code generation that the Enterprise COBOL compiler (V3.4.1) performs. For a WORKING-STORAGE variable defined like this: 77 WORK-WORD9 PIC S9(09) BINARY. with TRUNC(BIN) and OPTIMIZE(STD) in effect, this IF statement: IF (WORK-WORD9 -1)

Re: Enterprise COBOL code generation question

2009-04-30 Thread Steve Comstock
Farley, Peter x23353 wrote: I am failing to understand something about the code generation that the Enterprise COBOL compiler (V3.4.1) performs. For a WORKING-STORAGE variable defined like this: 77 WORK-WORD9 PIC S9(09) BINARY. with TRUNC(BIN) and OPTIMIZE(STD) in effect, this IF

Re: Enterprise COBOL code generation question

2009-04-30 Thread Farley, Peter x23353
-Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Steve Comstock Sent: Thursday, April 30, 2009 3:30 PM To: IBM-MAIN@bama.ua.edu Subject: Re: Enterprise COBOL code generation question Snipped Peter, I can't speak with authority

Re: Enterprise COBOL code generation question

2009-04-30 Thread Clark Morris
On 30 Apr 2009 13:00:02 -0700, in bit.listserv.ibm-main you wrote: -Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Steve Comstock Sent: Thursday, April 30, 2009 3:30 PM To: IBM-MAIN@bama.ua.edu Subject: Re: Enterprise COBOL code

Re: Enterprise COBOL code generation question

2009-04-30 Thread Farley, Peter x23353
-Original Message- From: IBM Mainframe Discussion List [mailto:ibm-m...@bama.ua.edu] On Behalf Of Clark Morris Sent: Thursday, April 30, 2009 7:03 PM To: IBM-MAIN@bama.ua.edu Subject: Re: Enterprise COBOL code generation question Snipped On 30 Apr 2009 13:00:02 -0700