COMPILATION LISTING OF SEGMENT plio2_octptr_ Compiled by: Multics PL/I Compiler, Release 28d, of September 14, 1983 Compiled at: Honeywell LCPD Phoenix, System M Compiled on: 10/03/83 1417.0 mst Mon Options: optimize map 1 /* ****************************************************** 2* * * 3* * * 4* * Copyright (c) 1972 by Massachusetts Institute of * 5* * Technology and Honeywell Information Systems, Inc. * 6* * * 7* * * 8* ****************************************************** */ 9 10 plio2_octptr_:proc options(support); 11 octptr:entry(s,o) returns(ptr); 12 dcl (s,o) char(*); 13 14 dcl op ptr; 15 dcl (substr,addr,null,index,length) builtin; 16 dcl (si,oi,i,ti) fixed bin(17); 17 dcl 1 ptrform aligned based(addr(op)), 18 2 filler(4) fixed bin(17) unaligned; 19 20 op=null; 21 si,oi=0; 22 23 do i=1 to length(s); 24 ti=index("01234567",substr(s,i,1)); 25 if ti=0 then goto badptr; 26 si=si*8+ti-1; 27 end; 28 29 do i=1 to length(o); 30 ti=index("01234567",substr(o,i,1)); 31 if ti=0 then goto badptr; 32 oi=oi*8+ti-1; 33 end; 34 35 filler(1)=si; 36 filler(3)=oi; 37 38 badptr: 39 return(op); 40 end plio2_octptr_; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 10/03/83 1005.4 plio2_octptr_.pl1 >spec>on>pl128d>plio2_octptr_.pl1 NAMES DECLARED IN THIS COMPILATION. IDENTIFIER OFFSET LOC STORAGE CLASS DATA TYPE ATTRIBUTES AND REFERENCES (* indicates a set context) NAMES DECLARED BY DECLARE STATEMENT. addr builtin function dcl 15 ref 35 36 filler based fixed bin(17,0) array level 2 packed unaligned dcl 17 set ref 35* 36* i 000104 automatic fixed bin(17,0) dcl 16 set ref 23* 24* 29* 30* index builtin function dcl 15 ref 24 30 length builtin function dcl 15 ref 23 29 null builtin function dcl 15 ref 20 o parameter char unaligned dcl 12 ref 11 29 30 oi 000103 automatic fixed bin(17,0) dcl 16 set ref 21* 32* 32 36 op 000100 automatic pointer dcl 14 set ref 20* 35 36 38 ptrform based structure level 1 dcl 17 s parameter char unaligned dcl 12 ref 11 23 24 si 000102 automatic fixed bin(17,0) dcl 16 set ref 21* 26* 26 35 substr builtin function dcl 15 ref 24 30 ti 000105 automatic fixed bin(17,0) dcl 16 set ref 24* 25 26 30* 31 32 NAMES DECLARED BY EXPLICIT CONTEXT. badptr 000162 constant label dcl 38 ref 25 31 octptr 000032 constant entry external dcl 11 plio2_octptr_ 000015 constant entry external dcl 10 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 226 236 174 236 Length 402 174 10 130 32 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME plio2_octptr_ 75 external procedure is an external procedure. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME plio2_octptr_ 000100 op plio2_octptr_ 000102 si plio2_octptr_ 000103 oi plio2_octptr_ 000104 i plio2_octptr_ 000105 ti plio2_octptr_ THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. return signal ext_entry ext_entry_desc set_support NO EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. NO EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 10 000014 11 000025 20 000054 21 000056 23 000060 24 000073 25 000106 26 000107 27 000114 29 000116 30 000131 31 000144 32 000145 33 000152 35 000154 36 000157 38 000162 ----------------------------------------------------------- Historical Background This edition of the Multics software materials and documentation is provided and donated to Massachusetts Institute of Technology by Group BULL including BULL HN Information Systems Inc. as a contribution to computer science knowledge. This donation is made also to give evidence of the common contributions of Massachusetts Institute of Technology, Bell Laboratories, General Electric, Honeywell Information Systems Inc., Honeywell BULL Inc., Groupe BULL and BULL HN Information Systems Inc. to the development of this operating system. Multics development was initiated by Massachusetts Institute of Technology Project MAC (1963-1970), renamed the MIT Laboratory for Computer Science and Artificial Intelligence in the mid 1970s, under the leadership of Professor Fernando Jose Corbato. Users consider that Multics provided the best software architecture for managing computer hardware properly and for executing programs. Many subsequent operating systems incorporated Multics principles. Multics was distributed in 1975 to 2000 by Group Bull in Europe , and in the U.S. by Bull HN Information Systems Inc., as successor in interest by change in name only to Honeywell Bull Inc. and Honeywell Information Systems Inc. . ----------------------------------------------------------- Permission to use, copy, modify, and distribute these programs and their documentation for any purpose and without fee is hereby granted,provided that the below copyright notice and historical background appear in all copies and that both the copyright notice and historical background and this permission notice appear in supporting documentation, and that the names of MIT, HIS, BULL or BULL HN not be used in advertising or publicity pertaining to distribution of the programs without specific prior written permission. Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information Systems Inc. Copyright 2006 by BULL HN Information Systems Inc. Copyright 2006 by Bull SAS All Rights Reserved