COMPILATION LISTING OF SEGMENT pudef_ Compiled by: Multics PL/I Compiler, Release 31a, of October 12, 1988 Compiled at: Honeywell Bull, Phoenix AZ, SysM Compiled on: 10/17/88 1004.1 mst Mon Options: optimize map 1 /****^ *********************************************************** 2* * * 3* * Copyright, (C) Honeywell Bull Inc., 1988 * 4* * * 5* * Copyright, (C) Honeywell Information Systems Inc., 1986 * 6* * * 7* *********************************************************** */ 8 9 10 11 /****^ HISTORY COMMENTS: 12* 1) change(86-10-01,JRGray), approve(86-10-01,MCR7507), 13* audit(86-10-27,RWaters), install(86-11-12,MR12.0-1202): 14* Created to allow for joining blocks to the definition section. 15* END HISTORY COMMENTS */ 16 17 pudef_: 18 procedure( pc, word, relwrd ) ; 19 20 /* makes calls to stack the definition words and stack the 21* associated relocation bits in the scratch segment */ 22 23 declare (pc, word, relwrd) fixed bin (26); 24 declare (lbits, rbits, itemp, nl, nr, i, ival ) fixed bin ( 17 ) aligned ; 25 1 1 /* Begin include file objnfo.incl.pl1. 1 2* Parameters saved for object map. 1 3* Last modified on 05/12/72 at 01:10:27 by R F Mabee. */ 1 4 1 5 1 6 /****^ HISTORY COMMENTS: 1 7* 1) change(86-10-01,JRGray), approve(86-10-01,MCR7507), 1 8* audit(86-10-27,RWaters), install(86-11-12,MR12.0-1202): 1 9* Modified to add definition count used to join blocks to the definition 1 10* section. 1 11* END HISTORY COMMENTS */ 1 12 1 13 declare 1 eb_data_$objnfo external static aligned, 1 14 2 (itxpc, ilkpc, istpc, idfpc, itxcnt, ilkcnt, istcnt, idfcnt) fixed bin (26) aligned, 1 15 2 (new_text_offset, new_definition_offset, new_link_offset, new_static_offset, new_symbol_offset) fixed bin (26) aligned, 1 16 2 (new_text_length, new_definition_length, new_link_length, new_static_length, new_symbol_length) fixed bin (26) aligned; 1 17 1 18 /* End of include file objnfo.incl.pl1. */ 26 27 28 declare object_$objdf ext entry (fixed bin (26), fixed bin (26)), 29 object_$wrbdf ext entry (fixed bin (26), fixed bin (26)), 30 object_$getbdf ext entry (fixed bin, fixed bin, fixed bin) ; 31 32 call object_$objdf( pc, word ) ; /* write the symbol into the scratch segment */ 33 34 call object_$wrbdf( pc, relwrd ) ; /* insert the relocation bits into the proper place in the scratch segment */ 35 36 37 return ; 38 39 40 41 42 defcnt: entry( ival ) ; /* entry to count the number of relocation bits for the definition portion */ 43 44 ival = 0 ; 45 46 itemp = idfpc - 1 ; 47 48 label_1000: 49 do i = 0 to itemp ; 50 51 call object_$getbdf( i, lbits, rbits ) ; 52 53 nl = 1 ; 54 55 nr = 1 ; 56 57 if lbits ^= 0 then nl = 5 ; 58 59 if rbits ^= 0 then nr = 5 ; 60 61 ival = nl + nr + ival ; 62 63 end label_1000 ; 64 65 66 idfcnt = ival ; 67 68 end pudef_ ; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 10/17/88 0938.3 pudef_.pl1 >spec>install>1170>pudef_.pl1 26 1 11/12/86 1103.0 objnfo.incl.pl1 >ldd>include>objnfo.incl.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. eb_data_$objnfo 000010 external static structure level 1 dcl 1-13 i 000105 automatic fixed bin(17,0) dcl 24 set ref 48* 51* idfcnt 7 000010 external static fixed bin(26,0) level 2 dcl 1-13 set ref 66* idfpc 3 000010 external static fixed bin(26,0) level 2 dcl 1-13 ref 46 itemp 000102 automatic fixed bin(17,0) dcl 24 set ref 46* 48 ival parameter fixed bin(17,0) dcl 24 set ref 42 44* 61* 61 66 lbits 000100 automatic fixed bin(17,0) dcl 24 set ref 51* 57 nl 000103 automatic fixed bin(17,0) dcl 24 set ref 53* 57* 61 nr 000104 automatic fixed bin(17,0) dcl 24 set ref 55* 59* 61 object_$getbdf 000016 constant entry external dcl 28 ref 51 object_$objdf 000012 constant entry external dcl 28 ref 32 object_$wrbdf 000014 constant entry external dcl 28 ref 34 pc parameter fixed bin(26,0) dcl 23 set ref 17 32* 34* rbits 000101 automatic fixed bin(17,0) dcl 24 set ref 51* 59 relwrd parameter fixed bin(26,0) dcl 23 set ref 17 34* word parameter fixed bin(26,0) dcl 23 set ref 17 32* NAMES DECLARED BY EXPLICIT CONTEXT. defcnt 000042 constant entry external dcl 42 label_1000 000056 constant label dcl 48 pudef_ 000006 constant entry external dcl 17 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 206 226 125 216 Length 406 125 20 144 61 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME pudef_ 86 external procedure is an external procedure. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME pudef_ 000100 lbits pudef_ 000101 rbits pudef_ 000102 itemp pudef_ 000103 nl pudef_ 000104 nr pudef_ 000105 i pudef_ THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out return_mac ext_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. object_$getbdf object_$objdf object_$wrbdf THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. eb_data_$objnfo LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 17 000002 32 000013 34 000024 37 000036 42 000037 44 000047 46 000051 48 000056 51 000063 53 000076 55 000100 57 000101 59 000105 61 000111 63 000115 66 000117 68 000124 ----------------------------------------------------------- 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