COMPILATION LISTING OF SEGMENT !BBBJPMLHdBxjGb Compiled by: Multics PL/I Compiler, Release 28d, of October 4, 1983 Compiled at: Honeywell Multics Op. - System M Compiled on: 12/10/84 1132.7 mst Mon Options: table map 1 /* *********************************************************** 2* * * 3* * Copyright, (C) Honeywell Information Systems Inc., 1983 * 4* * * 5* *********************************************************** */ 6 gfms_ext:proc; 7 8 /* Generate object for "gfms_ext" data. 9* 10* Author: Dave Ward 1981 11* Modified: Ron Barstad 83-07-21 Remove dependency on ted_com, add include file 12* */ 13 /** Initialize cds_args **/ 14 15 cds_args_ptr=addr(space_for_cds_args); 16 unspec(space_for_cds_args)="0"b; 17 18 /** Reference structure input to cds to assure it is in runtime table. **/ 19 20 if addr(gfms_ext)=null() then ; 21 22 /** No text section **/ 23 cds_args_ptr -> cds_args.sections (1).p = null (); 24 cds_args_ptr -> cds_args.sections (1).len = 0; 25 cds_args_ptr -> cds_args.sections (1).struct_name = "NO_TEXT"; 26 27 /** Static section **/ 28 cds_args_ptr -> cds_args.sections (2).p = addr (gfms_ext); /* Caller's data. */ 29 cds_args_ptr -> cds_args.sections (2).len = size (gfms_ext); /* No. words in data structure. */ 30 cds_args_ptr -> cds_args.sections (2).struct_name = "gfms_ext"; 31 32 cds_args_ptr -> cds_args.seg_name = "gfms_ext"; /* Entryname of object segment. */ 33 cds_args_ptr -> cds_args.num_exclude_names = 0; /* All level 2 names are entry points. */ 34 cds_args_ptr -> cds_args.exclude_array_ptr = null (); 35 cds_args_ptr -> cds_args.switches.defs_in_link = "0"b; /* Definitions contiguous to text section. */ 36 cds_args_ptr -> cds_args.switches.separate_static = "0"b; /* Static in linkage section (to bind). */ 37 cds_args_ptr -> cds_args.switches.have_text = "0"b; /* No text section. */ 38 cds_args_ptr -> cds_args.switches.have_static = "1"b; /* There is a static section. */ 39 cds_args_ptr -> cds_args.switches.pad = "0"b; /* Must be zeroes (see create_data_segment_). */ 40 41 call create_data_segment_ (cds_args_ptr, code); 42 if code ^= 0 43 then 44 call com_err_ (code, "cds_gfms_ext"); 45 else 46 call com_err_( 0,"gfms_ext","Object for gfms_ext created [^i words].",size(gfms_ext)); 47 48 return; 49 50 /** Data for cds **/ 51 dcl addr builtin; 52 dcl cds_args_ptr ptr init(null()); 53 dcl code fixed bin(35); 54 dcl com_err_ entry options(variable); 55 dcl create_data_segment_ entry(ptr,fixed bin(35)); 56 dcl null builtin; 57 dcl size builtin; 58 dcl unspec builtin; 59 dcl 1 space_for_cds_args aligned like cds_args; 60 61 /** This data structure must exactly match that of gfms_ext.incl.pl1 **/ 62 63 dcl 1 gfms_ext aligned, 64 65 2 print_routines aligned like gfms_ext$print_routines, 66 67 2 temp_segs aligned like gfms_ext$temp_segs, 68 69 2 tape_file aligned like gfms_ext$tape_file, 70 71 2 options aligned like gfms_ext$options, 72 73 2 working_dir char (168) var, 74 75 2 mapping_rule char(3), 76 77 2 umc_name char(12); 78 1 1 /* BEGIN INCLUDE FILE gfms_ext.incl.pl1 (Wardd Multics) 10/07/80 2142.2 mst Tue */ 1 2 /* Modified by: S. C. Akers 02/08/82 Add gfms_ext$working_dir, 1 3* mapping_rule, 1 4* umc_name 1 5* Modified Ron Barstad 83-06-03 attach_desc from 40 to 80 char 1 6**/ 1 7 1 8 dcl 1 gfms_ext$print_routines aligned ext 1 9 , 3 ioa entry variable options(variable) 1 10 , 3 ioa_nnl entry variable options(variable) 1 11 ; 1 12 1 13 dcl 1 gfms_ext$temp_segs aligned ext 1 14 , 3 dtp ptr 1 15 , 3 nlp ptr 1 16 , 3 inp ptr 1 17 ; 1 18 1 19 dcl 1 gfms_ext$tape_file aligned ext 1 20 , 3 cbp ptr 1 21 , 3 attach_description char(80)unal 1 22 , 3 density 1 23 , 4 ftd fixed bin /* First tape density to attempt. */ 1 24 , 4 ltd fixed bin /* Last tape density to attempt. */ 1 25 , 3 tape_reel_information 1 26 , 4 reel_serial_num char(6) 1 27 , 4 file_serial_num char(6) 1 28 , 4 reel_sequence_num char(6) 1 29 ; 1 30 1 31 dcl 1 gfms_ext$options aligned ext 1 32 , 3 close bit(1)unal /* perform iox close. */ 1 33 , 3 detach bit(1)unal /* perform iox detach. */ 1 34 , 3 dump bit(1)unal /* dump tape records/information. */ 1 35 , 3 gf bit(1)unal /* provide gtss file attributes. */ 1 36 , 3 prfn bit(1)unal /* print file names. */ 1 37 , 3 scan_ss bit(1)unal /* scan substructure, display, quit. */ 1 38 , 3 tll bit(1)unal /* print totals of llinks. */ 1 39 , 3 unload bit(1)unal /* unload files. */ 1 40 , 3 NOT_IN_USE bit(28)unal 1 41 ; 1 42 1 43 dcl gfms_ext$working_dir char (168) var ext static; /* Where to restore the files. 1 44* It may be the user's working 1 45* directory, or the UMC or SMC directory. */ 1 46 1 47 dcl gfms_ext$mapping_rule char(3) external static; 1 48 1 49 dcl gfms_ext$umc_name char(12) external static; 1 50 1 51 /* END INCLUDE FILE gfms_ext.incl.pl1 */ 79 80 2 1 /* BEGIN INCLUDE FILE cds_args.incl.pl1 */ 2 2 2 3 dcl 1 cds_args based aligned, 2 4 2 sections (2), 2 5 3 p ptr, /* pointer to data for text/static section */ 2 6 3 len fixed bin (18), /* size of text/static section */ 2 7 3 struct_name char (32), /* name of declared structure for this section */ 2 8 2 seg_name char (32), /* name to create segment by */ 2 9 2 num_exclude_names fixed bin, /* number of names in exclude array */ 2 10 2 exclude_array_ptr ptr, /* pointer to array of exclude names */ 2 11 2 switches, /* control switches */ 2 12 3 defs_in_link bit (1) unal, /* says put defs in linkage */ 2 13 3 separate_static bit (1) unal, /* says separate static section is wanted */ 2 14 3 have_text bit (1) unal, /* ON if text section given */ 2 15 3 have_static bit (1) unal, /* ON if static section given */ 2 16 3 pad bit (32) unal; 2 17 2 18 dcl exclude_names (1) char (32) based; /* pointed to be cds_args.exclude_array_ptr */ 2 19 2 20 /* END INCLUDE FILE cds_args.incl.pl1 */ 81 82 end; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 12/10/84 1041.9 !BBBJPMLHdBxjGb.pl1 >spec>on>7105>gfms_ext.cds 79 1 10/24/83 1642.4 gfms_ext.incl.pl1 >ldd>include>gfms_ext.incl.pl1 81 2 04/01/76 2209.5 cds_args.incl.pl1 >ldd>include>cds_args.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. addr builtin function dcl 51 ref 15 20 28 cds_args based structure level 1 dcl 2-3 cds_args_ptr 000100 automatic pointer initial dcl 52 set ref 15* 23 24 25 28 29 30 32 33 34 35 36 37 38 39 41* 52* code 000102 automatic fixed bin(35,0) dcl 53 set ref 41* 42 42* com_err_ 000012 constant entry external dcl 54 ref 42 45 create_data_segment_ 000014 constant entry external dcl 55 ref 41 defs_in_link 44 based bit(1) level 3 packed unaligned dcl 2-3 set ref 35* exclude_array_ptr 42 based pointer level 2 dcl 2-3 set ref 34* gfms_ext 000152 automatic structure level 1 dcl 63 set ref 20 28 29 45 45 gfms_ext$options 000024 external static structure level 1 dcl 1-31 gfms_ext$print_routines 000016 external static structure level 1 dcl 1-8 gfms_ext$tape_file 000022 external static structure level 1 dcl 1-19 gfms_ext$temp_segs 000020 external static structure level 1 dcl 1-13 have_static 44(03) based bit(1) level 3 packed unaligned dcl 2-3 set ref 38* have_text 44(02) based bit(1) level 3 packed unaligned dcl 2-3 set ref 37* len 2 based fixed bin(18,0) array level 3 dcl 2-3 set ref 24* 29* null builtin function dcl 56 ref 20 23 34 52 num_exclude_names 40 based fixed bin(17,0) level 2 dcl 2-3 set ref 33* p based pointer array level 3 dcl 2-3 set ref 23* 28* pad 44(04) based bit(32) level 3 packed unaligned dcl 2-3 set ref 39* sections based structure array level 2 dcl 2-3 seg_name 30 based char(32) level 2 dcl 2-3 set ref 32* separate_static 44(01) based bit(1) level 3 packed unaligned dcl 2-3 set ref 36* size builtin function dcl 57 ref 29 45 45 space_for_cds_args 000104 automatic structure level 1 dcl 59 set ref 15 16* struct_name 3 based char(32) array level 3 dcl 2-3 set ref 25* 30* switches 44 based structure level 2 dcl 2-3 unspec builtin function dcl 58 set ref 16* NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. exclude_names based char(32) array unaligned dcl 2-18 gfms_ext$mapping_rule 000030 external static char(3) unaligned dcl 1-47 gfms_ext$umc_name 000032 external static char(12) unaligned dcl 1-49 gfms_ext$working_dir 000026 external static varying char(168) dcl 1-43 NAME DECLARED BY EXPLICIT CONTEXT. gfms_ext 000032 constant entry external dcl 6 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 334 370 206 344 Length 2300 206 34 1673 125 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME gfms_ext 238 external procedure is an external procedure. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME gfms_ext 000100 cds_args_ptr gfms_ext 000102 code gfms_ext 000104 space_for_cds_args gfms_ext 000152 gfms_ext gfms_ext THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out_desc call_ext_out return ext_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. com_err_ create_data_segment_ THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. gfms_ext$mapping_rule gfms_ext$options gfms_ext$print_routines gfms_ext$tape_file gfms_ext$temp_segs gfms_ext$umc_name gfms_ext$working_dir LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 6 000031 52 000037 15 000041 16 000043 20 000046 23 000054 24 000056 25 000057 28 000062 29 000064 30 000066 32 000071 33 000074 34 000075 35 000077 36 000101 37 000103 38 000105 39 000107 41 000111 42 000121 45 000145 48 000202 Object Segment >spec>on>7105>gfms_ext Created on 12/10/84 1132.8 mst Mon by GJohnson.SysMaint.m using create_data_segment_, Version II of Friday, November 30, 1984 Object Text Defs Link Symb Static Start 0 0 0 74 240 104 Length 427 0 74 144 153 134 9 Definitions: segname: gfms_ext link|140 mapping_rule link|64 options link|10 print_routines symb|0 symbol_table link|26 tape_file link|20 temp_segs link|141 umc_name link|65 working_dir No Links. ----------------------------------------------------------- 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