This portal is to open public enhancement requests against IBM Z Software products. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).
We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:
Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,
Post an idea.
Get feedback from the IBM team and other customers to refine your idea.
Follow the idea through the IBM Ideas process.
Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.
IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.
ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.
This has been delivered in V6.2
We will be considering this feature as a request for TEST(NODWARF) without modifying the EJPD setting; for a future compiler version. The RFE will be updated once this item has been put into plan.
For your information, we compile only one time at unitary test step and don't recompile after : what is tested is exactlly what will go in production.
So we need performance ( OPTIMIZE(1|2) ) and "testability" ( TEST(EJPD,xxxxx) ) at the same time.
We notice also that OPTIMIZE(1|2) without TEST(EJPD,xxxx) can introduce strange effect and false information in dump analysys : erroneous value in table indice, execution not in sequence....
Due to processing by IBM, this request was reassigned to have the following updated attributes:
Brand - Servers and Systems Software
Product family - Programming Languages
Product - COBOL Compilers
For recording keeping, the previous attributes were:
Brand - Rational
Product family - Design & development
Product - COBOL Compilers
Thanks for the info. This is being investigated internally. The RFE will be updated once we have more news.
EJPD maintains the one to one correspondence between the source and binary instruction sequences : a source instruction corresponds to one and only one interrupted binary sequence.
This is an essential condition to allow source-level debugging .
EJPD is needed for debuging (trace and also dump and performance analysis) when binary code is optimized.
Optimize(1|2) without EJPD produce binary code that is not debugable at source level, and is only debugable with LIST option to view each binary instruction with reference to source statment.
Our debug tools use directly the listing produced by compiler and no not use DWARF info, so DWARF info can be suppressed from program object for us, but binary code produced by EJPD is needed.
Our debug tools are compatible with code produced with OPTIMIZE (1|2) only with EJPD, (our debug tools need also XREF or LIST option to establish correspondance between source statment and binary instrction).
May we know why EJPD is needed?