IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

E Pl/i - How to display INIT value in load module....


IBM Mainframe Forums -> PL/I & Assembler
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
rbrkumaran1

New User


Joined: 12 Mar 2008
Posts: 7
Location: India

PostPosted: Thu Jun 10, 2010 12:58 pm
Reply with quote

I am in the migration of MVS to Enterprise Pl/i.

Currently in MVS version, we display the change version, compile time and copyright information in the load module by having dummy variables initialized with those information.

With E PL/i, we are not able to see the same in the load module. Is there any compile option or something I am missing for E PL/i?


Please provide me a solution

Sample:

Code:

%DCL COMP_TIME CHAR;                                                 
%DCL COPY_MSG  CHAR;                                                 
%COMP_TIME=''''||COMPILETIME||'''';                                   
%COPY_MSG ='''@   COPYRIGHT SAMPLE INC., 20' ||  SUBSTR(COMP_TIME,9,2) || '   @''';
DCL 1 AF01_TRIGGER,                                                   
      2 COMPDTE CHAR(20) INIT(COMP_TIME),                             
      2 LEVEL   CHAR(03) INIT('17 '           ),           
      2 FILL_2  CHAR(05) INIT(' VER:'         ),                     
      2 PGMNAME CHAR(08) INIT(' PGM1289'      ),                     
      2 FILL_0  CHAR(45) INIT(                                       
/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/
        COPY_MSG);
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10872
Location: italy

PostPosted: Thu Jun 10, 2010 1:20 pm
Reply with quote

get the assembler listing for a simple hallo world program
see what gets generated and start from there

just guessing ...
e/PLI optimization might be more aggressive and discard all the unreferenced variables
Back to top
View user's profile Send private message
prino

Senior Member


Joined: 07 Feb 2009
Posts: 1306
Location: Vilnius, Lithuania

PostPosted: Thu Jun 10, 2010 3:48 pm
Reply with quote

enrico-sorichetti wrote:
just guessing ...
e/PLI optimization might be more aggressive and discard all the unreferenced variables


Correct, but there is a compiler option to keep some of them, "STATIC(FULL)". Don't know in which version it was introduced, the oldest manual I have here if for EP V3R5 and here it was present.

Don't know if there is a way to keep unused AUTOMATIC variables, but if you change the init of one of the fields in your structure to an assignment, that should do the trick.
Back to top
View user's profile Send private message
rbrkumaran1

New User


Joined: 12 Mar 2008
Posts: 7
Location: India

PostPosted: Thu Jun 10, 2010 7:04 pm
Reply with quote

enrico-sorichetti wrote:
get the assembler listing for a simple hallo world program
see what gets generated and start from there

just guessing ...
e/PLI optimization might be more aggressive and discard all the unreferenced variables


You guessing is correct... It flushed the unreferenced variables. .... Thanks a lot for your solution...
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> PL/I & Assembler

 


Similar Topics
Topic Forum Replies
No new posts Load new table with Old unload - DB2 DB2 6
No new posts How to load to DB2 with column level ... DB2 6
No new posts REASON 00D70014 in load utility DB2 6
No new posts How to display the leading zeros of a... DB2 7
No new posts DB2 Load - Sort Or order BY DB2 1
Search our Forums:

Back to Top