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

No difference with or not the parameter OPTIONS(INLINE)


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

New User


Joined: 01 Jun 2007
Posts: 11
Location: Soiron

PostPosted: Tue Jun 24, 2008 12:26 pm
Reply with quote

I would like use the parameter OPTIONS(INLINE).
But i don't see the difference.
Here is the source code that I use to test the option INLINE.

Code:
TEST:PROC OPTIONS(MAIN);                   
DCL SYSPRINT FILE STREAM OUTPUT PRINT;     
DCL I FIXED BIN(31) INIT(0);               
DCL E FIXED BIN(31) INIT(0);               
DCL F FIXED BIN(31) INIT(0);               
DCL C CHAR(250) INIT('');                   
DCL C_1 CHAR(1) BASED(PTRADD(ADDR(C),E-1));
DO I=1 TO 10_000;                           
  C='';                                     
  DO F=1 TO 250;                           
    CALL TEST1;                             
  END;                                     
END;                                       
TEST1:PROC REORDER OPTIONS(INLINE);         
DO E=250 TO 1 BY -1 WHILE(C_1='');         
END;                                       
E=E+1;                                     
C_1='A';                                   
END TEST1;                                 
END TEST;   


This test consumes CPU 0MIN 01.74SEC

The same code without option INLINE generates the same
assembler code and gives the same result.

I was expecting to have the same result as if the code of procedure TEST1 was in place of CALL.

Code:
TEST:PROC OPTIONS(MAIN);                   
DCL SYSPRINT FILE STREAM OUTPUT PRINT;     
DCL I FIXED BIN(31) INIT(0);               
DCL E FIXED BIN(31) INIT(0);               
DCL F FIXED BIN(31) INIT(0);               
DCL C CHAR(250) INIT('');                 
DCL C_1 CHAR(1) BASED(PTRADD(ADDR(C),E-1));
DO I=1 TO 10_000;                         
  C='';                                   
  DO F=1 TO 250;                           
    DO E=250 TO 1 BY -1 WHILE(C_1='');     
    END;                                   
    E=E+1;                                 
    C_1='A';                               
  END;                                     
END;                                       
END TEST;


This test consumes CPU 0MIN 01.69SEC

is what I used wrong or not understood the option INLINE?
Back to top
View user's profile Send private message
Gnanas N

Active Member


Joined: 06 Sep 2007
Posts: 792
Location: Chennai, India

PostPosted: Tue Jun 24, 2008 2:18 pm
Reply with quote

Hi,

This info is from QW INLINE.
Code:
Even if INLINE is specified, the compiler can choose not to inline the
begin-block or procedure.                                             
Back to top
View user's profile Send private message
robert-ohlen

New User


Joined: 01 Jun 2007
Posts: 11
Location: Soiron

PostPosted: Wed Jun 25, 2008 11:42 am
Reply with quote

What are cases where the compiler does not take into account the parameter INLINE ?
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 Using the Jobname parameter in a Qual... ABENDS & Debugging 1
No new posts Timestamp difference and its average ... DB2 11
No new posts Difference when accessing dataset in ... JCL & VSAM 7
No new posts Demand with DEADLINE TIME parameter CA Products 4
No new posts Option DYNALLOC second parameter. DFSORT/ICETOOL 11
Search our Forums:

Back to Top