COMPILATION LISTING OF SEGMENT cobol_fix_driver_ Compiled by: Multics PL/I Compiler, Release 31b, of April 24, 1989 Compiled at: Bull HN, Phoenix AZ, System-M Compiled on: 05/24/89 0951.4 mst Wed Options: optimize map 1 /****^ *********************************************************** 2* * * 3* * Copyright, (C) BULL HN Information Systems Inc., 1989 * 4* * * 5* * Copyright, (C) Honeywell Information Systems Inc., 1982 * 6* * * 7* * Copyright (c) 1972 by Massachusetts Institute of * 8* * Technology and Honeywell Information Systems, Inc. * 9* * * 10* *********************************************************** */ 11 12 13 14 15 /****^ HISTORY COMMENTS: 16* 1) change(89-04-23,Zimmerman), approve(89-04-23,MCR8060), 17* audit(89-05-05,RWaters), install(89-05-24,MR12.3-1048): 18* MCR8060 cobol_fix_driver_.pl1 Reformatted code to new Cobol standard. 19* END HISTORY COMMENTS */ 20 21 22 /* Modified on 04/01/81 by FCH, fix decl for map_data_table, [4.4-1], BUG472(TR8869,8970) */ 23 /* Modified on 07/18/78 by RAL, [3.0-1], cobol_linkage_header.incl.pl1 changed */ 24 /* Modified since Version 3.0. */ 25 /*{*/ 26 /* format: style3 */ 27 cobol_fix_driver_: 28 proc; 29 30 /* This is the driver for the fixup phase of the Multics 31*COBOL compiler. It is called by the cobol driver and requires 32*no arguments. It calls the following modules: */ 33 34 dcl cobol_make_object_map 35 entry; 36 dcl cobol_mst entry; 37 dcl cobol_fixup entry (ptr); 38 dcl cobol_patch entry (ptr); 39 dcl cobol_paste entry (ptr); 40 41 /* The pointer passed to each of these is to 42*an array containing values pertinent to the 43*structure of the components of the object segment. */ 44 /*}*/ 45 46 47 dcl value_ptr ptr; 48 dcl no_stmts_2 fixed bin; 49 dcl 1 map_data_table aligned based (cobol_$map_data_ptr), 50 2 no_source_stmts fixed bin aligned, 51 2 data (0 refer (map_data_table.no_source_stmts)), 52 3 line_no fixed bin unaligned, 53 3 text_addr fixed bin unaligned, /*[4.4-1]*/ 54 3 col fixed bin unal, /*[4.4-1]*/ 55 3 label bit unal; 56 57 dcl 1 value aligned, 58 2 con_len fixed bin aligned, 59 2 code_len fixed bin aligned, 60 2 text_len fixed bin aligned, 61 2 def_len fixed bin aligned, 62 2 link_len fixed bin aligned, 63 2 sym_len fixed bin aligned, 64 2 int_storage_len fixed bin aligned, 65 2 exec_off fixed bin aligned; /* set by cobol_patch to wd before entry */ 66 67 dcl psb_ptr ptr, 68 psb_off fixed bin; 69 dcl (old_link, new_link, temp_relp, i, old_reloc, new_reloc, no_links) 70 fixed bin, 71 (cmp_cnt, cmp_bit, cmp_rest) 72 fixed bin, 73 (new_link_ptr, old_link_ptr) 74 ptr; 75 76 dcl 1 link_temp (no_links) aligned based, 77 2 header bit (18) unal, 78 2 rest bit (54) unal; 79 80 start: 81 value.con_len = cobol_$constant_offset; 82 83 if fixed_common.options.st 84 then call cobol_mst; 85 value.code_len = cobol_$text_wd_off; 86 value.text_len = value.con_len + value.code_len; 87 value.def_len = cobol_$def_wd_off; 88 value.sym_len = cobol_$sym_wd_off; 89 90 if fixed_common.options.profile 91 then do; 92 93 no_stmts_2 = map_data_table.no_source_stmts * 2 + 2; 94 value.int_storage_len = fixed_static_length + no_stmts_2; 95 sym_ptr = sym_base_ptr; 96 psb_off = fixed (symbol_block_header.area_relp, 18); 97 psb_ptr = addrel (sym_ptr, psb_off); 98 psb_ptr -> pl1_symbol_block.profile = linkage_header.links_relp; 99 psb_ptr -> pl1_symbol_block.flags.profile = "1"b; 100 value.link_len = cobol_$link_wd_off + no_stmts_2; 101 old_link = fixed (linkage_header.links_relp); 102 new_link = old_link + no_stmts_2; 103 old_link_ptr = addrel (link_base_ptr, old_link); 104 new_link_ptr = addrel (link_base_ptr, new_link); 105 no_links = cobol_$link_wd_off - 8 - fixed_static_length; 106 no_links = divide (no_links, 2, 17, 0); 107 108 if no_links > 0 109 then do; 110 111 old_reloc = old_link * 10 - 19; 112 new_reloc = new_link * 10 - 19; 113 relptr = cobol_$reloc_link_base_ptr; 114 i = no_stmts_2 * 2; 115 cmp_cnt = divide (i, 1023, 17, 0); 116 cmp_rest = mod (i, 1023); 117 cmp_bit = 15 * (cmp_cnt + 1); 118 n_bits = n_bits + cmp_bit; 119 120 /* The 23rd bit of relbits are the first link. */ 121 122 substr (relbits, 23 + cmp_bit, no_links * 12) = substr (relbits, 23, no_links * 12); 123 124 if cmp_cnt ^= 0 125 then do i = 1 to cmp_cnt; 126 127 substr (relbits, 8 + i * 15) = "111101111111111"b; 128 129 end; 130 131 substr (relbits, 23 + cmp_cnt * 15, 5) = "11110"b; 132 substr (relbits, 28 + cmp_cnt * 15, 10) = substr (unspec (cmp_rest), 27, 10); 133 linkage_header.links_relp = substr (unspec (new_link), 19, 18); 134 135 cobol_$link_wd_off = cobol_$link_wd_off + no_stmts_2; 136 137 do i = no_links to 1 by -1; 138 139 temp_relp = fixed (old_link_ptr -> link_temp.header (i)) - no_stmts_2; 140 new_link_ptr -> link_temp.rest (i) = old_link_ptr -> link_temp.rest (i); 141 new_link_ptr -> link_temp.header (i) = substr (unspec (temp_relp), 19, 18); 142 143 end; 144 145 do i = 1 to (map_data_table.no_source_stmts + 1); 146 147 temp_relp = (i - 1) * 2; 148 old_link_ptr -> link_temp.header (i) = substr (unspec (temp_relp), 19, 18); 149 old_link_ptr -> link_temp.rest (i) = (54)"0"b; 150 151 end; 152 end; 153 end; 154 else do; 155 156 value.int_storage_len = fixed_static_length; 157 value.link_len = cobol_$link_wd_off; 158 159 end; 160 161 value_ptr = addr (value); 162 163 if fixed_common.options.m_map 164 then call cobol_make_object_map; 165 166 call cobol_fixup (value_ptr); 167 call cobol_patch (value_ptr); 168 call cobol_paste (value_ptr); 169 170 exit: 171 return; 172 173 174 /***** Declaration for builtin function *****/ 175 176 dcl (substr, mod, binary, fixed, addr, addrel, rel, length, string, unspec, null, index) 177 builtin; 178 179 /***** End of declaration for builtin function *****/ 180 1 1 1 2 /* BEGIN INCLUDE FILE ... cobol_fixed_static.incl.pl1 */ 1 3 /* Last Modified May 5, 1977 by BC */ 1 4 1 5 /* This structure exists in the static data portion of the 1 6*linkage section of each cobol object segment. This 1 7*include file provides a "based" template for it. */ 1 8 1 9 /* This include file also contains internal static initialized 1 10*variables that define the offset of each field in this static 1 11*data portion of the linkage section from the 1 12*pointer upon which it is based. */ 1 13 1 14 1 15 /* WARNING: The fields in this structure,data_ptr 1 16*up to, but not including reserved, 1 17*must retain their positions in this structure forever. 1 18*No new fields not having space already allocated may be 1 19*defined as the position of the first link which follows 1 20*this fixed static area (to cobol_rts_) is in a fixed location 1 21*known to cobol_operators_. */ 1 22 dcl stat_ptr ptr; 1 23 dcl 1 stat based(stat_ptr) aligned, 1 24 2 data_ptr ptr aligned, 1 25 2 control_ptr ptr aligned, 1 26 2 file_info_ptr ptr aligned, 1 27 2 call_cnt fixed bin aligned, 1 28 2 data_len fixed bin aligned, 1 29 2 entry_pt_ptr ptr aligned, 1 30 2 prog_id_len fixed bin aligned, 1 31 2 prog_id char(65) aligned, 1 32 2 line_no (2) fixed bin aligned, 1 33 2 fo_flag fixed bin aligned, 1 34 2 fo_disp fixed bin aligned, 1 35 2 main_prog_sw fixed bin aligned, 1 36 2 sort_merge_sw fixed bin aligned, 1 37 2 ind_mask bit(36), /* overflow masking indicator bits. */ 1 38 2 pr3_save ptr, 1 39 2 pr5_save ptr, 1 40 2 user_output_ptr ptr, 1 41 2 error_output_ptr ptr, 1 42 2 user_input_ptr ptr, 1 43 2 error_con char(30) varying, 1 44 2 trace_control_word fixed bin aligned; 1 45 1 46 1 47 /* INTERNAL STATIC INITIALIZED VARIABLES THAT DEFINE THE 1 48*OFFSET OF EACH FIELD IN THE STATIC PORTION OF THE LINKAGE 1 49*SEGMENT. */ 1 50 1 51 dcl fixed_static_length fixed bin static options(constant) init(56); 1 52 dcl first_link_offset fixed bin static options(constant) init(64); 1 53 /*dcl stat_data_ptr_off fixed bin static options(constant) init(0); 1 54*/*dcl stat_control_ptr_off fixed bin static options(constant) init(2); 1 55*/*dcl stat_file_info_ptr_off fixed bin static options(constant) init(4); 1 56*/*dcl stat_call_cnt_off fixed bin static options(constant) init(6); 1 57*/*dcl stat_data_len_off fixed bin static options(constant) init(7); 1 58*/*dcl stat_entry_pt_ptr_off fixed bin static options(constant) init(8); 1 59*/*dcl stat_prog_id_len_off fixed bin static options(constant) init(10); 1 60*/*dcl stat_prog_id_off fixed bin static options(constant) init(11); 1 61*/*dcl stat_line_no_off fixed bin static options(constant) init(28); 1 62*/*dcl stat_fo_flag_off fixed bin static options(constant) init(30); 1 63*/*dcl stat_fo_disp_off fixed bin static options(constant) init(31); 1 64*/*dcl stat_main_prog_sw_off fixed bin static options(constant) init(32); 1 65*/*dcl stat_pr3_ptr_off fixed bin static options(constant) init(34); 1 66*/*dcl stat_pr5_ptr_off fixed bin static options(constant) init(36); 1 67*/*dcl stat_user_output_ptr_off fixed bin static options(constant) init(38); 1 68*/*dcl stat_error_output_ptr_off fixed bin static options(constant) init(40); 1 69*/*dcl stat_user_input_ptr_off fixed bin static options(constant) init(42); 1 70*/*dcl stat_error_con_off fixed bin static options(constant) init(44); 1 71*/*dcl stat_trace_control_word_off fixed bin static options(constant) init(53); 1 72*/**/ 1 73 1 74 /* END INCLUDE FILE ... cobol_fixed_static.incl.pl1 */ 1 75 181 2 1 2 2 /* BEGIN INCLUDE FILE ... cobol_.incl.pl1 */ 2 3 /* last modified Feb 4, 1977 by ORN */ 2 4 2 5 /* This file defines all external data used in the generator phase of Multics Cobol */ 2 6 2 7 /* POINTERS */ 2 8 dcl cobol_$text_base_ptr ptr ext; 2 9 dcl text_base_ptr ptr defined (cobol_$text_base_ptr); 2 10 dcl cobol_$con_end_ptr ptr ext; 2 11 dcl con_end_ptr ptr defined (cobol_$con_end_ptr); 2 12 dcl cobol_$def_base_ptr ptr ext; 2 13 dcl def_base_ptr ptr defined (cobol_$def_base_ptr); 2 14 dcl cobol_$link_base_ptr ptr ext; 2 15 dcl link_base_ptr ptr defined (cobol_$link_base_ptr); 2 16 dcl cobol_$sym_base_ptr ptr ext; 2 17 dcl sym_base_ptr ptr defined (cobol_$sym_base_ptr); 2 18 dcl cobol_$reloc_text_base_ptr ptr ext; 2 19 dcl reloc_text_base_ptr ptr defined (cobol_$reloc_text_base_ptr); 2 20 dcl cobol_$reloc_def_base_ptr ptr ext; 2 21 dcl reloc_def_base_ptr ptr defined (cobol_$reloc_def_base_ptr); 2 22 dcl cobol_$reloc_link_base_ptr ptr ext; 2 23 dcl reloc_link_base_ptr ptr defined (cobol_$reloc_link_base_ptr); 2 24 dcl cobol_$reloc_sym_base_ptr ptr ext; 2 25 dcl reloc_sym_base_ptr ptr defined (cobol_$reloc_sym_base_ptr); 2 26 dcl cobol_$reloc_work_base_ptr ptr ext; 2 27 dcl reloc_work_base_ptr ptr defined (cobol_$reloc_work_base_ptr); 2 28 dcl cobol_$pd_map_ptr ptr ext; 2 29 dcl pd_map_ptr ptr defined (cobol_$pd_map_ptr); 2 30 dcl cobol_$fixup_ptr ptr ext; 2 31 dcl fixup_ptr ptr defined (cobol_$fixup_ptr); 2 32 dcl cobol_$initval_base_ptr ptr ext; 2 33 dcl initval_base_ptr ptr defined (cobol_$initval_base_ptr); 2 34 dcl cobol_$initval_file_ptr ptr ext; 2 35 dcl initval_file_ptr ptr defined (cobol_$initval_file_ptr); 2 36 dcl cobol_$perform_list_ptr ptr ext; 2 37 dcl perform_list_ptr ptr defined (cobol_$perform_list_ptr); 2 38 dcl cobol_$alter_list_ptr ptr ext; 2 39 dcl alter_list_ptr ptr defined (cobol_$alter_list_ptr); 2 40 dcl cobol_$seg_init_list_ptr ptr ext; 2 41 dcl seg_init_list_ptr ptr defined (cobol_$seg_init_list_ptr); 2 42 dcl cobol_$temp_token_area_ptr ptr ext; 2 43 dcl temp_token_area_ptr ptr defined (cobol_$temp_token_area_ptr); 2 44 dcl cobol_$temp_token_ptr ptr ext; 2 45 dcl temp_token_ptr ptr defined (cobol_$temp_token_ptr); 2 46 dcl cobol_$token_block1_ptr ptr ext; 2 47 dcl token_block1_ptr ptr defined (cobol_$token_block1_ptr); 2 48 dcl cobol_$token_block2_ptr ptr ext; 2 49 dcl token_block2_ptr ptr defined (cobol_$token_block2_ptr); 2 50 dcl cobol_$minpral5_ptr ptr ext; 2 51 dcl minpral5_ptr ptr defined (cobol_$minpral5_ptr); 2 52 dcl cobol_$tag_table_ptr ptr ext; 2 53 dcl tag_table_ptr ptr defined (cobol_$tag_table_ptr); 2 54 dcl cobol_$map_data_ptr ptr ext; 2 55 dcl map_data_ptr ptr defined (cobol_$map_data_ptr); 2 56 dcl cobol_$ptr_status_ptr ptr ext; 2 57 dcl ptr_status_ptr ptr defined (cobol_$ptr_status_ptr); 2 58 dcl cobol_$reg_status_ptr ptr ext; 2 59 dcl reg_status_ptr ptr defined (cobol_$reg_status_ptr); 2 60 dcl cobol_$misc_base_ptr ptr ext; 2 61 dcl misc_base_ptr ptr defined (cobol_$misc_base_ptr); 2 62 dcl cobol_$misc_end_ptr ptr ext; 2 63 dcl misc_end_ptr ptr defined (cobol_$misc_end_ptr); 2 64 dcl cobol_$list_ptr ptr ext; 2 65 dcl list_ptr ptr defined (cobol_$list_ptr); 2 66 dcl cobol_$allo1_ptr ptr ext; 2 67 dcl allo1_ptr ptr defined (cobol_$allo1_ptr); 2 68 dcl cobol_$eln_ptr ptr ext; 2 69 dcl eln_ptr ptr defined (cobol_$eln_ptr); 2 70 dcl cobol_$diag_ptr ptr ext; 2 71 dcl diag_ptr ptr defined (cobol_$diag_ptr); 2 72 dcl cobol_$xref_token_ptr ptr ext; 2 73 dcl xref_token_ptr ptr defined (cobol_$xref_token_ptr); 2 74 dcl cobol_$xref_chain_ptr ptr ext; 2 75 dcl xref_chain_ptr ptr defined (cobol_$xref_chain_ptr); 2 76 dcl cobol_$statement_info_ptr ptr ext; 2 77 dcl statement_info_ptr ptr defined (cobol_$statement_info_ptr); 2 78 dcl cobol_$reswd_ptr ptr ext; 2 79 dcl reswd_ptr ptr defined (cobol_$reswd_ptr); 2 80 dcl cobol_$op_con_ptr ptr ext; 2 81 dcl op_con_ptr ptr defined (cobol_$op_con_ptr); 2 82 dcl cobol_$ntbuf_ptr ptr ext; 2 83 dcl ntbuf_ptr ptr defined (cobol_$ntbuf_ptr); 2 84 dcl cobol_$main_pcs_ptr ptr ext; 2 85 dcl main_pcs_ptr ptr defined (cobol_$main_pcs_ptr); 2 86 dcl cobol_$include_info_ptr ptr ext; 2 87 dcl include_info_ptr ptr defined (cobol_$include_info_ptr); 2 88 2 89 /* FIXED BIN */ 2 90 dcl cobol_$text_wd_off fixed bin ext; 2 91 dcl text_wd_off fixed bin defined (cobol_$text_wd_off); 2 92 dcl cobol_$con_wd_off fixed bin ext; 2 93 dcl con_wd_off fixed bin defined (cobol_$con_wd_off); 2 94 dcl cobol_$def_wd_off fixed bin ext; 2 95 dcl def_wd_off fixed bin defined (cobol_$def_wd_off); 2 96 dcl cobol_$def_max fixed bin ext; 2 97 dcl def_max fixed bin defined (cobol_$def_max); 2 98 dcl cobol_$link_wd_off fixed bin ext; 2 99 dcl link_wd_off fixed bin defined (cobol_$link_wd_off); 2 100 dcl cobol_$link_max fixed bin ext; 2 101 dcl link_max fixed bin defined (cobol_$link_max); 2 102 dcl cobol_$sym_wd_off fixed bin ext; 2 103 dcl sym_wd_off fixed bin defined (cobol_$sym_wd_off); 2 104 dcl cobol_$sym_max fixed bin ext; 2 105 dcl sym_max fixed bin defined (cobol_$sym_max); 2 106 dcl cobol_$reloc_text_max fixed bin(24) ext; 2 107 dcl reloc_text_max fixed bin(24) defined (cobol_$reloc_text_max); 2 108 dcl cobol_$reloc_def_max fixed bin(24) ext; 2 109 dcl reloc_def_max fixed bin(24) defined (cobol_$reloc_def_max); 2 110 dcl cobol_$reloc_link_max fixed bin(24) ext; 2 111 dcl reloc_link_max fixed bin(24) defined (cobol_$reloc_link_max); 2 112 dcl cobol_$reloc_sym_max fixed bin(24) ext; 2 113 dcl reloc_sym_max fixed bin(24) defined (cobol_$reloc_sym_max); 2 114 dcl cobol_$reloc_work_max fixed bin(24) ext; 2 115 dcl reloc_work_max fixed bin(24) defined (cobol_$reloc_work_max); 2 116 dcl cobol_$pd_map_index fixed bin ext; 2 117 dcl pd_map_index fixed bin defined (cobol_$pd_map_index); 2 118 dcl cobol_$cobol_data_wd_off fixed bin ext; 2 119 dcl cobol_data_wd_off fixed bin defined (cobol_$cobol_data_wd_off); 2 120 dcl cobol_$stack_off fixed bin ext; 2 121 dcl stack_off fixed bin defined (cobol_$stack_off); 2 122 dcl cobol_$max_stack_off fixed bin ext; 2 123 dcl max_stack_off fixed bin defined (cobol_$max_stack_off); 2 124 dcl cobol_$init_stack_off fixed bin ext; 2 125 dcl init_stack_off fixed bin defined (cobol_$init_stack_off); 2 126 dcl cobol_$pd_map_sw fixed bin ext; 2 127 dcl pd_map_sw fixed bin defined (cobol_$pd_map_sw); 2 128 dcl cobol_$next_tag fixed bin ext; 2 129 dcl next_tag fixed bin defined (cobol_$next_tag); 2 130 dcl cobol_$data_init_flag fixed bin ext; 2 131 dcl data_init_flag fixed bin defined (cobol_$data_init_flag); 2 132 dcl cobol_$seg_init_flag fixed bin ext; 2 133 dcl seg_init_flag fixed bin defined (cobol_$seg_init_flag); 2 134 dcl cobol_$alter_flag fixed bin ext; 2 135 dcl alter_flag fixed bin defined (cobol_$alter_flag); 2 136 dcl cobol_$sect_eop_flag fixed bin ext; 2 137 dcl sect_eop_flag fixed bin defined (cobol_$sect_eop_flag); 2 138 dcl cobol_$para_eop_flag fixed bin ext; 2 139 dcl para_eop_flag fixed bin defined (cobol_$para_eop_flag); 2 140 dcl cobol_$priority_no fixed bin ext; 2 141 dcl priority_no fixed bin defined (cobol_$priority_no); 2 142 dcl cobol_$compile_count fixed bin ext; 2 143 dcl compile_count fixed bin defined (cobol_$compile_count); 2 144 dcl cobol_$ptr_assumption_ind fixed bin ext; 2 145 dcl ptr_assumption_ind fixed bin defined (cobol_$ptr_assumption_ind); 2 146 dcl cobol_$reg_assumption_ind fixed bin ext; 2 147 dcl reg_assumption_ind fixed bin defined (cobol_$reg_assumption_ind); 2 148 dcl cobol_$perform_para_index fixed bin ext; 2 149 dcl perform_para_index fixed bin defined (cobol_$perform_para_index); 2 150 dcl cobol_$perform_sect_index fixed bin ext; 2 151 dcl perform_sect_index fixed bin defined (cobol_$perform_sect_index); 2 152 dcl cobol_$alter_index fixed bin ext; 2 153 dcl alter_index fixed bin defined (cobol_$alter_index); 2 154 dcl cobol_$list_off fixed bin ext; 2 155 dcl list_off fixed bin defined (cobol_$list_off); 2 156 dcl cobol_$constant_offset fixed bin ext; 2 157 dcl constant_offset fixed bin defined (cobol_$constant_offset); 2 158 dcl cobol_$misc_max fixed bin ext; 2 159 dcl misc_max fixed bin defined (cobol_$misc_max); 2 160 dcl cobol_$pd_map_max fixed bin ext; 2 161 dcl pd_map_max fixed bin defined (cobol_$pd_map_max); 2 162 dcl cobol_$map_data_max fixed bin ext; 2 163 dcl map_data_max fixed bin defined (cobol_$map_data_max); 2 164 dcl cobol_$fixup_max fixed bin ext; 2 165 dcl fixup_max fixed bin defined (cobol_$fixup_max); 2 166 dcl cobol_$tag_table_max fixed bin ext; 2 167 dcl tag_table_max fixed bin defined (cobol_$tag_table_max); 2 168 dcl cobol_$temp_token_max fixed bin ext; 2 169 dcl temp_token_max fixed bin defined (cobol_$temp_token_max); 2 170 dcl cobol_$allo1_max fixed bin ext; 2 171 dcl allo1_max fixed bin defined (cobol_$allo1_max); 2 172 dcl cobol_$eln_max fixed bin ext; 2 173 dcl eln_max fixed bin defined (cobol_$eln_max); 2 174 dcl cobol_$debug_enable fixed bin ext; 2 175 dcl debug_enable fixed bin defined (cobol_$debug_enable); 2 176 dcl cobol_$non_source_offset fixed bin ext; 2 177 dcl non_source_offset fixed bin defined (cobol_$non_source_offset); 2 178 dcl cobol_$initval_flag fixed bin ext; 2 179 dcl initval_flag fixed bin defined (cobol_$initval_flag); 2 180 dcl cobol_$date_compiled_sw fixed bin ext; 2 181 dcl date_compiled_sw fixed bin defined (cobol_$date_compiled_sw); 2 182 dcl cobol_$include_cnt fixed bin ext; 2 183 dcl include_cnt fixed bin defined (cobol_$include_cnt); 2 184 dcl cobol_$fs_charcnt fixed bin ext; 2 185 dcl fs_charcnt fixed bin defined (cobol_$fs_charcnt); 2 186 dcl cobol_$ws_charcnt fixed bin ext; 2 187 dcl ws_charcnt fixed bin defined (cobol_$ws_charcnt); 2 188 dcl cobol_$coms_charcnt fixed bin ext; 2 189 dcl coms_charcnt fixed bin defined (cobol_$coms_charcnt); 2 190 dcl cobol_$ls_charcnt fixed bin ext; 2 191 dcl ls_charcnt fixed bin defined (cobol_$ls_charcnt); 2 192 dcl cobol_$cons_charcnt fixed bin ext; 2 193 dcl cons_charcnt fixed bin defined (cobol_$cons_charcnt); 2 194 dcl cobol_$value_cnt fixed bin ext; 2 195 dcl value_cnt fixed bin defined (cobol_$value_cnt); 2 196 dcl cobol_$cd_cnt fixed bin ext; 2 197 dcl cd_cnt fixed bin defined (cobol_$cd_cnt); 2 198 dcl cobol_$fs_wdoff fixed bin ext; 2 199 dcl fs_wdoff fixed bin defined (cobol_$fs_wdoff); 2 200 dcl cobol_$ws_wdoff fixed bin ext; 2 201 dcl ws_wdoff fixed bin defined (cobol_$ws_wdoff); 2 202 dcl cobol_$coms_wdoff fixed bin ext; 2 203 dcl coms_wdoff fixed bin defined (cobol_$coms_wdoff); 2 204 2 205 /* CHARACTER */ 2 206 dcl cobol_$scratch_dir char (168) aligned ext; 2 207 dcl scratch_dir char (168) aligned defined (cobol_$scratch_dir); /* -42- */ 2 208 dcl cobol_$obj_seg_name char (32) aligned ext; 2 209 dcl obj_seg_name char (32) aligned defined (cobol_$obj_seg_name); /* -8- */ 2 210 2 211 /* BIT */ 2 212 dcl cobol_$xref_bypass bit(1) aligned ext; 2 213 dcl xref_bypass bit(1) aligned defined (cobol_$xref_bypass); /* -1- */ 2 214 dcl cobol_$same_sort_merge_proc bit(1) aligned ext; 2 215 dcl same_sort_merge_proc bit(1) aligned defined (cobol_$same_sort_merge_proc); /* -1- */ 2 216 2 217 2 218 /* END INCLUDE FILE ... cobol_incl.pl1*/ 2 219 2 220 182 3 1 3 2 /* BEGIN INCLUDE FILE ... cobol_fixed_common.incl.pl1 */ 3 3 /* Modified on 10/27/82 by FCH, [5.1-1], cobol_cln added to save last line num, BUG543(phx13643) */ 3 4 /* Modified on 07/31/80 by FCH, [4.3-1], use_reporting field added for Report Writer */ 3 5 /* Modified on 03/30/79 by FCH, [4.1-1], -card option added */ 3 6 /* Modified on 03/30/79 by FCH, [4.0-2], -svNM option added */ 3 7 /* Modified on 03/02/79 by FCH, [4.0-1], -levNM option added */ 3 8 /* Modified by RAL on 10/13/78, [4.0-0], Added option exp from fil2. */ 3 9 /* Modified by BC on 06/20/77, descriptor added. */ 3 10 /* Modified by BC on 06/02/77, init_cd_seg, init_cd_offset added. */ 3 11 /* Modified by BC on 1/21/77, options.profile added. */ 3 12 /* Modified by FCH on 7/6/76, sysin_fno & sysout_fno deleted, accept_device & display_device added */ 3 13 /* Modified by FCH on 5/20/77, comp_level added */ 3 14 3 15 3 16 /* THE SIZE OF THIS STRUCTURE IN BYTES, (EXCLUDING VARIABLE 3 17* LENGTH ENTITIES), FOR EACH HARDWARE IMPLEMENTATION IS: 3 18* 3 19* HARDWARE | SIZE (BYTES) 3 20* --------------------------------- 3 21* 645/6180 | 464 3 22* P7 | 396 3 23* --------------------------------- 3 24* */ 3 25 3 26 dcl 1 fixed_common based ( cobol_com_ptr), 3 27 2 prog_name char (30), 3 28 2 compiler_rev_no char (25), 3 29 2 phase_name char (6), 3 30 2 currency char (1), 3 31 2 fatal_no fixed bin, 3 32 2 warn_no fixed bin, 3 33 2 proc_counter fixed bin, 3 34 2 spec_tag_counter fixed bin, 3 35 2 file_count fixed bin, 3 36 2 filedescr_offsets (20) char (5), 3 37 2 perf_alter_info char (5), 3 38 2 another_perform_info char (5), 3 39 2 sort_in_info char (5), 3 40 2 odo_info char (5), 3 41 2 size_seg fixed bin, 3 42 2 size_offset fixed bin(24), 3 43 2 size_perform_info char (5), 3 44 2 rename_info char (5), 3 45 2 report_names char (5), 3 46 2 rw_buf_seg fixed bin, 3 47 2 rw_buf_offset fixed bin(24), 3 48 2 rw_buf_length fixed bin(24), 3 49 2 file_keys char (5), 3 50 2 search_keys char (5), 3 51 2 dd_seg_size fixed bin(24), 3 52 2 pd_seg_size fixed bin(24), 3 53 2 seg_limit fixed bin , 3 54 2 number_of_dd_segs fixed bin, 3 55 2 seg_info char (5), 3 56 2 number_of_ls_pointers fixed bin, 3 57 2 link_sec_seg fixed bin, 3 58 2 link_sec_offset fixed bin(24), 3 59 2 sra_clauses fixed bin, 3 60 2 fix_up_info char (5), 3 61 2 linage_info char (5), 3 62 2 first_dd_item char (5), 3 63 2 sort_out_info char (5), 3 64 2 db_info char (5), 3 65 2 realm_info char (5), 3 66 2 rc_realm_info char (5), 3 67 2 last_file_key char (5), 3 68 2 prog_coll_seq fixed bin, 3 69 2 init_cd_seg fixed bin, 3 70 2 init_cd_offset fixed bin(24), 3 71 2 input_error_exit fixed bin, 3 72 2 output_error_exit fixed bin, 3 73 2 i_o_error_exit fixed bin, 3 74 2 extend_error_exit fixed bin, 3 75 2 dummy15 fixed bin, 3 76 2 options, 3 77 3 cu bit (1), 3 78 3 st bit (1), 3 79 3 wn bit (1), 3 80 3 obs bit (1), 3 81 3 dm bit (1), 3 82 3 xrl bit (1), 3 83 3 xrn bit (1), 3 84 3 src bit (1), 3 85 3 obj bit (1), 3 86 3 exs bit (1), 3 87 3 sck bit (1), 3 88 3 rno bit (1), 3 89 3 u_l bit (1), 3 90 3 cnv bit (1), 3 91 3 cos bit (1), 3 92 3 fmt bit (1), 3 93 3 profile bit(1), 3 94 3 nw bit (1), 3 95 3 exp bit (1), /* [4.0-0] */ 3 96 3 card bit (1), /*[4.1-1]*/ 3 97 3 fil2 bit (5), 3 98 3 m_map bit (1), 3 99 3 m_bf bit (1), 3 100 3 m_fat bit (1), 3 101 3 m_wn bit (1), 3 102 3 m_obs bit(1), 3 103 3 pd bit(1), 3 104 3 oc bit(1), 3 105 2 supervisor bit (1), 3 106 2 dec_comma bit (1), 3 107 2 init_cd bit (1), 3 108 2 corr bit (1), 3 109 2 initl bit (1), 3 110 2 debug bit (1), 3 111 2 report bit (1), 3 112 2 sync_in_prog bit (1), 3 113 2 pd_section bit (1), 3 114 2 list_switch bit (1), 3 115 2 alpha_cond bit (1), 3 116 2 num_cond bit (1), 3 117 2 spec_sysin bit (1), 3 118 2 spec_sysout bit (1), 3 119 2 cpl_files bit (1), 3 120 2 obj_dec_comma bit (1), 3 121 2 default_sign_type bit (3), 3 122 2 use_debug bit(1), 3 123 2 syntax_trace bit(1), 3 124 2 comp_defaults, 3 125 3 comp bit(1), 3 126 3 comp_1 bit(1), 3 127 3 comp_2 bit(1), 3 128 3 comp_3 bit(1), 3 129 3 comp_4 bit(1), 3 130 3 comp_5 bit(1), 3 131 3 comp_6 bit(1), 3 132 3 comp_7 bit(1), 3 133 3 comp_8 bit(1), 3 134 2 disp_defaults, 3 135 3 disp bit(1), 3 136 3 disp_1 bit(1), 3 137 3 disp_2 bit(1), 3 138 3 disp_3 bit(1), 3 139 3 disp_4 bit(1), 3 140 3 disp_5 bit(1), 3 141 3 disp_6 bit(1), 3 142 3 disp_7 bit(1), 3 143 2 descriptor bit(2), 3 144 2 levsv bit(3), /*[4.0-1]*/ 3 145 2 use_reporting bit(1), /*[4.3-1]*/ 3 146 2 cd bit(1), /*[4.4-1]*/ 3 147 2 dummy17 bit(3), 3 148 2 lvl_rstr bit(32), 3 149 2 inst_rstr bit(32), 3 150 2 comp_level char(1), 3 151 2 dummy18 char(30), 3 152 2 object_sign char (1), 3 153 2 last_print_rec char (5), 3 154 2 coll_seq_info char (5), 3 155 2 sys_status_seg fixed bin, 3 156 2 sys_status_offset fixed bin(24), 3 157 2 compiler_id fixed bin, 3 158 2 date_comp_ln fixed bin, 3 159 2 compile_mode bit(36), 3 160 2 default_temp fixed bin, 3 161 2 accept_device fixed bin, 3 162 2 display_device fixed bin, 3 163 2 cobol_cln fixed bin, /*[5.1-1]*/ 3 164 2 alphabet_offset fixed bin; 3 165 3 166 3 167 3 168 /* END INCLUDE FILE ... cobol_fixed_common.incl.pl1 */ 3 169 183 4 1 4 2 /* BEGIN INCLUDE FILE ... cobol_ext_.incl.pl1 */ 4 3 /* Last modified on 06/17/76 by ORN */ 4 4 /* Last modified on 12/28/76 by FCH */ 4 5 /* Last modified on 12/01/80 by FCH */ 4 6 4 7 /* <<< SHARED EXTERNALS INCLUDE FILE >>> */ 4 8 4 9 4 10 dcl cobol_ext_$cobol_afp ptr ext; 4 11 dcl cobol_afp ptr defined ( cobol_ext_$cobol_afp); 4 12 dcl cobol_ext_$cobol_analin_fileno ptr ext; 4 13 dcl cobol_analin_fileno ptr defined ( cobol_ext_$cobol_analin_fileno); 4 14 dcl cobol_ext_$report_first_token ptr ext; 4 15 dcl report_first_token ptr defined( cobol_ext_$report_first_token); 4 16 dcl cobol_ext_$report_last_token ptr ext; 4 17 dcl report_last_token ptr defined ( cobol_ext_$report_last_token); 4 18 dcl cobol_ext_$cobol_eltp ptr ext; 4 19 dcl cobol_eltp ptr defined ( cobol_ext_$cobol_eltp); 4 20 dcl cobol_ext_$cobol_cmfp ptr ext; 4 21 dcl cobol_cmfp ptr defined ( cobol_ext_$cobol_cmfp); 4 22 dcl cobol_ext_$cobol_com_fileno ptr ext; 4 23 dcl cobol_com_fileno ptr defined ( cobol_ext_$cobol_com_fileno); 4 24 dcl cobol_ext_$cobol_com_ptr ptr ext; 4 25 dcl cobol_com_ptr ptr defined ( cobol_ext_$cobol_com_ptr); 4 26 dcl cobol_ext_$cobol_dfp ptr ext; 4 27 dcl cobol_dfp ptr defined ( cobol_ext_$cobol_dfp); 4 28 dcl cobol_ext_$cobol_hfp ptr ext; 4 29 dcl cobol_hfp ptr defined ( cobol_ext_$cobol_hfp); 4 30 dcl cobol_ext_$cobol_m1fp ptr ext; 4 31 dcl cobol_m1fp ptr defined ( cobol_ext_$cobol_m1fp); 4 32 dcl cobol_ext_$cobol_m2fp ptr ext; 4 33 dcl cobol_m2fp ptr defined ( cobol_ext_$cobol_m2fp); 4 34 dcl cobol_ext_$cobol_min1_fileno ptr ext; 4 35 dcl cobol_min1_fileno ptr defined ( cobol_ext_$cobol_min1_fileno); 4 36 dcl cobol_ext_$cobol_min2_fileno_ptr ptr ext; 4 37 dcl cobol_min2_fileno_ptr ptr defined ( cobol_ext_$cobol_min2_fileno_ptr); 4 38 dcl cobol_ext_$cobol_name_fileno ptr ext; 4 39 dcl cobol_name_fileno ptr defined ( cobol_ext_$cobol_name_fileno); 4 40 dcl cobol_ext_$cobol_name_fileno_ptr ptr ext; 4 41 dcl cobol_name_fileno_ptr ptr defined ( cobol_ext_$cobol_name_fileno_ptr); 4 42 dcl cobol_ext_$cobol_ntfp ptr ext; 4 43 dcl cobol_ntfp ptr defined ( cobol_ext_$cobol_ntfp); 4 44 dcl cobol_ext_$cobol_pdofp ptr ext; 4 45 dcl cobol_pdofp ptr defined ( cobol_ext_$cobol_pdofp); 4 46 dcl cobol_ext_$cobol_pfp ptr ext; 4 47 dcl cobol_pfp ptr defined ( cobol_ext_$cobol_pfp); 4 48 dcl cobol_ext_$cobol_rm2fp ptr ext; 4 49 dcl cobol_rm2fp ptr defined ( cobol_ext_$cobol_rm2fp); 4 50 dcl cobol_ext_$cobol_rmin2fp ptr ext; 4 51 dcl cobol_rmin2fp ptr defined ( cobol_ext_$cobol_rmin2fp); 4 52 dcl cobol_ext_$cobol_curr_in ptr ext; 4 53 dcl cobol_curr_in ptr defined ( cobol_ext_$cobol_curr_in); 4 54 dcl cobol_ext_$cobol_curr_out ptr ext; 4 55 dcl cobol_curr_out ptr defined ( cobol_ext_$cobol_curr_out); 4 56 dcl cobol_ext_$cobol_sfp ptr ext; 4 57 dcl cobol_sfp ptr defined ( cobol_ext_$cobol_sfp); 4 58 dcl cobol_ext_$cobol_w1p ptr ext; 4 59 dcl cobol_w1p ptr defined ( cobol_ext_$cobol_w1p); 4 60 dcl cobol_ext_$cobol_w2p ptr ext; 4 61 dcl cobol_w2p ptr defined ( cobol_ext_$cobol_w2p); 4 62 dcl cobol_ext_$cobol_w3p ptr ext; 4 63 dcl cobol_w3p ptr defined ( cobol_ext_$cobol_w3p); 4 64 dcl cobol_ext_$cobol_w5p ptr ext; 4 65 dcl cobol_w5p ptr defined ( cobol_ext_$cobol_w5p); 4 66 dcl cobol_ext_$cobol_w6p ptr ext; 4 67 dcl cobol_w6p ptr defined ( cobol_ext_$cobol_w6p); 4 68 dcl cobol_ext_$cobol_w7p ptr ext; 4 69 dcl cobol_w7p ptr defined ( cobol_ext_$cobol_w7p); 4 70 dcl cobol_ext_$cobol_x3fp ptr ext; 4 71 dcl cobol_x3fp ptr defined ( cobol_ext_$cobol_x3fp); 4 72 dcl cobol_ext_$cobol_rwdd ptr ext; 4 73 dcl cobol_rwdd ptr defined(cobol_ext_$cobol_rwdd); 4 74 dcl cobol_ext_$cobol_rwpd ptr ext; 4 75 dcl cobol_rwpd ptr defined(cobol_ext_$cobol_rwpd); 4 76 4 77 4 78 dcl cobol_ext_$cobol_fileno1 fixed bin(24)ext; 4 79 dcl cobol_fileno1 fixed bin(24)defined ( cobol_ext_$cobol_fileno1); 4 80 dcl cobol_ext_$cobol_options_len fixed bin(24)ext; 4 81 dcl cobol_options_len fixed bin(24)defined ( cobol_ext_$cobol_options_len); 4 82 dcl cobol_ext_$cobol_pdout_fileno fixed bin(24)ext; 4 83 dcl cobol_pdout_fileno fixed bin(24)defined ( cobol_ext_$cobol_pdout_fileno); 4 84 dcl cobol_ext_$cobol_print_fileno fixed bin(24)ext; 4 85 dcl cobol_print_fileno fixed bin(24)defined ( cobol_ext_$cobol_print_fileno); 4 86 dcl cobol_ext_$cobol_rmin2_fileno fixed bin(24)ext; 4 87 dcl cobol_rmin2_fileno fixed bin(24)defined ( cobol_ext_$cobol_rmin2_fileno); 4 88 dcl cobol_ext_$cobol_x1_fileno fixed bin(24)ext; 4 89 dcl cobol_x1_fileno fixed bin(24)defined ( cobol_ext_$cobol_x1_fileno); 4 90 dcl cobol_ext_$cobol_x2_fileno fixed bin(24)ext; 4 91 dcl cobol_x2_fileno fixed bin(24)defined ( cobol_ext_$cobol_x2_fileno); 4 92 dcl cobol_ext_$cobol_x3_fileno fixed bin(24)ext; 4 93 dcl cobol_x3_fileno fixed bin(24)defined ( cobol_ext_$cobol_x3_fileno); 4 94 4 95 dcl cobol_ext_$cobol_lpr char (5) ext; 4 96 dcl cobol_lpr char (5) defined ( cobol_ext_$cobol_lpr); /* -2- */ 4 97 dcl cobol_ext_$cobol_options char (120) ext; 4 98 dcl cobol_options char (120) defined ( cobol_ext_$cobol_options); /* -30- */ 4 99 4 100 dcl cobol_ext_$cobol_xlast8 bit (1) ext; 4 101 dcl cobol_xlast8 bit (1) defined ( cobol_ext_$cobol_xlast8); /* -1- */ 4 102 dcl cobol_ext_$report_exists bit (1) ext; 4 103 dcl report_exists bit (1) defined ( cobol_ext_$report_exists); 4 104 4 105 4 106 /* <<< END OF SHARED EXTERNALS INCLUDE FILE >>> */ 4 107 /* END INCLUDE FILE ... cobol_ext_.incl.pl1 */ 4 108 184 5 1 5 2 /* BEGIN INCLUDE FILE ... cobol_linkage_header.incl.pl1 */ 5 3 5 4 /* Last modified 07/19/78 by RAL to conform with MULTICS standard linkage map */ 5 5 /* Last modified June 26, 1974 by AEG */ 5 6 5 7 5 8 5 9 declare 1 linkage_header aligned based(link_base_ptr), 5 10 2 pad bit(36), 5 11 2 def_section_relp bit(18) unaligned, 5 12 2 first_reference_relp bit(18) unaligned, 5 13 2 obsolete_ptr ptr unal, 5 14 2 original_linkage_ptr ptr unal, 5 15 2 unused bit (72), 5 16 2 links_relp bit(18) unaligned, 5 17 2 linkage_section_length bit(18) unaligned, 5 18 2 object_seg bit(18) unaligned, 5 19 2 obsolete_length bit(18) unaligned; 5 20 5 21 5 22 /* 5 23*link_base_ptr is a pointer to the base of the 5 24* linkage section and is an element 5 25* of the structure cobol_ located in 5 26* cobol_external_seg. 5 27* 5 28*pad is reserved for future use and 5 29* must be zero. 5 30* 5 31*def_section_relp is a pointer (relative to the base 5 32* of the object segment) to the base 5 33* of the definition section. 5 34* 5 35*first_reference_relp is a pointer (relative to the base 5 36* of the linkage section) to the 5 37* array of first-reference traps. 5 38* If the value of this item is "0"b 5 39* then there are no first-reference 5 40* traps. 5 41* 5 42*obsolete_ptr for historical reasons, linkage 5 43* sections are sometimes threaded 5 44* together to form a linkage list. 5 45* This variable is a pointer to the 5 46* next linkage section on the thread. 5 47* This variable is described for 5 48* completemess; it is not intended 5 49* for general use. 5 50* 5 51*original_linkage_ptr is a pointer to the original link- 5 52* age section within the object seg- 5 53* ment. It is used by the link un- 5 54* snapping mechanism. It is init- 5 55* ialized by the linker. 5 56* 5 57*links_relp is a pointer (retative to the base 5 58* of the linkage section) to the 5 59* first link (the base of the link 5 60* structure). 5 61* 5 62*linkage_section_length is the length in words of the 5 63* linkage section. 5 64* 5 65*object_seg is the segment number of the object 5 66* segment. It is initialized by the 5 67* linker. 5 68* 5 69*obsolete_length when several linkage sections are 5 70* combined into a list, this item 5 71* (in the first linkage section in 5 72* the list) contains the length of 5 73* the entire list. See the above 5 74* discussion under obsolete_ptr. 5 75* */ 5 76 /* END INCLUDE FILE ... cobol_linkage_header.incl.pl1 */ 5 77 185 186 /* [3.0-1] */ 6 1 dcl 1 pl1_symbol_block aligned based, 6 2 2 version fixed bin, 6 3 2 identifier char(8), /* must be "pl1info" */ 6 4 2 flags, 6 5 3 profile bit(1) unal, 6 6 3 table bit(1) unal, 6 7 3 map bit(1) unal, 6 8 3 flow bit(1) unal, 6 9 3 io bit(1) unal, 6 10 3 table_removed bit(1) unal, 6 11 3 long_profile bit(1) unal, 6 12 3 pad bit(29) unal, 6 13 2 greatest_severity fixed bin, 6 14 2 root unal bit(18), 6 15 2 profile unal bit(18), 6 16 2 map unal, 6 17 3 first bit(18), 6 18 3 last bit(18), 6 19 2 segname unaligned, 6 20 3 offset bit(18), 6 21 3 size bit(18); 187 7 1 7 2 /* BEGIN INCLUDE FILE ... cobol_sbh.incl.pl1 */ 7 3 /* Created by GM; Last modified July 17, 1974 by ORN */ 7 4 7 5 dcl sym_ptr ptr; 7 6 dcl 1 symbol_block_header aligned based(sym_ptr), 7 7 2 decl_vers fixed bin , 7 8 2 identifier char(8) aligned, 7 9 2 gen_version_number fixed bin, 7 10 2 gen_creation_time fixed bin(71), 7 11 2 object_creation_time fixed bin(71), 7 12 2 generator char(8) aligned, 7 13 2 gen_version_name_relp bit(18) unaligned, 7 14 2 gen_version_name_length bit(18) unaligned, 7 15 2 userid_relp bit(18) unaligned, 7 16 2 userid_length bit(18) unaligned, 7 17 2 comment_relp bit(18) unaligned, 7 18 2 comment_length bit(18) unaligned, 7 19 2 text_boundary bit(18) unaligned, 7 20 2 stat_boundary bit(18) unaligned, 7 21 2 source_map_relp bit(18) unaligned, 7 22 2 area_relp bit(18) unaligned, 7 23 2 section_relp bit(18) unaligned, 7 24 2 block_size bit(18) unaligned, 7 25 2 next_block_thread bit(18) unaligned, 7 26 2 text_relocation_relp bit(18) unaligned, 7 27 2 def_relocation_relp bit(18) unaligned, 7 28 2 link_relocation_relp bit(18) unaligned, 7 29 2 symbol_relocation_relp bit(18) unaligned, 7 30 2 default_truncate bit(18) unaligned, 7 31 2 optional_truncate bit(18) unaligned; 7 32 7 33 /* END INCLUDE FILE ... cobol_sbh.incl.pl1 */ 7 34 188 8 1 8 2 /* BEGIN INCLUDE FILE ... cobol_relinfo.incl.pl1 */ 8 3 /* Last modified July 1, 1974 by ORN */ 8 4 8 5 dcl relptr ptr; 8 6 dcl 1 relinfo aligned based(relptr), 8 7 2 decl_vers fixed bin, 8 8 2 n_bits fixed bin, 8 9 2 relbits bit(0 refer (relinfo.n_bits)) aligned; 8 10 8 11 /* 8 12*1) decl_vers is the version number of the 8 13* structure (initialized to 2). 8 14* 8 15*2) n_bits is the length (in bits) of the string 8 16* of relocation bits. 8 17* 8 18*3) relbits is the string of relocation bits. 8 19**/ 8 20 8 21 /* END INCLUDE FILE ... cobol_relinfo.incl.pl1 */ 8 22 189 190 end cobol_fix_driver_; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 05/24/89 0832.1 cobol_fix_driver_.pl1 >spec>install>MR12.3-1048>cobol_fix_driver_.pl1 181 1 10/10/83 1730.8 cobol_fixed_static.incl.pl1 >ldd>include>cobol_fixed_static.incl.pl1 182 2 11/11/82 1712.7 cobol_.incl.pl1 >ldd>include>cobol_.incl.pl1 183 3 11/11/82 1712.8 cobol_fixed_common.incl.pl1 >ldd>include>cobol_fixed_common.incl.pl1 184 4 03/27/82 0431.3 cobol_ext_.incl.pl1 >ldd>include>cobol_ext_.incl.pl1 185 5 03/27/82 0439.4 cobol_linkage_header.incl.pl1 >ldd>include>cobol_linkage_header.incl.pl1 187 6 03/10/77 1345.4 pl1_symbol_block.incl.pl1 >ldd>include>pl1_symbol_block.incl.pl1 188 7 11/11/82 1712.7 cobol_sbh.incl.pl1 >ldd>include>cobol_sbh.incl.pl1 189 8 03/27/82 0439.8 cobol_relinfo.incl.pl1 >ldd>include>cobol_relinfo.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 176 ref 161 addrel builtin function dcl 176 ref 97 103 104 area_relp 16(18) based bit(18) level 2 packed packed unaligned dcl 7-6 ref 96 cmp_bit 000127 automatic fixed bin(17,0) dcl 69 set ref 117* 118 122 cmp_cnt 000126 automatic fixed bin(17,0) dcl 69 set ref 115* 117 124 124 131 132 cmp_rest 000130 automatic fixed bin(17,0) dcl 69 set ref 116* 132 cobol_$constant_offset 000042 external static fixed bin(17,0) dcl 2-156 ref 80 cobol_$def_wd_off 000034 external static fixed bin(17,0) dcl 2-94 ref 87 cobol_$link_base_ptr 000022 external static pointer dcl 2-14 ref 98 98 101 101 103 103 104 104 133 133 cobol_$link_wd_off 000036 external static fixed bin(17,0) dcl 2-98 set ref 100 105 135* 135 157 cobol_$map_data_ptr 000030 external static pointer dcl 2-54 ref 93 145 cobol_$reloc_link_base_ptr 000026 external static pointer dcl 2-22 ref 113 cobol_$sym_base_ptr 000024 external static pointer dcl 2-16 ref 95 95 cobol_$sym_wd_off 000040 external static fixed bin(17,0) dcl 2-102 ref 88 cobol_$text_wd_off 000032 external static fixed bin(17,0) dcl 2-90 ref 85 cobol_com_ptr defined pointer dcl 4-25 ref 83 90 163 cobol_ext_$cobol_com_ptr 000044 external static pointer dcl 4-24 ref 83 83 90 90 163 163 cobol_fixup 000014 constant entry external dcl 37 ref 166 cobol_make_object_map 000010 constant entry external dcl 34 ref 163 cobol_mst 000012 constant entry external dcl 36 ref 83 cobol_paste 000020 constant entry external dcl 39 ref 168 cobol_patch 000016 constant entry external dcl 38 ref 167 code_len 1 000103 automatic fixed bin(17,0) level 2 dcl 57 set ref 85* 86 con_len 000103 automatic fixed bin(17,0) level 2 dcl 57 set ref 80* 86 def_len 3 000103 automatic fixed bin(17,0) level 2 dcl 57 set ref 87* fixed builtin function dcl 176 ref 96 101 139 fixed_common based structure level 1 unaligned dcl 3-26 fixed_static_length constant fixed bin(17,0) initial dcl 1-51 ref 94 105 156 flags 3 based structure level 2 dcl 6-1 header based bit(18) array level 2 packed packed unaligned dcl 76 set ref 139 141* 148* i 000122 automatic fixed bin(17,0) dcl 69 set ref 114* 115 116 124* 127* 137* 139 140 140 141* 145* 147 148 149* int_storage_len 6 000103 automatic fixed bin(17,0) level 2 dcl 57 set ref 94* 156* link_base_ptr defined pointer dcl 2-15 ref 98 101 103 104 133 link_len 4 000103 automatic fixed bin(17,0) level 2 dcl 57 set ref 100* 157* link_temp based structure array level 1 dcl 76 linkage_header based structure level 1 dcl 5-9 links_relp 6 based bit(18) level 2 packed packed unaligned dcl 5-9 set ref 98 101 133* m_map 133(25) based bit(1) level 3 packed packed unaligned dcl 3-26 ref 163 map_data_table based structure level 1 dcl 49 mod builtin function dcl 176 ref 116 n_bits 1 based fixed bin(17,0) level 2 dcl 8-6 set ref 118* 118 122 122 127 131 132 new_link 000120 automatic fixed bin(17,0) dcl 69 set ref 102* 104 112 133 new_link_ptr 000132 automatic pointer dcl 69 set ref 104* 140 141 new_reloc 000124 automatic fixed bin(17,0) dcl 69 set ref 112* no_links 000125 automatic fixed bin(17,0) dcl 69 set ref 105* 106* 106 108 122 122 137 no_source_stmts based fixed bin(17,0) level 2 dcl 49 ref 93 145 no_stmts_2 000102 automatic fixed bin(17,0) dcl 48 set ref 93* 94 100 102 114 135 139 old_link 000117 automatic fixed bin(17,0) dcl 69 set ref 101* 102 103 111 old_link_ptr 000134 automatic pointer dcl 69 set ref 103* 139 140 148 149 old_reloc 000123 automatic fixed bin(17,0) dcl 69 set ref 111* options 133 based structure level 2 packed packed unaligned dcl 3-26 pl1_symbol_block based structure level 1 dcl 6-1 profile 3 based bit(1) level 3 in structure "pl1_symbol_block" packed packed unaligned dcl 6-1 in procedure "cobol_fix_driver_" set ref 99* profile 133(16) based bit(1) level 3 in structure "fixed_common" packed packed unaligned dcl 3-26 in procedure "cobol_fix_driver_" ref 90 profile 5(18) based bit(18) level 2 in structure "pl1_symbol_block" packed packed unaligned dcl 6-1 in procedure "cobol_fix_driver_" set ref 98* psb_off 000116 automatic fixed bin(17,0) dcl 67 set ref 96* 97 psb_ptr 000114 automatic pointer dcl 67 set ref 97* 98 99 relbits 2 based bit level 2 dcl 8-6 set ref 122* 122 127* 131* 132* relinfo based structure level 1 dcl 8-6 relptr 000140 automatic pointer dcl 8-5 set ref 113* 118 118 122 122 127 131 132 rest 0(18) based bit(54) array level 2 packed packed unaligned dcl 76 set ref 140* 140 149* st 133(01) based bit(1) level 3 packed packed unaligned dcl 3-26 ref 83 substr builtin function dcl 176 set ref 122* 122 127* 131* 132* 132 133 141 148 sym_base_ptr defined pointer dcl 2-17 ref 95 sym_len 5 000103 automatic fixed bin(17,0) level 2 dcl 57 set ref 88* sym_ptr 000136 automatic pointer dcl 7-5 set ref 95* 96 97 symbol_block_header based structure level 1 dcl 7-6 temp_relp 000121 automatic fixed bin(17,0) dcl 69 set ref 139* 141 147* 148 text_len 2 000103 automatic fixed bin(17,0) level 2 dcl 57 set ref 86* unspec builtin function dcl 176 ref 132 133 141 148 value 000103 automatic structure level 1 dcl 57 set ref 161 value_ptr 000100 automatic pointer dcl 47 set ref 161* 166* 167* 168* NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. allo1_max defined fixed bin(17,0) dcl 2-171 allo1_ptr defined pointer dcl 2-67 alter_flag defined fixed bin(17,0) dcl 2-135 alter_index defined fixed bin(17,0) dcl 2-153 alter_list_ptr defined pointer dcl 2-39 binary builtin function dcl 176 cd_cnt defined fixed bin(17,0) dcl 2-197 cobol_$allo1_max external static fixed bin(17,0) dcl 2-170 cobol_$allo1_ptr external static pointer dcl 2-66 cobol_$alter_flag external static fixed bin(17,0) dcl 2-134 cobol_$alter_index external static fixed bin(17,0) dcl 2-152 cobol_$alter_list_ptr external static pointer dcl 2-38 cobol_$cd_cnt external static fixed bin(17,0) dcl 2-196 cobol_$cobol_data_wd_off external static fixed bin(17,0) dcl 2-118 cobol_$compile_count external static fixed bin(17,0) dcl 2-142 cobol_$coms_charcnt external static fixed bin(17,0) dcl 2-188 cobol_$coms_wdoff external static fixed bin(17,0) dcl 2-202 cobol_$con_end_ptr external static pointer dcl 2-10 cobol_$con_wd_off external static fixed bin(17,0) dcl 2-92 cobol_$cons_charcnt external static fixed bin(17,0) dcl 2-192 cobol_$data_init_flag external static fixed bin(17,0) dcl 2-130 cobol_$date_compiled_sw external static fixed bin(17,0) dcl 2-180 cobol_$debug_enable external static fixed bin(17,0) dcl 2-174 cobol_$def_base_ptr external static pointer dcl 2-12 cobol_$def_max external static fixed bin(17,0) dcl 2-96 cobol_$diag_ptr external static pointer dcl 2-70 cobol_$eln_max external static fixed bin(17,0) dcl 2-172 cobol_$eln_ptr external static pointer dcl 2-68 cobol_$fixup_max external static fixed bin(17,0) dcl 2-164 cobol_$fixup_ptr external static pointer dcl 2-30 cobol_$fs_charcnt external static fixed bin(17,0) dcl 2-184 cobol_$fs_wdoff external static fixed bin(17,0) dcl 2-198 cobol_$include_cnt external static fixed bin(17,0) dcl 2-182 cobol_$include_info_ptr external static pointer dcl 2-86 cobol_$init_stack_off external static fixed bin(17,0) dcl 2-124 cobol_$initval_base_ptr external static pointer dcl 2-32 cobol_$initval_file_ptr external static pointer dcl 2-34 cobol_$initval_flag external static fixed bin(17,0) dcl 2-178 cobol_$link_max external static fixed bin(17,0) dcl 2-100 cobol_$list_off external static fixed bin(17,0) dcl 2-154 cobol_$list_ptr external static pointer dcl 2-64 cobol_$ls_charcnt external static fixed bin(17,0) dcl 2-190 cobol_$main_pcs_ptr external static pointer dcl 2-84 cobol_$map_data_max external static fixed bin(17,0) dcl 2-162 cobol_$max_stack_off external static fixed bin(17,0) dcl 2-122 cobol_$minpral5_ptr external static pointer dcl 2-50 cobol_$misc_base_ptr external static pointer dcl 2-60 cobol_$misc_end_ptr external static pointer dcl 2-62 cobol_$misc_max external static fixed bin(17,0) dcl 2-158 cobol_$next_tag external static fixed bin(17,0) dcl 2-128 cobol_$non_source_offset external static fixed bin(17,0) dcl 2-176 cobol_$ntbuf_ptr external static pointer dcl 2-82 cobol_$obj_seg_name external static char(32) dcl 2-208 cobol_$op_con_ptr external static pointer dcl 2-80 cobol_$para_eop_flag external static fixed bin(17,0) dcl 2-138 cobol_$pd_map_index external static fixed bin(17,0) dcl 2-116 cobol_$pd_map_max external static fixed bin(17,0) dcl 2-160 cobol_$pd_map_ptr external static pointer dcl 2-28 cobol_$pd_map_sw external static fixed bin(17,0) dcl 2-126 cobol_$perform_list_ptr external static pointer dcl 2-36 cobol_$perform_para_index external static fixed bin(17,0) dcl 2-148 cobol_$perform_sect_index external static fixed bin(17,0) dcl 2-150 cobol_$priority_no external static fixed bin(17,0) dcl 2-140 cobol_$ptr_assumption_ind external static fixed bin(17,0) dcl 2-144 cobol_$ptr_status_ptr external static pointer dcl 2-56 cobol_$reg_assumption_ind external static fixed bin(17,0) dcl 2-146 cobol_$reg_status_ptr external static pointer dcl 2-58 cobol_$reloc_def_base_ptr external static pointer dcl 2-20 cobol_$reloc_def_max external static fixed bin(24,0) dcl 2-108 cobol_$reloc_link_max external static fixed bin(24,0) dcl 2-110 cobol_$reloc_sym_base_ptr external static pointer dcl 2-24 cobol_$reloc_sym_max external static fixed bin(24,0) dcl 2-112 cobol_$reloc_text_base_ptr external static pointer dcl 2-18 cobol_$reloc_text_max external static fixed bin(24,0) dcl 2-106 cobol_$reloc_work_base_ptr external static pointer dcl 2-26 cobol_$reloc_work_max external static fixed bin(24,0) dcl 2-114 cobol_$reswd_ptr external static pointer dcl 2-78 cobol_$same_sort_merge_proc external static bit(1) dcl 2-214 cobol_$scratch_dir external static char(168) dcl 2-206 cobol_$sect_eop_flag external static fixed bin(17,0) dcl 2-136 cobol_$seg_init_flag external static fixed bin(17,0) dcl 2-132 cobol_$seg_init_list_ptr external static pointer dcl 2-40 cobol_$stack_off external static fixed bin(17,0) dcl 2-120 cobol_$statement_info_ptr external static pointer dcl 2-76 cobol_$sym_max external static fixed bin(17,0) dcl 2-104 cobol_$tag_table_max external static fixed bin(17,0) dcl 2-166 cobol_$tag_table_ptr external static pointer dcl 2-52 cobol_$temp_token_area_ptr external static pointer dcl 2-42 cobol_$temp_token_max external static fixed bin(17,0) dcl 2-168 cobol_$temp_token_ptr external static pointer dcl 2-44 cobol_$text_base_ptr external static pointer dcl 2-8 cobol_$token_block1_ptr external static pointer dcl 2-46 cobol_$token_block2_ptr external static pointer dcl 2-48 cobol_$value_cnt external static fixed bin(17,0) dcl 2-194 cobol_$ws_charcnt external static fixed bin(17,0) dcl 2-186 cobol_$ws_wdoff external static fixed bin(17,0) dcl 2-200 cobol_$xref_bypass external static bit(1) dcl 2-212 cobol_$xref_chain_ptr external static pointer dcl 2-74 cobol_$xref_token_ptr external static pointer dcl 2-72 cobol_afp defined pointer dcl 4-11 cobol_analin_fileno defined pointer dcl 4-13 cobol_cmfp defined pointer dcl 4-21 cobol_com_fileno defined pointer dcl 4-23 cobol_curr_in defined pointer dcl 4-53 cobol_curr_out defined pointer dcl 4-55 cobol_data_wd_off defined fixed bin(17,0) dcl 2-119 cobol_dfp defined pointer dcl 4-27 cobol_eltp defined pointer dcl 4-19 cobol_ext_$cobol_afp external static pointer dcl 4-10 cobol_ext_$cobol_analin_fileno external static pointer dcl 4-12 cobol_ext_$cobol_cmfp external static pointer dcl 4-20 cobol_ext_$cobol_com_fileno external static pointer dcl 4-22 cobol_ext_$cobol_curr_in external static pointer dcl 4-52 cobol_ext_$cobol_curr_out external static pointer dcl 4-54 cobol_ext_$cobol_dfp external static pointer dcl 4-26 cobol_ext_$cobol_eltp external static pointer dcl 4-18 cobol_ext_$cobol_fileno1 external static fixed bin(24,0) dcl 4-78 cobol_ext_$cobol_hfp external static pointer dcl 4-28 cobol_ext_$cobol_lpr external static char(5) packed unaligned dcl 4-95 cobol_ext_$cobol_m1fp external static pointer dcl 4-30 cobol_ext_$cobol_m2fp external static pointer dcl 4-32 cobol_ext_$cobol_min1_fileno external static pointer dcl 4-34 cobol_ext_$cobol_min2_fileno_ptr external static pointer dcl 4-36 cobol_ext_$cobol_name_fileno external static pointer dcl 4-38 cobol_ext_$cobol_name_fileno_ptr external static pointer dcl 4-40 cobol_ext_$cobol_ntfp external static pointer dcl 4-42 cobol_ext_$cobol_options external static char(120) packed unaligned dcl 4-97 cobol_ext_$cobol_options_len external static fixed bin(24,0) dcl 4-80 cobol_ext_$cobol_pdofp external static pointer dcl 4-44 cobol_ext_$cobol_pdout_fileno external static fixed bin(24,0) dcl 4-82 cobol_ext_$cobol_pfp external static pointer dcl 4-46 cobol_ext_$cobol_print_fileno external static fixed bin(24,0) dcl 4-84 cobol_ext_$cobol_rm2fp external static pointer dcl 4-48 cobol_ext_$cobol_rmin2_fileno external static fixed bin(24,0) dcl 4-86 cobol_ext_$cobol_rmin2fp external static pointer dcl 4-50 cobol_ext_$cobol_rwdd external static pointer dcl 4-72 cobol_ext_$cobol_rwpd external static pointer dcl 4-74 cobol_ext_$cobol_sfp external static pointer dcl 4-56 cobol_ext_$cobol_w1p external static pointer dcl 4-58 cobol_ext_$cobol_w2p external static pointer dcl 4-60 cobol_ext_$cobol_w3p external static pointer dcl 4-62 cobol_ext_$cobol_w5p external static pointer dcl 4-64 cobol_ext_$cobol_w6p external static pointer dcl 4-66 cobol_ext_$cobol_w7p external static pointer dcl 4-68 cobol_ext_$cobol_x1_fileno external static fixed bin(24,0) dcl 4-88 cobol_ext_$cobol_x2_fileno external static fixed bin(24,0) dcl 4-90 cobol_ext_$cobol_x3_fileno external static fixed bin(24,0) dcl 4-92 cobol_ext_$cobol_x3fp external static pointer dcl 4-70 cobol_ext_$cobol_xlast8 external static bit(1) packed unaligned dcl 4-100 cobol_ext_$report_exists external static bit(1) packed unaligned dcl 4-102 cobol_ext_$report_first_token external static pointer dcl 4-14 cobol_ext_$report_last_token external static pointer dcl 4-16 cobol_fileno1 defined fixed bin(24,0) dcl 4-79 cobol_hfp defined pointer dcl 4-29 cobol_lpr defined char(5) packed unaligned dcl 4-96 cobol_m1fp defined pointer dcl 4-31 cobol_m2fp defined pointer dcl 4-33 cobol_min1_fileno defined pointer dcl 4-35 cobol_min2_fileno_ptr defined pointer dcl 4-37 cobol_name_fileno defined pointer dcl 4-39 cobol_name_fileno_ptr defined pointer dcl 4-41 cobol_ntfp defined pointer dcl 4-43 cobol_options defined char(120) packed unaligned dcl 4-98 cobol_options_len defined fixed bin(24,0) dcl 4-81 cobol_pdofp defined pointer dcl 4-45 cobol_pdout_fileno defined fixed bin(24,0) dcl 4-83 cobol_pfp defined pointer dcl 4-47 cobol_print_fileno defined fixed bin(24,0) dcl 4-85 cobol_rm2fp defined pointer dcl 4-49 cobol_rmin2_fileno defined fixed bin(24,0) dcl 4-87 cobol_rmin2fp defined pointer dcl 4-51 cobol_rwdd defined pointer dcl 4-73 cobol_rwpd defined pointer dcl 4-75 cobol_sfp defined pointer dcl 4-57 cobol_w1p defined pointer dcl 4-59 cobol_w2p defined pointer dcl 4-61 cobol_w3p defined pointer dcl 4-63 cobol_w5p defined pointer dcl 4-65 cobol_w6p defined pointer dcl 4-67 cobol_w7p defined pointer dcl 4-69 cobol_x1_fileno defined fixed bin(24,0) dcl 4-89 cobol_x2_fileno defined fixed bin(24,0) dcl 4-91 cobol_x3_fileno defined fixed bin(24,0) dcl 4-93 cobol_x3fp defined pointer dcl 4-71 cobol_xlast8 defined bit(1) packed unaligned dcl 4-101 compile_count defined fixed bin(17,0) dcl 2-143 coms_charcnt defined fixed bin(17,0) dcl 2-189 coms_wdoff defined fixed bin(17,0) dcl 2-203 con_end_ptr defined pointer dcl 2-11 con_wd_off defined fixed bin(17,0) dcl 2-93 cons_charcnt defined fixed bin(17,0) dcl 2-193 constant_offset defined fixed bin(17,0) dcl 2-157 data_init_flag defined fixed bin(17,0) dcl 2-131 date_compiled_sw defined fixed bin(17,0) dcl 2-181 debug_enable defined fixed bin(17,0) dcl 2-175 def_base_ptr defined pointer dcl 2-13 def_max defined fixed bin(17,0) dcl 2-97 def_wd_off defined fixed bin(17,0) dcl 2-95 diag_ptr defined pointer dcl 2-71 eln_max defined fixed bin(17,0) dcl 2-173 eln_ptr defined pointer dcl 2-69 first_link_offset internal static fixed bin(17,0) initial dcl 1-52 fixup_max defined fixed bin(17,0) dcl 2-165 fixup_ptr defined pointer dcl 2-31 fs_charcnt defined fixed bin(17,0) dcl 2-185 fs_wdoff defined fixed bin(17,0) dcl 2-199 include_cnt defined fixed bin(17,0) dcl 2-183 include_info_ptr defined pointer dcl 2-87 index builtin function dcl 176 init_stack_off defined fixed bin(17,0) dcl 2-125 initval_base_ptr defined pointer dcl 2-33 initval_file_ptr defined pointer dcl 2-35 initval_flag defined fixed bin(17,0) dcl 2-179 length builtin function dcl 176 link_max defined fixed bin(17,0) dcl 2-101 link_wd_off defined fixed bin(17,0) dcl 2-99 list_off defined fixed bin(17,0) dcl 2-155 list_ptr defined pointer dcl 2-65 ls_charcnt defined fixed bin(17,0) dcl 2-191 main_pcs_ptr defined pointer dcl 2-85 map_data_max defined fixed bin(17,0) dcl 2-163 map_data_ptr defined pointer dcl 2-55 max_stack_off defined fixed bin(17,0) dcl 2-123 minpral5_ptr defined pointer dcl 2-51 misc_base_ptr defined pointer dcl 2-61 misc_end_ptr defined pointer dcl 2-63 misc_max defined fixed bin(17,0) dcl 2-159 next_tag defined fixed bin(17,0) dcl 2-129 non_source_offset defined fixed bin(17,0) dcl 2-177 ntbuf_ptr defined pointer dcl 2-83 null builtin function dcl 176 obj_seg_name defined char(32) dcl 2-209 op_con_ptr defined pointer dcl 2-81 para_eop_flag defined fixed bin(17,0) dcl 2-139 pd_map_index defined fixed bin(17,0) dcl 2-117 pd_map_max defined fixed bin(17,0) dcl 2-161 pd_map_ptr defined pointer dcl 2-29 pd_map_sw defined fixed bin(17,0) dcl 2-127 perform_list_ptr defined pointer dcl 2-37 perform_para_index defined fixed bin(17,0) dcl 2-149 perform_sect_index defined fixed bin(17,0) dcl 2-151 priority_no defined fixed bin(17,0) dcl 2-141 ptr_assumption_ind defined fixed bin(17,0) dcl 2-145 ptr_status_ptr defined pointer dcl 2-57 reg_assumption_ind defined fixed bin(17,0) dcl 2-147 reg_status_ptr defined pointer dcl 2-59 rel builtin function dcl 176 reloc_def_base_ptr defined pointer dcl 2-21 reloc_def_max defined fixed bin(24,0) dcl 2-109 reloc_link_base_ptr defined pointer dcl 2-23 reloc_link_max defined fixed bin(24,0) dcl 2-111 reloc_sym_base_ptr defined pointer dcl 2-25 reloc_sym_max defined fixed bin(24,0) dcl 2-113 reloc_text_base_ptr defined pointer dcl 2-19 reloc_text_max defined fixed bin(24,0) dcl 2-107 reloc_work_base_ptr defined pointer dcl 2-27 reloc_work_max defined fixed bin(24,0) dcl 2-115 report_exists defined bit(1) packed unaligned dcl 4-103 report_first_token defined pointer dcl 4-15 report_last_token defined pointer dcl 4-17 reswd_ptr defined pointer dcl 2-79 same_sort_merge_proc defined bit(1) dcl 2-215 scratch_dir defined char(168) dcl 2-207 sect_eop_flag defined fixed bin(17,0) dcl 2-137 seg_init_flag defined fixed bin(17,0) dcl 2-133 seg_init_list_ptr defined pointer dcl 2-41 stack_off defined fixed bin(17,0) dcl 2-121 stat based structure level 1 dcl 1-23 stat_ptr automatic pointer dcl 1-22 statement_info_ptr defined pointer dcl 2-77 string builtin function dcl 176 sym_max defined fixed bin(17,0) dcl 2-105 sym_wd_off defined fixed bin(17,0) dcl 2-103 tag_table_max defined fixed bin(17,0) dcl 2-167 tag_table_ptr defined pointer dcl 2-53 temp_token_area_ptr defined pointer dcl 2-43 temp_token_max defined fixed bin(17,0) dcl 2-169 temp_token_ptr defined pointer dcl 2-45 text_base_ptr defined pointer dcl 2-9 text_wd_off defined fixed bin(17,0) dcl 2-91 token_block1_ptr defined pointer dcl 2-47 token_block2_ptr defined pointer dcl 2-49 value_cnt defined fixed bin(17,0) dcl 2-195 ws_charcnt defined fixed bin(17,0) dcl 2-187 ws_wdoff defined fixed bin(17,0) dcl 2-201 xref_bypass defined bit(1) dcl 2-213 xref_chain_ptr defined pointer dcl 2-75 xref_token_ptr defined pointer dcl 2-73 NAMES DECLARED BY EXPLICIT CONTEXT. cobol_fix_driver_ 000003 constant entry external dcl 27 exit 000371 constant label dcl 170 start 000010 constant label dcl 80 NAME DECLARED BY CONTEXT OR IMPLICATION. divide builtin function ref 106 115 STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 576 644 377 606 Length 1212 377 46 332 177 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME cobol_fix_driver_ 106 external procedure is an external procedure. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME cobol_fix_driver_ 000100 value_ptr cobol_fix_driver_ 000102 no_stmts_2 cobol_fix_driver_ 000103 value cobol_fix_driver_ 000114 psb_ptr cobol_fix_driver_ 000116 psb_off cobol_fix_driver_ 000117 old_link cobol_fix_driver_ 000120 new_link cobol_fix_driver_ 000121 temp_relp cobol_fix_driver_ 000122 i cobol_fix_driver_ 000123 old_reloc cobol_fix_driver_ 000124 new_reloc cobol_fix_driver_ 000125 no_links cobol_fix_driver_ 000126 cmp_cnt cobol_fix_driver_ 000127 cmp_bit cobol_fix_driver_ 000130 cmp_rest cobol_fix_driver_ 000132 new_link_ptr cobol_fix_driver_ 000134 old_link_ptr cobol_fix_driver_ 000136 sym_ptr cobol_fix_driver_ 000140 relptr cobol_fix_driver_ THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out return_mac mdfx1 ext_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. cobol_fixup cobol_make_object_map cobol_mst cobol_paste cobol_patch THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. cobol_$constant_offset cobol_$def_wd_off cobol_$link_base_ptr cobol_$link_wd_off cobol_$map_data_ptr cobol_$reloc_link_base_ptr cobol_$sym_base_ptr cobol_$sym_wd_off cobol_$text_wd_off cobol_ext_$cobol_com_ptr LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 27 000002 80 000010 83 000012 85 000023 86 000026 87 000030 88 000032 90 000034 93 000041 94 000046 95 000050 96 000053 97 000056 98 000061 99 000066 100 000070 101 000073 102 000076 103 000100 104 000104 105 000107 106 000112 108 000114 111 000115 112 000121 113 000125 114 000130 115 000133 116 000135 117 000141 118 000145 122 000147 124 000160 127 000171 129 000207 131 000211 132 000221 133 000226 135 000234 137 000236 139 000243 140 000254 141 000262 143 000266 145 000271 147 000303 148 000306 149 000315 151 000321 153 000323 156 000324 157 000326 161 000330 163 000332 166 000344 167 000353 168 000362 170 000371 ----------------------------------------------------------- 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