COMPILATION LISTING OF SEGMENT stop_at Compiled by: Multics PL/I Compiler, Release 27d, of October 11, 1982 Compiled at: Honeywell LISD Phoenix, System M Compiled on: 11/15/82 1625.9 mst Mon Options: optimize map 1 /* *********************************************************** 2* * * 3* * Copyright, (C) Honeywell Information Systems Inc., 1982 * 4* * * 5* * Copyright (c) 1972 by Massachusetts Institute of * 6* * Technology and Honeywell Information Systems, Inc. * 7* * * 8* *********************************************************** */ 9 10 11 stop_at: proc(string); 12 13 dcl string char(*) unaligned, 14 (index, substr) builtin, 15 ln fixed bin(14), 16 fn fixed bin(8), 17 sn fixed bin(5), 18 (k,n) fixed bin, 19 cv_dec_ entry(char(*) aligned) returns(fixed bin), 20 (pl1_stat_$stop_id, cg_static_$stop_id) bit(27) external static; 21 22 n = index(string,"."); 23 fn = 0; 24 25 if n = 0 26 then do; 27 ln = cv_dec_((string)); 28 sn = 1; 29 end; 30 else do; 31 k = index(substr(string,n+1),"."); 32 if k = 0 33 then do; 34 ln = cv_dec_(substr(string,1,n-1)); 35 sn = cv_dec_(substr(string,n+1)); 36 end; 37 else do; 38 fn = cv_dec_(substr(string,1,n-1)); 39 ln = cv_dec_(substr(string,n+1,k-1)); 40 sn = cv_dec_(substr(string,n+k+1)); 41 end; 42 end; 43 44 cg_static_$stop_id, 45 pl1_stat_$stop_id = bit(fn,8) || bit(ln,14) || bit(sn,5); 46 47 end; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 11/15/82 1504.0 stop_at.pl1 >dumps>old>recomp>stop_at.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. cg_static_$stop_id 000014 external static bit(27) unaligned dcl 13 set ref 44* cv_dec_ 000010 constant entry external dcl 13 ref 27 34 35 38 39 40 fn 000101 automatic fixed bin(8,0) dcl 13 set ref 23* 38* 44 index builtin function dcl 13 ref 22 31 k 000103 automatic fixed bin(17,0) dcl 13 set ref 31* 32 39 39 40 40 ln 000100 automatic fixed bin(14,0) dcl 13 set ref 27* 34* 39* 44 n 000104 automatic fixed bin(17,0) dcl 13 set ref 22* 25 31 34 34 35 35 38 38 39 39 40 40 pl1_stat_$stop_id 000012 external static bit(27) unaligned dcl 13 set ref 44* sn 000102 automatic fixed bin(5,0) dcl 13 set ref 28* 35* 40* 44 string parameter char unaligned dcl 13 ref 11 22 27 31 34 34 35 35 38 38 39 39 40 40 substr builtin function dcl 13 ref 31 34 34 35 35 38 38 39 39 40 40 NAME DECLARED BY EXPLICIT CONTEXT. stop_at 000006 constant entry external dcl 11 NAME DECLARED BY CONTEXT OR IMPLICATION. bit builtin function ref 44 44 44 STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 410 426 341 420 Length 572 341 16 127 46 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME stop_at 86 external procedure is an external procedure. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME stop_at 000100 ln stop_at 000101 fn stop_at 000102 sn stop_at 000103 k stop_at 000104 n stop_at THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. alloc_cs call_ext_out_desc return shorten_stack ext_entry_desc THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. cv_dec_ THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. cg_static_$stop_id pl1_stat_$stop_id LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 11 000003 22 000021 23 000034 25 000035 27 000036 28 000063 29 000066 31 000067 32 000104 34 000105 35 000134 36 000166 38 000170 39 000217 40 000253 41 000312 44 000313 47 000340 ----------------------------------------------------------- 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