COMPILATION LISTING OF SEGMENT cobol_c_list 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 1005.9 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_c_list.pl1 Reformatted code to new Cobol standard. 19* END HISTORY COMMENTS */ 20 21 22 /* Modified on 06/13/79 by MHD, [4.0-3] , check for leveling diagnostic first */ 23 /* Modified on 04/28/79 by FCH, [4.0-2], if leveling then suppress sev 1 ,2 */ 24 /* Modified on 04/25/79 by FCH, [4.0-1], debug phase added */ 25 /* Modified since Version 4.0 */ 26 27 /* format: style3 */ 28 cobol_c_list: 29 proc (message_ptr); 30 31 dcl (i, sv) fixed bin; 32 dcl diag_text_ptr ptr; 33 dcl diag_text char (100000) based (diag_text_ptr); 34 35 dcl 1 last_message static, 36 2 size fixed bin, 37 2 line fixed bin, 38 2 column fixed bin, 39 2 type fixed bin, 40 2 run fixed bin init (0), 41 2 number fixed bin, 42 2 info bit (9), 43 2 module bit (27), 44 2 image_size fixed bin, 45 2 image char (256); 46 47 dcl phase_con (10) char (13) static 48 init ("lexical", "ID/ED syntax", "DD syntax", "RW syntax", "PD syntax", "replacement", 49 "report writer", "corresponding", 50 /*[4.0-1]*/ 51 "leveling", /*[4.0-1]*/ 52 "debug"); 53 54 dcl signal_ entry (char (*), ptr, ptr); 55 dcl cobol_swf_put entry (ptr, bit (32), ptr, fixed bin); 56 dcl st bit (32); 57 58 59 /*************************************/ 60 if message_ptr ^= null () 61 then if message.type = 5 62 then do; 63 64 /******************************************************************************/ 65 /* Modified on 6/13/79 by MHD. This modification is to aid in the readibility */ 66 /* of this program. The first check is checking if the diagonistic is a */ 67 /* leveling diagnostic error. If not then it checks the severity of the error */ 68 /******************************************************************************/ 69 70 /*[4.0-3]*/ 71 if message.run = 9 /*[4.0-3]*/ 72 then do; /*[4.0-3]*/ 73 call cobol_swf_put (cobol_ext_$cobol_dfp, st, message_ptr, message.size); 74 /*[4.0-3]*/ 75 if substr (fixed_common.levsv, 3, 1) 76 /*[4.0-3]*/ 77 /*[4.0-3]*/ 78 then fixed_common.fatal_no = fixed_common.fatal_no + 1; 79 /*[4.0-3]*/ 80 /*[4.0-3]*/ 81 else /* do nothing */ 82 ; 83 84 /*[4.0-3]*/ 85 return; 86 end /* then do */; 87 88 i = diag_file.run_table.base (message.run) + message.number; 89 90 /*[4.0-2]*/ 91 sv = diag_file.diag_table.d_type (i); 92 /*[4.0-2]*/ 93 if fixed_common.comp_level < "5" /*[4.0-2]*/ 94 then if sv = 1 | sv = 2 95 then return; 96 97 if sv ^= 1 98 then do; 99 100 call cobol_swf_put (cobol_ext_$cobol_dfp, st, message_ptr, message.size); 101 102 if sv = 3 103 then do; 104 fixed_common.fatal_no = fixed_common.fatal_no + 1; 105 end; 106 else if sv = 4 107 then do; 108 109 error_info.name = phase_con (message.run); 110 error_info.message_len = diag_file.diag_table.d_len (i); 111 diag_text_ptr = addr (diag_file.diag_table (diag_file.d_t_size + 1)); 112 error_info.message = substr (diag_text, d_start (i), d_len (i)); 113 message.run = 1; 114 message.number = 32; 115 116 /* Syntax checking discontinued good */ 117 118 call cobol_swf_put (cobol_ext_$cobol_dfp, st, message_ptr, message.size); 119 call signal_ ("command_abort_", null (), addr (error_info)); 120 121 end; 122 123 end; 124 125 else do; 126 127 if (message.run = 1 & message.number = 11) | (message.run = 2 & message.number = 104) 128 | (message.run = 3 & message.number = 152) 129 | (message.run = 5 & message.number = 164) 130 | (message.run = 8 & message.number = 7) 131 then last_message = message; 132 133 else if (message.run = 1 & message.number = 12) 134 | (message.run = 2 & message.number = 89) 135 | (message.run = 3 & message.number = 154) 136 | (message.run = 5 & message.number = 165) 137 | (message.run = 8 & message.number = 8) 138 then if (message.line ^= last_message.line | message.column ^= last_message.column) 139 & last_message.run ^= 0 140 then do; 141 142 call cobol_swf_put (cobol_ext_$cobol_dfp, st, addr (last_message), 143 last_message.size); 144 call cobol_swf_put (cobol_ext_$cobol_dfp, st, message_ptr, message.size) 145 ; 146 147 last_message.run = 0; 148 end; 149 150 else ; 151 152 else call cobol_swf_put (cobol_ext_$cobol_dfp, st, message_ptr, message.size); 153 154 end; 155 156 end; 157 158 159 /*************************************/ 160 /* INCLUDE FILES */ 1 1 1 2 /* BEGIN INCLUDE FILE ... cobol_error_info.incl.pl1 */ 1 3 /* Last modified July 8, 1974 by ORN */ 1 4 1 5 dcl 1 error_info, 1 6 2 name char(32), 1 7 2 message_len fixed bin, 1 8 2 message char(128); 1 9 1 10 1 11 /* 1 12*name the name of the program signalling the error. 1 13* 1 14*message_len the number of valid characters in message. 1 15* 1 16*message the text of the message to be issued. 1 17**/ 1 18 1 19 /* END INCLUDE FILE ... cobol_error_info.incl.pl1 */ 1 20 161 2 1 2 2 /* BEGIN INCLUDE FILE ... cobol_diag_file.incl.pl1 */ 2 3 /* Last modified on 06/18/76 by ORN */ 2 4 2 5 /* This include file serves as a template for the file 2 6* (segment) containg MCOBOL diagnostic messages: 2 7* cobol_diag_table_$cobol_diag_table_ */ 2 8 2 9 dcl 1 diag_file based(cobol_$diag_ptr), 2 10 2 r_t_size fixed bin, 2 11 2 d_t_size fixed bin, 2 12 2 d_s_size fixed bin, 2 13 2 run_table (11), 2 14 3 base fixed bin, 2 15 3 size fixed bin, 2 16 2 diag_table(0 refer(diag_file.d_t_size)), 2 17 3 d_start fixed bin, 2 18 3 d_len fixed bin, 2 19 3 d_type fixed bin, 2 20 3 d_param fixed bin; 2 21 2 22 /* END INCLUDE FILE ... cobol_diag_file.incl.pl1 */ 2 23 162 3 1 3 2 /* BEGIN INCLUDE FILE ... cobol_type5.incl.pl1 */ 3 3 /* Last modified on 11/19/76 by ORN */ 3 4 3 5 /* 3 6*A diag message token is created by each of the front end modules 3 7*when an error is discovered. It is output sequentially to the cobol_diags_ file 3 8*via the utility program cobol_c_list and later processed by the cobol_print_diag 3 9*phase. 3 10**/ 3 11 3 12 dcl message_ptr ptr; 3 13 3 14 /* BEGIN DECLARATION OF TYPE5 (DIAG MESSAGE) TOKEN */ 3 15 dcl 1 message based (message_ptr), 4 1 4 2 /* begin include file ... cobol_TYPE5.incl.pl1 */ 4 3 /* Last modified on 7/26/77 by FCH */ 4 4 4 5 /* header */ 4 6 2 size fixed bin, 4 7 2 line fixed bin, 4 8 2 column fixed bin, 4 9 2 type fixed bin, 4 10 /* body */ 4 11 2 run fixed bin, 4 12 2 number fixed bin, 4 13 2 info bit(9), 4 14 2 module bit(27), 4 15 2 image_size fixed bin, 4 16 2 image char(0 refer(message.image_size)); 4 17 4 18 /* end include file ... cobol_TYPE5.incl.pl1 */ 4 19 3 16 3 17 /* END DECLARATION OF TYPE5 (DIAG MESSAGE) TOKEN */ 3 18 3 19 /* END INCLUDE FILE ... cobol_type5.incl.pl1 */ 3 20 163 5 1 5 2 /* BEGIN INCLUDE FILE ... cobol_.incl.pl1 */ 5 3 /* last modified Feb 4, 1977 by ORN */ 5 4 5 5 /* This file defines all external data used in the generator phase of Multics Cobol */ 5 6 5 7 /* POINTERS */ 5 8 dcl cobol_$text_base_ptr ptr ext; 5 9 dcl text_base_ptr ptr defined (cobol_$text_base_ptr); 5 10 dcl cobol_$con_end_ptr ptr ext; 5 11 dcl con_end_ptr ptr defined (cobol_$con_end_ptr); 5 12 dcl cobol_$def_base_ptr ptr ext; 5 13 dcl def_base_ptr ptr defined (cobol_$def_base_ptr); 5 14 dcl cobol_$link_base_ptr ptr ext; 5 15 dcl link_base_ptr ptr defined (cobol_$link_base_ptr); 5 16 dcl cobol_$sym_base_ptr ptr ext; 5 17 dcl sym_base_ptr ptr defined (cobol_$sym_base_ptr); 5 18 dcl cobol_$reloc_text_base_ptr ptr ext; 5 19 dcl reloc_text_base_ptr ptr defined (cobol_$reloc_text_base_ptr); 5 20 dcl cobol_$reloc_def_base_ptr ptr ext; 5 21 dcl reloc_def_base_ptr ptr defined (cobol_$reloc_def_base_ptr); 5 22 dcl cobol_$reloc_link_base_ptr ptr ext; 5 23 dcl reloc_link_base_ptr ptr defined (cobol_$reloc_link_base_ptr); 5 24 dcl cobol_$reloc_sym_base_ptr ptr ext; 5 25 dcl reloc_sym_base_ptr ptr defined (cobol_$reloc_sym_base_ptr); 5 26 dcl cobol_$reloc_work_base_ptr ptr ext; 5 27 dcl reloc_work_base_ptr ptr defined (cobol_$reloc_work_base_ptr); 5 28 dcl cobol_$pd_map_ptr ptr ext; 5 29 dcl pd_map_ptr ptr defined (cobol_$pd_map_ptr); 5 30 dcl cobol_$fixup_ptr ptr ext; 5 31 dcl fixup_ptr ptr defined (cobol_$fixup_ptr); 5 32 dcl cobol_$initval_base_ptr ptr ext; 5 33 dcl initval_base_ptr ptr defined (cobol_$initval_base_ptr); 5 34 dcl cobol_$initval_file_ptr ptr ext; 5 35 dcl initval_file_ptr ptr defined (cobol_$initval_file_ptr); 5 36 dcl cobol_$perform_list_ptr ptr ext; 5 37 dcl perform_list_ptr ptr defined (cobol_$perform_list_ptr); 5 38 dcl cobol_$alter_list_ptr ptr ext; 5 39 dcl alter_list_ptr ptr defined (cobol_$alter_list_ptr); 5 40 dcl cobol_$seg_init_list_ptr ptr ext; 5 41 dcl seg_init_list_ptr ptr defined (cobol_$seg_init_list_ptr); 5 42 dcl cobol_$temp_token_area_ptr ptr ext; 5 43 dcl temp_token_area_ptr ptr defined (cobol_$temp_token_area_ptr); 5 44 dcl cobol_$temp_token_ptr ptr ext; 5 45 dcl temp_token_ptr ptr defined (cobol_$temp_token_ptr); 5 46 dcl cobol_$token_block1_ptr ptr ext; 5 47 dcl token_block1_ptr ptr defined (cobol_$token_block1_ptr); 5 48 dcl cobol_$token_block2_ptr ptr ext; 5 49 dcl token_block2_ptr ptr defined (cobol_$token_block2_ptr); 5 50 dcl cobol_$minpral5_ptr ptr ext; 5 51 dcl minpral5_ptr ptr defined (cobol_$minpral5_ptr); 5 52 dcl cobol_$tag_table_ptr ptr ext; 5 53 dcl tag_table_ptr ptr defined (cobol_$tag_table_ptr); 5 54 dcl cobol_$map_data_ptr ptr ext; 5 55 dcl map_data_ptr ptr defined (cobol_$map_data_ptr); 5 56 dcl cobol_$ptr_status_ptr ptr ext; 5 57 dcl ptr_status_ptr ptr defined (cobol_$ptr_status_ptr); 5 58 dcl cobol_$reg_status_ptr ptr ext; 5 59 dcl reg_status_ptr ptr defined (cobol_$reg_status_ptr); 5 60 dcl cobol_$misc_base_ptr ptr ext; 5 61 dcl misc_base_ptr ptr defined (cobol_$misc_base_ptr); 5 62 dcl cobol_$misc_end_ptr ptr ext; 5 63 dcl misc_end_ptr ptr defined (cobol_$misc_end_ptr); 5 64 dcl cobol_$list_ptr ptr ext; 5 65 dcl list_ptr ptr defined (cobol_$list_ptr); 5 66 dcl cobol_$allo1_ptr ptr ext; 5 67 dcl allo1_ptr ptr defined (cobol_$allo1_ptr); 5 68 dcl cobol_$eln_ptr ptr ext; 5 69 dcl eln_ptr ptr defined (cobol_$eln_ptr); 5 70 dcl cobol_$diag_ptr ptr ext; 5 71 dcl diag_ptr ptr defined (cobol_$diag_ptr); 5 72 dcl cobol_$xref_token_ptr ptr ext; 5 73 dcl xref_token_ptr ptr defined (cobol_$xref_token_ptr); 5 74 dcl cobol_$xref_chain_ptr ptr ext; 5 75 dcl xref_chain_ptr ptr defined (cobol_$xref_chain_ptr); 5 76 dcl cobol_$statement_info_ptr ptr ext; 5 77 dcl statement_info_ptr ptr defined (cobol_$statement_info_ptr); 5 78 dcl cobol_$reswd_ptr ptr ext; 5 79 dcl reswd_ptr ptr defined (cobol_$reswd_ptr); 5 80 dcl cobol_$op_con_ptr ptr ext; 5 81 dcl op_con_ptr ptr defined (cobol_$op_con_ptr); 5 82 dcl cobol_$ntbuf_ptr ptr ext; 5 83 dcl ntbuf_ptr ptr defined (cobol_$ntbuf_ptr); 5 84 dcl cobol_$main_pcs_ptr ptr ext; 5 85 dcl main_pcs_ptr ptr defined (cobol_$main_pcs_ptr); 5 86 dcl cobol_$include_info_ptr ptr ext; 5 87 dcl include_info_ptr ptr defined (cobol_$include_info_ptr); 5 88 5 89 /* FIXED BIN */ 5 90 dcl cobol_$text_wd_off fixed bin ext; 5 91 dcl text_wd_off fixed bin defined (cobol_$text_wd_off); 5 92 dcl cobol_$con_wd_off fixed bin ext; 5 93 dcl con_wd_off fixed bin defined (cobol_$con_wd_off); 5 94 dcl cobol_$def_wd_off fixed bin ext; 5 95 dcl def_wd_off fixed bin defined (cobol_$def_wd_off); 5 96 dcl cobol_$def_max fixed bin ext; 5 97 dcl def_max fixed bin defined (cobol_$def_max); 5 98 dcl cobol_$link_wd_off fixed bin ext; 5 99 dcl link_wd_off fixed bin defined (cobol_$link_wd_off); 5 100 dcl cobol_$link_max fixed bin ext; 5 101 dcl link_max fixed bin defined (cobol_$link_max); 5 102 dcl cobol_$sym_wd_off fixed bin ext; 5 103 dcl sym_wd_off fixed bin defined (cobol_$sym_wd_off); 5 104 dcl cobol_$sym_max fixed bin ext; 5 105 dcl sym_max fixed bin defined (cobol_$sym_max); 5 106 dcl cobol_$reloc_text_max fixed bin(24) ext; 5 107 dcl reloc_text_max fixed bin(24) defined (cobol_$reloc_text_max); 5 108 dcl cobol_$reloc_def_max fixed bin(24) ext; 5 109 dcl reloc_def_max fixed bin(24) defined (cobol_$reloc_def_max); 5 110 dcl cobol_$reloc_link_max fixed bin(24) ext; 5 111 dcl reloc_link_max fixed bin(24) defined (cobol_$reloc_link_max); 5 112 dcl cobol_$reloc_sym_max fixed bin(24) ext; 5 113 dcl reloc_sym_max fixed bin(24) defined (cobol_$reloc_sym_max); 5 114 dcl cobol_$reloc_work_max fixed bin(24) ext; 5 115 dcl reloc_work_max fixed bin(24) defined (cobol_$reloc_work_max); 5 116 dcl cobol_$pd_map_index fixed bin ext; 5 117 dcl pd_map_index fixed bin defined (cobol_$pd_map_index); 5 118 dcl cobol_$cobol_data_wd_off fixed bin ext; 5 119 dcl cobol_data_wd_off fixed bin defined (cobol_$cobol_data_wd_off); 5 120 dcl cobol_$stack_off fixed bin ext; 5 121 dcl stack_off fixed bin defined (cobol_$stack_off); 5 122 dcl cobol_$max_stack_off fixed bin ext; 5 123 dcl max_stack_off fixed bin defined (cobol_$max_stack_off); 5 124 dcl cobol_$init_stack_off fixed bin ext; 5 125 dcl init_stack_off fixed bin defined (cobol_$init_stack_off); 5 126 dcl cobol_$pd_map_sw fixed bin ext; 5 127 dcl pd_map_sw fixed bin defined (cobol_$pd_map_sw); 5 128 dcl cobol_$next_tag fixed bin ext; 5 129 dcl next_tag fixed bin defined (cobol_$next_tag); 5 130 dcl cobol_$data_init_flag fixed bin ext; 5 131 dcl data_init_flag fixed bin defined (cobol_$data_init_flag); 5 132 dcl cobol_$seg_init_flag fixed bin ext; 5 133 dcl seg_init_flag fixed bin defined (cobol_$seg_init_flag); 5 134 dcl cobol_$alter_flag fixed bin ext; 5 135 dcl alter_flag fixed bin defined (cobol_$alter_flag); 5 136 dcl cobol_$sect_eop_flag fixed bin ext; 5 137 dcl sect_eop_flag fixed bin defined (cobol_$sect_eop_flag); 5 138 dcl cobol_$para_eop_flag fixed bin ext; 5 139 dcl para_eop_flag fixed bin defined (cobol_$para_eop_flag); 5 140 dcl cobol_$priority_no fixed bin ext; 5 141 dcl priority_no fixed bin defined (cobol_$priority_no); 5 142 dcl cobol_$compile_count fixed bin ext; 5 143 dcl compile_count fixed bin defined (cobol_$compile_count); 5 144 dcl cobol_$ptr_assumption_ind fixed bin ext; 5 145 dcl ptr_assumption_ind fixed bin defined (cobol_$ptr_assumption_ind); 5 146 dcl cobol_$reg_assumption_ind fixed bin ext; 5 147 dcl reg_assumption_ind fixed bin defined (cobol_$reg_assumption_ind); 5 148 dcl cobol_$perform_para_index fixed bin ext; 5 149 dcl perform_para_index fixed bin defined (cobol_$perform_para_index); 5 150 dcl cobol_$perform_sect_index fixed bin ext; 5 151 dcl perform_sect_index fixed bin defined (cobol_$perform_sect_index); 5 152 dcl cobol_$alter_index fixed bin ext; 5 153 dcl alter_index fixed bin defined (cobol_$alter_index); 5 154 dcl cobol_$list_off fixed bin ext; 5 155 dcl list_off fixed bin defined (cobol_$list_off); 5 156 dcl cobol_$constant_offset fixed bin ext; 5 157 dcl constant_offset fixed bin defined (cobol_$constant_offset); 5 158 dcl cobol_$misc_max fixed bin ext; 5 159 dcl misc_max fixed bin defined (cobol_$misc_max); 5 160 dcl cobol_$pd_map_max fixed bin ext; 5 161 dcl pd_map_max fixed bin defined (cobol_$pd_map_max); 5 162 dcl cobol_$map_data_max fixed bin ext; 5 163 dcl map_data_max fixed bin defined (cobol_$map_data_max); 5 164 dcl cobol_$fixup_max fixed bin ext; 5 165 dcl fixup_max fixed bin defined (cobol_$fixup_max); 5 166 dcl cobol_$tag_table_max fixed bin ext; 5 167 dcl tag_table_max fixed bin defined (cobol_$tag_table_max); 5 168 dcl cobol_$temp_token_max fixed bin ext; 5 169 dcl temp_token_max fixed bin defined (cobol_$temp_token_max); 5 170 dcl cobol_$allo1_max fixed bin ext; 5 171 dcl allo1_max fixed bin defined (cobol_$allo1_max); 5 172 dcl cobol_$eln_max fixed bin ext; 5 173 dcl eln_max fixed bin defined (cobol_$eln_max); 5 174 dcl cobol_$debug_enable fixed bin ext; 5 175 dcl debug_enable fixed bin defined (cobol_$debug_enable); 5 176 dcl cobol_$non_source_offset fixed bin ext; 5 177 dcl non_source_offset fixed bin defined (cobol_$non_source_offset); 5 178 dcl cobol_$initval_flag fixed bin ext; 5 179 dcl initval_flag fixed bin defined (cobol_$initval_flag); 5 180 dcl cobol_$date_compiled_sw fixed bin ext; 5 181 dcl date_compiled_sw fixed bin defined (cobol_$date_compiled_sw); 5 182 dcl cobol_$include_cnt fixed bin ext; 5 183 dcl include_cnt fixed bin defined (cobol_$include_cnt); 5 184 dcl cobol_$fs_charcnt fixed bin ext; 5 185 dcl fs_charcnt fixed bin defined (cobol_$fs_charcnt); 5 186 dcl cobol_$ws_charcnt fixed bin ext; 5 187 dcl ws_charcnt fixed bin defined (cobol_$ws_charcnt); 5 188 dcl cobol_$coms_charcnt fixed bin ext; 5 189 dcl coms_charcnt fixed bin defined (cobol_$coms_charcnt); 5 190 dcl cobol_$ls_charcnt fixed bin ext; 5 191 dcl ls_charcnt fixed bin defined (cobol_$ls_charcnt); 5 192 dcl cobol_$cons_charcnt fixed bin ext; 5 193 dcl cons_charcnt fixed bin defined (cobol_$cons_charcnt); 5 194 dcl cobol_$value_cnt fixed bin ext; 5 195 dcl value_cnt fixed bin defined (cobol_$value_cnt); 5 196 dcl cobol_$cd_cnt fixed bin ext; 5 197 dcl cd_cnt fixed bin defined (cobol_$cd_cnt); 5 198 dcl cobol_$fs_wdoff fixed bin ext; 5 199 dcl fs_wdoff fixed bin defined (cobol_$fs_wdoff); 5 200 dcl cobol_$ws_wdoff fixed bin ext; 5 201 dcl ws_wdoff fixed bin defined (cobol_$ws_wdoff); 5 202 dcl cobol_$coms_wdoff fixed bin ext; 5 203 dcl coms_wdoff fixed bin defined (cobol_$coms_wdoff); 5 204 5 205 /* CHARACTER */ 5 206 dcl cobol_$scratch_dir char (168) aligned ext; 5 207 dcl scratch_dir char (168) aligned defined (cobol_$scratch_dir); /* -42- */ 5 208 dcl cobol_$obj_seg_name char (32) aligned ext; 5 209 dcl obj_seg_name char (32) aligned defined (cobol_$obj_seg_name); /* -8- */ 5 210 5 211 /* BIT */ 5 212 dcl cobol_$xref_bypass bit(1) aligned ext; 5 213 dcl xref_bypass bit(1) aligned defined (cobol_$xref_bypass); /* -1- */ 5 214 dcl cobol_$same_sort_merge_proc bit(1) aligned ext; 5 215 dcl same_sort_merge_proc bit(1) aligned defined (cobol_$same_sort_merge_proc); /* -1- */ 5 216 5 217 5 218 /* END INCLUDE FILE ... cobol_incl.pl1*/ 5 219 5 220 164 6 1 6 2 /* BEGIN INCLUDE FILE ... cobol_ext_.incl.pl1 */ 6 3 /* Last modified on 06/17/76 by ORN */ 6 4 /* Last modified on 12/28/76 by FCH */ 6 5 /* Last modified on 12/01/80 by FCH */ 6 6 6 7 /* <<< SHARED EXTERNALS INCLUDE FILE >>> */ 6 8 6 9 6 10 dcl cobol_ext_$cobol_afp ptr ext; 6 11 dcl cobol_afp ptr defined ( cobol_ext_$cobol_afp); 6 12 dcl cobol_ext_$cobol_analin_fileno ptr ext; 6 13 dcl cobol_analin_fileno ptr defined ( cobol_ext_$cobol_analin_fileno); 6 14 dcl cobol_ext_$report_first_token ptr ext; 6 15 dcl report_first_token ptr defined( cobol_ext_$report_first_token); 6 16 dcl cobol_ext_$report_last_token ptr ext; 6 17 dcl report_last_token ptr defined ( cobol_ext_$report_last_token); 6 18 dcl cobol_ext_$cobol_eltp ptr ext; 6 19 dcl cobol_eltp ptr defined ( cobol_ext_$cobol_eltp); 6 20 dcl cobol_ext_$cobol_cmfp ptr ext; 6 21 dcl cobol_cmfp ptr defined ( cobol_ext_$cobol_cmfp); 6 22 dcl cobol_ext_$cobol_com_fileno ptr ext; 6 23 dcl cobol_com_fileno ptr defined ( cobol_ext_$cobol_com_fileno); 6 24 dcl cobol_ext_$cobol_com_ptr ptr ext; 6 25 dcl cobol_com_ptr ptr defined ( cobol_ext_$cobol_com_ptr); 6 26 dcl cobol_ext_$cobol_dfp ptr ext; 6 27 dcl cobol_dfp ptr defined ( cobol_ext_$cobol_dfp); 6 28 dcl cobol_ext_$cobol_hfp ptr ext; 6 29 dcl cobol_hfp ptr defined ( cobol_ext_$cobol_hfp); 6 30 dcl cobol_ext_$cobol_m1fp ptr ext; 6 31 dcl cobol_m1fp ptr defined ( cobol_ext_$cobol_m1fp); 6 32 dcl cobol_ext_$cobol_m2fp ptr ext; 6 33 dcl cobol_m2fp ptr defined ( cobol_ext_$cobol_m2fp); 6 34 dcl cobol_ext_$cobol_min1_fileno ptr ext; 6 35 dcl cobol_min1_fileno ptr defined ( cobol_ext_$cobol_min1_fileno); 6 36 dcl cobol_ext_$cobol_min2_fileno_ptr ptr ext; 6 37 dcl cobol_min2_fileno_ptr ptr defined ( cobol_ext_$cobol_min2_fileno_ptr); 6 38 dcl cobol_ext_$cobol_name_fileno ptr ext; 6 39 dcl cobol_name_fileno ptr defined ( cobol_ext_$cobol_name_fileno); 6 40 dcl cobol_ext_$cobol_name_fileno_ptr ptr ext; 6 41 dcl cobol_name_fileno_ptr ptr defined ( cobol_ext_$cobol_name_fileno_ptr); 6 42 dcl cobol_ext_$cobol_ntfp ptr ext; 6 43 dcl cobol_ntfp ptr defined ( cobol_ext_$cobol_ntfp); 6 44 dcl cobol_ext_$cobol_pdofp ptr ext; 6 45 dcl cobol_pdofp ptr defined ( cobol_ext_$cobol_pdofp); 6 46 dcl cobol_ext_$cobol_pfp ptr ext; 6 47 dcl cobol_pfp ptr defined ( cobol_ext_$cobol_pfp); 6 48 dcl cobol_ext_$cobol_rm2fp ptr ext; 6 49 dcl cobol_rm2fp ptr defined ( cobol_ext_$cobol_rm2fp); 6 50 dcl cobol_ext_$cobol_rmin2fp ptr ext; 6 51 dcl cobol_rmin2fp ptr defined ( cobol_ext_$cobol_rmin2fp); 6 52 dcl cobol_ext_$cobol_curr_in ptr ext; 6 53 dcl cobol_curr_in ptr defined ( cobol_ext_$cobol_curr_in); 6 54 dcl cobol_ext_$cobol_curr_out ptr ext; 6 55 dcl cobol_curr_out ptr defined ( cobol_ext_$cobol_curr_out); 6 56 dcl cobol_ext_$cobol_sfp ptr ext; 6 57 dcl cobol_sfp ptr defined ( cobol_ext_$cobol_sfp); 6 58 dcl cobol_ext_$cobol_w1p ptr ext; 6 59 dcl cobol_w1p ptr defined ( cobol_ext_$cobol_w1p); 6 60 dcl cobol_ext_$cobol_w2p ptr ext; 6 61 dcl cobol_w2p ptr defined ( cobol_ext_$cobol_w2p); 6 62 dcl cobol_ext_$cobol_w3p ptr ext; 6 63 dcl cobol_w3p ptr defined ( cobol_ext_$cobol_w3p); 6 64 dcl cobol_ext_$cobol_w5p ptr ext; 6 65 dcl cobol_w5p ptr defined ( cobol_ext_$cobol_w5p); 6 66 dcl cobol_ext_$cobol_w6p ptr ext; 6 67 dcl cobol_w6p ptr defined ( cobol_ext_$cobol_w6p); 6 68 dcl cobol_ext_$cobol_w7p ptr ext; 6 69 dcl cobol_w7p ptr defined ( cobol_ext_$cobol_w7p); 6 70 dcl cobol_ext_$cobol_x3fp ptr ext; 6 71 dcl cobol_x3fp ptr defined ( cobol_ext_$cobol_x3fp); 6 72 dcl cobol_ext_$cobol_rwdd ptr ext; 6 73 dcl cobol_rwdd ptr defined(cobol_ext_$cobol_rwdd); 6 74 dcl cobol_ext_$cobol_rwpd ptr ext; 6 75 dcl cobol_rwpd ptr defined(cobol_ext_$cobol_rwpd); 6 76 6 77 6 78 dcl cobol_ext_$cobol_fileno1 fixed bin(24)ext; 6 79 dcl cobol_fileno1 fixed bin(24)defined ( cobol_ext_$cobol_fileno1); 6 80 dcl cobol_ext_$cobol_options_len fixed bin(24)ext; 6 81 dcl cobol_options_len fixed bin(24)defined ( cobol_ext_$cobol_options_len); 6 82 dcl cobol_ext_$cobol_pdout_fileno fixed bin(24)ext; 6 83 dcl cobol_pdout_fileno fixed bin(24)defined ( cobol_ext_$cobol_pdout_fileno); 6 84 dcl cobol_ext_$cobol_print_fileno fixed bin(24)ext; 6 85 dcl cobol_print_fileno fixed bin(24)defined ( cobol_ext_$cobol_print_fileno); 6 86 dcl cobol_ext_$cobol_rmin2_fileno fixed bin(24)ext; 6 87 dcl cobol_rmin2_fileno fixed bin(24)defined ( cobol_ext_$cobol_rmin2_fileno); 6 88 dcl cobol_ext_$cobol_x1_fileno fixed bin(24)ext; 6 89 dcl cobol_x1_fileno fixed bin(24)defined ( cobol_ext_$cobol_x1_fileno); 6 90 dcl cobol_ext_$cobol_x2_fileno fixed bin(24)ext; 6 91 dcl cobol_x2_fileno fixed bin(24)defined ( cobol_ext_$cobol_x2_fileno); 6 92 dcl cobol_ext_$cobol_x3_fileno fixed bin(24)ext; 6 93 dcl cobol_x3_fileno fixed bin(24)defined ( cobol_ext_$cobol_x3_fileno); 6 94 6 95 dcl cobol_ext_$cobol_lpr char (5) ext; 6 96 dcl cobol_lpr char (5) defined ( cobol_ext_$cobol_lpr); /* -2- */ 6 97 dcl cobol_ext_$cobol_options char (120) ext; 6 98 dcl cobol_options char (120) defined ( cobol_ext_$cobol_options); /* -30- */ 6 99 6 100 dcl cobol_ext_$cobol_xlast8 bit (1) ext; 6 101 dcl cobol_xlast8 bit (1) defined ( cobol_ext_$cobol_xlast8); /* -1- */ 6 102 dcl cobol_ext_$report_exists bit (1) ext; 6 103 dcl report_exists bit (1) defined ( cobol_ext_$report_exists); 6 104 6 105 6 106 /* <<< END OF SHARED EXTERNALS INCLUDE FILE >>> */ 6 107 /* END INCLUDE FILE ... cobol_ext_.incl.pl1 */ 6 108 165 7 1 7 2 /* BEGIN INCLUDE FILE ... cobol_fixed_common.incl.pl1 */ 7 3 /* Modified on 10/27/82 by FCH, [5.1-1], cobol_cln added to save last line num, BUG543(phx13643) */ 7 4 /* Modified on 07/31/80 by FCH, [4.3-1], use_reporting field added for Report Writer */ 7 5 /* Modified on 03/30/79 by FCH, [4.1-1], -card option added */ 7 6 /* Modified on 03/30/79 by FCH, [4.0-2], -svNM option added */ 7 7 /* Modified on 03/02/79 by FCH, [4.0-1], -levNM option added */ 7 8 /* Modified by RAL on 10/13/78, [4.0-0], Added option exp from fil2. */ 7 9 /* Modified by BC on 06/20/77, descriptor added. */ 7 10 /* Modified by BC on 06/02/77, init_cd_seg, init_cd_offset added. */ 7 11 /* Modified by BC on 1/21/77, options.profile added. */ 7 12 /* Modified by FCH on 7/6/76, sysin_fno & sysout_fno deleted, accept_device & display_device added */ 7 13 /* Modified by FCH on 5/20/77, comp_level added */ 7 14 7 15 7 16 /* THE SIZE OF THIS STRUCTURE IN BYTES, (EXCLUDING VARIABLE 7 17* LENGTH ENTITIES), FOR EACH HARDWARE IMPLEMENTATION IS: 7 18* 7 19* HARDWARE | SIZE (BYTES) 7 20* --------------------------------- 7 21* 645/6180 | 464 7 22* P7 | 396 7 23* --------------------------------- 7 24* */ 7 25 7 26 dcl 1 fixed_common based ( cobol_com_ptr), 7 27 2 prog_name char (30), 7 28 2 compiler_rev_no char (25), 7 29 2 phase_name char (6), 7 30 2 currency char (1), 7 31 2 fatal_no fixed bin, 7 32 2 warn_no fixed bin, 7 33 2 proc_counter fixed bin, 7 34 2 spec_tag_counter fixed bin, 7 35 2 file_count fixed bin, 7 36 2 filedescr_offsets (20) char (5), 7 37 2 perf_alter_info char (5), 7 38 2 another_perform_info char (5), 7 39 2 sort_in_info char (5), 7 40 2 odo_info char (5), 7 41 2 size_seg fixed bin, 7 42 2 size_offset fixed bin(24), 7 43 2 size_perform_info char (5), 7 44 2 rename_info char (5), 7 45 2 report_names char (5), 7 46 2 rw_buf_seg fixed bin, 7 47 2 rw_buf_offset fixed bin(24), 7 48 2 rw_buf_length fixed bin(24), 7 49 2 file_keys char (5), 7 50 2 search_keys char (5), 7 51 2 dd_seg_size fixed bin(24), 7 52 2 pd_seg_size fixed bin(24), 7 53 2 seg_limit fixed bin , 7 54 2 number_of_dd_segs fixed bin, 7 55 2 seg_info char (5), 7 56 2 number_of_ls_pointers fixed bin, 7 57 2 link_sec_seg fixed bin, 7 58 2 link_sec_offset fixed bin(24), 7 59 2 sra_clauses fixed bin, 7 60 2 fix_up_info char (5), 7 61 2 linage_info char (5), 7 62 2 first_dd_item char (5), 7 63 2 sort_out_info char (5), 7 64 2 db_info char (5), 7 65 2 realm_info char (5), 7 66 2 rc_realm_info char (5), 7 67 2 last_file_key char (5), 7 68 2 prog_coll_seq fixed bin, 7 69 2 init_cd_seg fixed bin, 7 70 2 init_cd_offset fixed bin(24), 7 71 2 input_error_exit fixed bin, 7 72 2 output_error_exit fixed bin, 7 73 2 i_o_error_exit fixed bin, 7 74 2 extend_error_exit fixed bin, 7 75 2 dummy15 fixed bin, 7 76 2 options, 7 77 3 cu bit (1), 7 78 3 st bit (1), 7 79 3 wn bit (1), 7 80 3 obs bit (1), 7 81 3 dm bit (1), 7 82 3 xrl bit (1), 7 83 3 xrn bit (1), 7 84 3 src bit (1), 7 85 3 obj bit (1), 7 86 3 exs bit (1), 7 87 3 sck bit (1), 7 88 3 rno bit (1), 7 89 3 u_l bit (1), 7 90 3 cnv bit (1), 7 91 3 cos bit (1), 7 92 3 fmt bit (1), 7 93 3 profile bit(1), 7 94 3 nw bit (1), 7 95 3 exp bit (1), /* [4.0-0] */ 7 96 3 card bit (1), /*[4.1-1]*/ 7 97 3 fil2 bit (5), 7 98 3 m_map bit (1), 7 99 3 m_bf bit (1), 7 100 3 m_fat bit (1), 7 101 3 m_wn bit (1), 7 102 3 m_obs bit(1), 7 103 3 pd bit(1), 7 104 3 oc bit(1), 7 105 2 supervisor bit (1), 7 106 2 dec_comma bit (1), 7 107 2 init_cd bit (1), 7 108 2 corr bit (1), 7 109 2 initl bit (1), 7 110 2 debug bit (1), 7 111 2 report bit (1), 7 112 2 sync_in_prog bit (1), 7 113 2 pd_section bit (1), 7 114 2 list_switch bit (1), 7 115 2 alpha_cond bit (1), 7 116 2 num_cond bit (1), 7 117 2 spec_sysin bit (1), 7 118 2 spec_sysout bit (1), 7 119 2 cpl_files bit (1), 7 120 2 obj_dec_comma bit (1), 7 121 2 default_sign_type bit (3), 7 122 2 use_debug bit(1), 7 123 2 syntax_trace bit(1), 7 124 2 comp_defaults, 7 125 3 comp bit(1), 7 126 3 comp_1 bit(1), 7 127 3 comp_2 bit(1), 7 128 3 comp_3 bit(1), 7 129 3 comp_4 bit(1), 7 130 3 comp_5 bit(1), 7 131 3 comp_6 bit(1), 7 132 3 comp_7 bit(1), 7 133 3 comp_8 bit(1), 7 134 2 disp_defaults, 7 135 3 disp bit(1), 7 136 3 disp_1 bit(1), 7 137 3 disp_2 bit(1), 7 138 3 disp_3 bit(1), 7 139 3 disp_4 bit(1), 7 140 3 disp_5 bit(1), 7 141 3 disp_6 bit(1), 7 142 3 disp_7 bit(1), 7 143 2 descriptor bit(2), 7 144 2 levsv bit(3), /*[4.0-1]*/ 7 145 2 use_reporting bit(1), /*[4.3-1]*/ 7 146 2 cd bit(1), /*[4.4-1]*/ 7 147 2 dummy17 bit(3), 7 148 2 lvl_rstr bit(32), 7 149 2 inst_rstr bit(32), 7 150 2 comp_level char(1), 7 151 2 dummy18 char(30), 7 152 2 object_sign char (1), 7 153 2 last_print_rec char (5), 7 154 2 coll_seq_info char (5), 7 155 2 sys_status_seg fixed bin, 7 156 2 sys_status_offset fixed bin(24), 7 157 2 compiler_id fixed bin, 7 158 2 date_comp_ln fixed bin, 7 159 2 compile_mode bit(36), 7 160 2 default_temp fixed bin, 7 161 2 accept_device fixed bin, 7 162 2 display_device fixed bin, 7 163 2 cobol_cln fixed bin, /*[5.1-1]*/ 7 164 2 alphabet_offset fixed bin; 7 165 7 166 7 167 7 168 /* END INCLUDE FILE ... cobol_fixed_common.incl.pl1 */ 7 169 166 167 168 end cobol_c_list; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 05/24/89 0833.1 cobol_c_list.pl1 >spec>install>MR12.3-1048>cobol_c_list.pl1 161 1 03/27/82 0439.7 cobol_error_info.incl.pl1 >ldd>include>cobol_error_info.incl.pl1 162 2 03/27/82 0439.7 cobol_diag_file.incl.pl1 >ldd>include>cobol_diag_file.incl.pl1 163 3 03/27/82 0439.8 cobol_type5.incl.pl1 >ldd>include>cobol_type5.incl.pl1 3-16 4 03/27/82 0439.6 cobol_TYPE5.incl.pl1 >ldd>include>cobol_TYPE5.incl.pl1 164 5 11/11/82 1712.7 cobol_.incl.pl1 >ldd>include>cobol_.incl.pl1 165 6 03/27/82 0431.3 cobol_ext_.incl.pl1 >ldd>include>cobol_ext_.incl.pl1 166 7 11/11/82 1712.8 cobol_fixed_common.incl.pl1 >ldd>include>cobol_fixed_common.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. base 3 based fixed bin(17,0) array level 3 dcl 2-9 ref 88 cobol_$diag_ptr 000124 external static pointer dcl 5-70 ref 88 91 110 111 111 112 112 cobol_com_ptr defined pointer dcl 6-25 ref 75 75 75 93 104 104 cobol_ext_$cobol_com_ptr 000126 external static pointer dcl 6-24 ref 75 75 75 75 75 75 93 93 104 104 104 104 cobol_ext_$cobol_dfp 000130 external static pointer dcl 6-26 set ref 73* 100* 118* 142* 144* 152* cobol_swf_put 000122 constant entry external dcl 55 ref 73 100 118 142 144 152 column 2 based fixed bin(17,0) level 2 in structure "message" dcl 3-15 in procedure "cobol_c_list" ref 133 column 2 000010 internal static fixed bin(17,0) level 2 in structure "last_message" dcl 35 in procedure "cobol_c_list" set ref 133 comp_level 137 based char(1) level 2 packed packed unaligned dcl 7-26 ref 93 d_len 32 based fixed bin(17,0) array level 3 dcl 2-9 set ref 110 112 d_start 31 based fixed bin(17,0) array level 3 dcl 2-9 set ref 112 d_t_size 1 based fixed bin(17,0) level 2 dcl 2-9 ref 111 d_type 33 based fixed bin(17,0) array level 3 dcl 2-9 set ref 91 diag_file based structure level 1 unaligned dcl 2-9 diag_table 31 based structure array level 2 unaligned dcl 2-9 set ref 111 diag_text based char(100000) packed unaligned dcl 33 ref 112 diag_text_ptr 000102 automatic pointer dcl 32 set ref 111* 112 error_info 000105 automatic structure level 1 unaligned dcl 1-5 set ref 119 119 fatal_no 20 based fixed bin(17,0) level 2 dcl 7-26 set ref 75* 75 104* 104 fixed_common based structure level 1 unaligned dcl 7-26 i 000100 automatic fixed bin(17,0) dcl 31 set ref 88* 91 110 112 112 image_size 7 based fixed bin(17,0) level 2 dcl 3-15 ref 127 last_message 000010 internal static structure level 1 unaligned dcl 35 set ref 127* 142 142 levsv 135 based bit(3) level 2 packed packed unaligned dcl 7-26 ref 75 line 1 000010 internal static fixed bin(17,0) level 2 in structure "last_message" dcl 35 in procedure "cobol_c_list" set ref 133 line 1 based fixed bin(17,0) level 2 in structure "message" dcl 3-15 in procedure "cobol_c_list" ref 133 message 11 000105 automatic char(128) level 2 in structure "error_info" packed packed unaligned dcl 1-5 in procedure "cobol_c_list" set ref 112* message based structure level 1 unaligned dcl 3-15 in procedure "cobol_c_list" set ref 127 message_len 10 000105 automatic fixed bin(17,0) level 2 dcl 1-5 set ref 110* message_ptr parameter pointer dcl 3-12 set ref 28 60 60 71 73* 73 88 88 100* 100 109 113 114 118* 118 127 127 127 127 127 127 127 127 127 127 127 133 133 133 133 133 133 133 133 133 133 133 133 144* 144 152* 152 name 000105 automatic char(32) level 2 packed packed unaligned dcl 1-5 set ref 109* number 5 based fixed bin(17,0) level 2 dcl 3-15 set ref 88 114* 127 127 127 127 127 133 133 133 133 133 phase_con 000000 constant char(13) initial array packed unaligned dcl 47 ref 109 run 4 based fixed bin(17,0) level 2 in structure "message" dcl 3-15 in procedure "cobol_c_list" set ref 71 88 109 113* 127 127 127 127 127 133 133 133 133 133 run 4 000010 internal static fixed bin(17,0) initial level 2 in structure "last_message" dcl 35 in procedure "cobol_c_list" set ref 133 147* run_table 3 based structure array level 2 unaligned dcl 2-9 signal_ 000120 constant entry external dcl 54 ref 119 size based fixed bin(17,0) level 2 in structure "message" dcl 3-15 in procedure "cobol_c_list" set ref 73* 100* 118* 144* 152* size 000010 internal static fixed bin(17,0) level 2 in structure "last_message" dcl 35 in procedure "cobol_c_list" set ref 142* st 000104 automatic bit(32) packed unaligned dcl 56 set ref 73* 100* 118* 142* 144* 152* sv 000101 automatic fixed bin(17,0) dcl 31 set ref 91* 93 93 97 102 106 type 3 based fixed bin(17,0) level 2 dcl 3-15 ref 60 NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. allo1_max defined fixed bin(17,0) dcl 5-171 allo1_ptr defined pointer dcl 5-67 alter_flag defined fixed bin(17,0) dcl 5-135 alter_index defined fixed bin(17,0) dcl 5-153 alter_list_ptr defined pointer dcl 5-39 cd_cnt defined fixed bin(17,0) dcl 5-197 cobol_$allo1_max external static fixed bin(17,0) dcl 5-170 cobol_$allo1_ptr external static pointer dcl 5-66 cobol_$alter_flag external static fixed bin(17,0) dcl 5-134 cobol_$alter_index external static fixed bin(17,0) dcl 5-152 cobol_$alter_list_ptr external static pointer dcl 5-38 cobol_$cd_cnt external static fixed bin(17,0) dcl 5-196 cobol_$cobol_data_wd_off external static fixed bin(17,0) dcl 5-118 cobol_$compile_count external static fixed bin(17,0) dcl 5-142 cobol_$coms_charcnt external static fixed bin(17,0) dcl 5-188 cobol_$coms_wdoff external static fixed bin(17,0) dcl 5-202 cobol_$con_end_ptr external static pointer dcl 5-10 cobol_$con_wd_off external static fixed bin(17,0) dcl 5-92 cobol_$cons_charcnt external static fixed bin(17,0) dcl 5-192 cobol_$constant_offset external static fixed bin(17,0) dcl 5-156 cobol_$data_init_flag external static fixed bin(17,0) dcl 5-130 cobol_$date_compiled_sw external static fixed bin(17,0) dcl 5-180 cobol_$debug_enable external static fixed bin(17,0) dcl 5-174 cobol_$def_base_ptr external static pointer dcl 5-12 cobol_$def_max external static fixed bin(17,0) dcl 5-96 cobol_$def_wd_off external static fixed bin(17,0) dcl 5-94 cobol_$eln_max external static fixed bin(17,0) dcl 5-172 cobol_$eln_ptr external static pointer dcl 5-68 cobol_$fixup_max external static fixed bin(17,0) dcl 5-164 cobol_$fixup_ptr external static pointer dcl 5-30 cobol_$fs_charcnt external static fixed bin(17,0) dcl 5-184 cobol_$fs_wdoff external static fixed bin(17,0) dcl 5-198 cobol_$include_cnt external static fixed bin(17,0) dcl 5-182 cobol_$include_info_ptr external static pointer dcl 5-86 cobol_$init_stack_off external static fixed bin(17,0) dcl 5-124 cobol_$initval_base_ptr external static pointer dcl 5-32 cobol_$initval_file_ptr external static pointer dcl 5-34 cobol_$initval_flag external static fixed bin(17,0) dcl 5-178 cobol_$link_base_ptr external static pointer dcl 5-14 cobol_$link_max external static fixed bin(17,0) dcl 5-100 cobol_$link_wd_off external static fixed bin(17,0) dcl 5-98 cobol_$list_off external static fixed bin(17,0) dcl 5-154 cobol_$list_ptr external static pointer dcl 5-64 cobol_$ls_charcnt external static fixed bin(17,0) dcl 5-190 cobol_$main_pcs_ptr external static pointer dcl 5-84 cobol_$map_data_max external static fixed bin(17,0) dcl 5-162 cobol_$map_data_ptr external static pointer dcl 5-54 cobol_$max_stack_off external static fixed bin(17,0) dcl 5-122 cobol_$minpral5_ptr external static pointer dcl 5-50 cobol_$misc_base_ptr external static pointer dcl 5-60 cobol_$misc_end_ptr external static pointer dcl 5-62 cobol_$misc_max external static fixed bin(17,0) dcl 5-158 cobol_$next_tag external static fixed bin(17,0) dcl 5-128 cobol_$non_source_offset external static fixed bin(17,0) dcl 5-176 cobol_$ntbuf_ptr external static pointer dcl 5-82 cobol_$obj_seg_name external static char(32) dcl 5-208 cobol_$op_con_ptr external static pointer dcl 5-80 cobol_$para_eop_flag external static fixed bin(17,0) dcl 5-138 cobol_$pd_map_index external static fixed bin(17,0) dcl 5-116 cobol_$pd_map_max external static fixed bin(17,0) dcl 5-160 cobol_$pd_map_ptr external static pointer dcl 5-28 cobol_$pd_map_sw external static fixed bin(17,0) dcl 5-126 cobol_$perform_list_ptr external static pointer dcl 5-36 cobol_$perform_para_index external static fixed bin(17,0) dcl 5-148 cobol_$perform_sect_index external static fixed bin(17,0) dcl 5-150 cobol_$priority_no external static fixed bin(17,0) dcl 5-140 cobol_$ptr_assumption_ind external static fixed bin(17,0) dcl 5-144 cobol_$ptr_status_ptr external static pointer dcl 5-56 cobol_$reg_assumption_ind external static fixed bin(17,0) dcl 5-146 cobol_$reg_status_ptr external static pointer dcl 5-58 cobol_$reloc_def_base_ptr external static pointer dcl 5-20 cobol_$reloc_def_max external static fixed bin(24,0) dcl 5-108 cobol_$reloc_link_base_ptr external static pointer dcl 5-22 cobol_$reloc_link_max external static fixed bin(24,0) dcl 5-110 cobol_$reloc_sym_base_ptr external static pointer dcl 5-24 cobol_$reloc_sym_max external static fixed bin(24,0) dcl 5-112 cobol_$reloc_text_base_ptr external static pointer dcl 5-18 cobol_$reloc_text_max external static fixed bin(24,0) dcl 5-106 cobol_$reloc_work_base_ptr external static pointer dcl 5-26 cobol_$reloc_work_max external static fixed bin(24,0) dcl 5-114 cobol_$reswd_ptr external static pointer dcl 5-78 cobol_$same_sort_merge_proc external static bit(1) dcl 5-214 cobol_$scratch_dir external static char(168) dcl 5-206 cobol_$sect_eop_flag external static fixed bin(17,0) dcl 5-136 cobol_$seg_init_flag external static fixed bin(17,0) dcl 5-132 cobol_$seg_init_list_ptr external static pointer dcl 5-40 cobol_$stack_off external static fixed bin(17,0) dcl 5-120 cobol_$statement_info_ptr external static pointer dcl 5-76 cobol_$sym_base_ptr external static pointer dcl 5-16 cobol_$sym_max external static fixed bin(17,0) dcl 5-104 cobol_$sym_wd_off external static fixed bin(17,0) dcl 5-102 cobol_$tag_table_max external static fixed bin(17,0) dcl 5-166 cobol_$tag_table_ptr external static pointer dcl 5-52 cobol_$temp_token_area_ptr external static pointer dcl 5-42 cobol_$temp_token_max external static fixed bin(17,0) dcl 5-168 cobol_$temp_token_ptr external static pointer dcl 5-44 cobol_$text_base_ptr external static pointer dcl 5-8 cobol_$text_wd_off external static fixed bin(17,0) dcl 5-90 cobol_$token_block1_ptr external static pointer dcl 5-46 cobol_$token_block2_ptr external static pointer dcl 5-48 cobol_$value_cnt external static fixed bin(17,0) dcl 5-194 cobol_$ws_charcnt external static fixed bin(17,0) dcl 5-186 cobol_$ws_wdoff external static fixed bin(17,0) dcl 5-200 cobol_$xref_bypass external static bit(1) dcl 5-212 cobol_$xref_chain_ptr external static pointer dcl 5-74 cobol_$xref_token_ptr external static pointer dcl 5-72 cobol_afp defined pointer dcl 6-11 cobol_analin_fileno defined pointer dcl 6-13 cobol_cmfp defined pointer dcl 6-21 cobol_com_fileno defined pointer dcl 6-23 cobol_curr_in defined pointer dcl 6-53 cobol_curr_out defined pointer dcl 6-55 cobol_data_wd_off defined fixed bin(17,0) dcl 5-119 cobol_dfp defined pointer dcl 6-27 cobol_eltp defined pointer dcl 6-19 cobol_ext_$cobol_afp external static pointer dcl 6-10 cobol_ext_$cobol_analin_fileno external static pointer dcl 6-12 cobol_ext_$cobol_cmfp external static pointer dcl 6-20 cobol_ext_$cobol_com_fileno external static pointer dcl 6-22 cobol_ext_$cobol_curr_in external static pointer dcl 6-52 cobol_ext_$cobol_curr_out external static pointer dcl 6-54 cobol_ext_$cobol_eltp external static pointer dcl 6-18 cobol_ext_$cobol_fileno1 external static fixed bin(24,0) dcl 6-78 cobol_ext_$cobol_hfp external static pointer dcl 6-28 cobol_ext_$cobol_lpr external static char(5) packed unaligned dcl 6-95 cobol_ext_$cobol_m1fp external static pointer dcl 6-30 cobol_ext_$cobol_m2fp external static pointer dcl 6-32 cobol_ext_$cobol_min1_fileno external static pointer dcl 6-34 cobol_ext_$cobol_min2_fileno_ptr external static pointer dcl 6-36 cobol_ext_$cobol_name_fileno external static pointer dcl 6-38 cobol_ext_$cobol_name_fileno_ptr external static pointer dcl 6-40 cobol_ext_$cobol_ntfp external static pointer dcl 6-42 cobol_ext_$cobol_options external static char(120) packed unaligned dcl 6-97 cobol_ext_$cobol_options_len external static fixed bin(24,0) dcl 6-80 cobol_ext_$cobol_pdofp external static pointer dcl 6-44 cobol_ext_$cobol_pdout_fileno external static fixed bin(24,0) dcl 6-82 cobol_ext_$cobol_pfp external static pointer dcl 6-46 cobol_ext_$cobol_print_fileno external static fixed bin(24,0) dcl 6-84 cobol_ext_$cobol_rm2fp external static pointer dcl 6-48 cobol_ext_$cobol_rmin2_fileno external static fixed bin(24,0) dcl 6-86 cobol_ext_$cobol_rmin2fp external static pointer dcl 6-50 cobol_ext_$cobol_rwdd external static pointer dcl 6-72 cobol_ext_$cobol_rwpd external static pointer dcl 6-74 cobol_ext_$cobol_sfp external static pointer dcl 6-56 cobol_ext_$cobol_w1p external static pointer dcl 6-58 cobol_ext_$cobol_w2p external static pointer dcl 6-60 cobol_ext_$cobol_w3p external static pointer dcl 6-62 cobol_ext_$cobol_w5p external static pointer dcl 6-64 cobol_ext_$cobol_w6p external static pointer dcl 6-66 cobol_ext_$cobol_w7p external static pointer dcl 6-68 cobol_ext_$cobol_x1_fileno external static fixed bin(24,0) dcl 6-88 cobol_ext_$cobol_x2_fileno external static fixed bin(24,0) dcl 6-90 cobol_ext_$cobol_x3_fileno external static fixed bin(24,0) dcl 6-92 cobol_ext_$cobol_x3fp external static pointer dcl 6-70 cobol_ext_$cobol_xlast8 external static bit(1) packed unaligned dcl 6-100 cobol_ext_$report_exists external static bit(1) packed unaligned dcl 6-102 cobol_ext_$report_first_token external static pointer dcl 6-14 cobol_ext_$report_last_token external static pointer dcl 6-16 cobol_fileno1 defined fixed bin(24,0) dcl 6-79 cobol_hfp defined pointer dcl 6-29 cobol_lpr defined char(5) packed unaligned dcl 6-96 cobol_m1fp defined pointer dcl 6-31 cobol_m2fp defined pointer dcl 6-33 cobol_min1_fileno defined pointer dcl 6-35 cobol_min2_fileno_ptr defined pointer dcl 6-37 cobol_name_fileno defined pointer dcl 6-39 cobol_name_fileno_ptr defined pointer dcl 6-41 cobol_ntfp defined pointer dcl 6-43 cobol_options defined char(120) packed unaligned dcl 6-98 cobol_options_len defined fixed bin(24,0) dcl 6-81 cobol_pdofp defined pointer dcl 6-45 cobol_pdout_fileno defined fixed bin(24,0) dcl 6-83 cobol_pfp defined pointer dcl 6-47 cobol_print_fileno defined fixed bin(24,0) dcl 6-85 cobol_rm2fp defined pointer dcl 6-49 cobol_rmin2_fileno defined fixed bin(24,0) dcl 6-87 cobol_rmin2fp defined pointer dcl 6-51 cobol_rwdd defined pointer dcl 6-73 cobol_rwpd defined pointer dcl 6-75 cobol_sfp defined pointer dcl 6-57 cobol_w1p defined pointer dcl 6-59 cobol_w2p defined pointer dcl 6-61 cobol_w3p defined pointer dcl 6-63 cobol_w5p defined pointer dcl 6-65 cobol_w6p defined pointer dcl 6-67 cobol_w7p defined pointer dcl 6-69 cobol_x1_fileno defined fixed bin(24,0) dcl 6-89 cobol_x2_fileno defined fixed bin(24,0) dcl 6-91 cobol_x3_fileno defined fixed bin(24,0) dcl 6-93 cobol_x3fp defined pointer dcl 6-71 cobol_xlast8 defined bit(1) packed unaligned dcl 6-101 compile_count defined fixed bin(17,0) dcl 5-143 coms_charcnt defined fixed bin(17,0) dcl 5-189 coms_wdoff defined fixed bin(17,0) dcl 5-203 con_end_ptr defined pointer dcl 5-11 con_wd_off defined fixed bin(17,0) dcl 5-93 cons_charcnt defined fixed bin(17,0) dcl 5-193 constant_offset defined fixed bin(17,0) dcl 5-157 data_init_flag defined fixed bin(17,0) dcl 5-131 date_compiled_sw defined fixed bin(17,0) dcl 5-181 debug_enable defined fixed bin(17,0) dcl 5-175 def_base_ptr defined pointer dcl 5-13 def_max defined fixed bin(17,0) dcl 5-97 def_wd_off defined fixed bin(17,0) dcl 5-95 diag_ptr defined pointer dcl 5-71 eln_max defined fixed bin(17,0) dcl 5-173 eln_ptr defined pointer dcl 5-69 fixup_max defined fixed bin(17,0) dcl 5-165 fixup_ptr defined pointer dcl 5-31 fs_charcnt defined fixed bin(17,0) dcl 5-185 fs_wdoff defined fixed bin(17,0) dcl 5-199 include_cnt defined fixed bin(17,0) dcl 5-183 include_info_ptr defined pointer dcl 5-87 init_stack_off defined fixed bin(17,0) dcl 5-125 initval_base_ptr defined pointer dcl 5-33 initval_file_ptr defined pointer dcl 5-35 initval_flag defined fixed bin(17,0) dcl 5-179 link_base_ptr defined pointer dcl 5-15 link_max defined fixed bin(17,0) dcl 5-101 link_wd_off defined fixed bin(17,0) dcl 5-99 list_off defined fixed bin(17,0) dcl 5-155 list_ptr defined pointer dcl 5-65 ls_charcnt defined fixed bin(17,0) dcl 5-191 main_pcs_ptr defined pointer dcl 5-85 map_data_max defined fixed bin(17,0) dcl 5-163 map_data_ptr defined pointer dcl 5-55 max_stack_off defined fixed bin(17,0) dcl 5-123 minpral5_ptr defined pointer dcl 5-51 misc_base_ptr defined pointer dcl 5-61 misc_end_ptr defined pointer dcl 5-63 misc_max defined fixed bin(17,0) dcl 5-159 next_tag defined fixed bin(17,0) dcl 5-129 non_source_offset defined fixed bin(17,0) dcl 5-177 ntbuf_ptr defined pointer dcl 5-83 obj_seg_name defined char(32) dcl 5-209 op_con_ptr defined pointer dcl 5-81 para_eop_flag defined fixed bin(17,0) dcl 5-139 pd_map_index defined fixed bin(17,0) dcl 5-117 pd_map_max defined fixed bin(17,0) dcl 5-161 pd_map_ptr defined pointer dcl 5-29 pd_map_sw defined fixed bin(17,0) dcl 5-127 perform_list_ptr defined pointer dcl 5-37 perform_para_index defined fixed bin(17,0) dcl 5-149 perform_sect_index defined fixed bin(17,0) dcl 5-151 priority_no defined fixed bin(17,0) dcl 5-141 ptr_assumption_ind defined fixed bin(17,0) dcl 5-145 ptr_status_ptr defined pointer dcl 5-57 reg_assumption_ind defined fixed bin(17,0) dcl 5-147 reg_status_ptr defined pointer dcl 5-59 reloc_def_base_ptr defined pointer dcl 5-21 reloc_def_max defined fixed bin(24,0) dcl 5-109 reloc_link_base_ptr defined pointer dcl 5-23 reloc_link_max defined fixed bin(24,0) dcl 5-111 reloc_sym_base_ptr defined pointer dcl 5-25 reloc_sym_max defined fixed bin(24,0) dcl 5-113 reloc_text_base_ptr defined pointer dcl 5-19 reloc_text_max defined fixed bin(24,0) dcl 5-107 reloc_work_base_ptr defined pointer dcl 5-27 reloc_work_max defined fixed bin(24,0) dcl 5-115 report_exists defined bit(1) packed unaligned dcl 6-103 report_first_token defined pointer dcl 6-15 report_last_token defined pointer dcl 6-17 reswd_ptr defined pointer dcl 5-79 same_sort_merge_proc defined bit(1) dcl 5-215 scratch_dir defined char(168) dcl 5-207 sect_eop_flag defined fixed bin(17,0) dcl 5-137 seg_init_flag defined fixed bin(17,0) dcl 5-133 seg_init_list_ptr defined pointer dcl 5-41 stack_off defined fixed bin(17,0) dcl 5-121 statement_info_ptr defined pointer dcl 5-77 sym_base_ptr defined pointer dcl 5-17 sym_max defined fixed bin(17,0) dcl 5-105 sym_wd_off defined fixed bin(17,0) dcl 5-103 tag_table_max defined fixed bin(17,0) dcl 5-167 tag_table_ptr defined pointer dcl 5-53 temp_token_area_ptr defined pointer dcl 5-43 temp_token_max defined fixed bin(17,0) dcl 5-169 temp_token_ptr defined pointer dcl 5-45 text_base_ptr defined pointer dcl 5-9 text_wd_off defined fixed bin(17,0) dcl 5-91 token_block1_ptr defined pointer dcl 5-47 token_block2_ptr defined pointer dcl 5-49 value_cnt defined fixed bin(17,0) dcl 5-195 ws_charcnt defined fixed bin(17,0) dcl 5-187 ws_wdoff defined fixed bin(17,0) dcl 5-201 xref_bypass defined bit(1) dcl 5-213 xref_chain_ptr defined pointer dcl 5-75 xref_token_ptr defined pointer dcl 5-73 NAME DECLARED BY EXPLICIT CONTEXT. cobol_c_list 000055 constant entry external dcl 28 NAMES DECLARED BY CONTEXT OR IMPLICATION. addr builtin function ref 111 119 119 142 142 null builtin function ref 60 119 119 substr builtin function ref 75 112 STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 610 742 516 620 Length 1262 516 132 303 71 110 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME cobol_c_list 143 external procedure is an external procedure. STORAGE FOR INTERNAL STATIC VARIABLES. LOC IDENTIFIER BLOCK NAME 000010 last_message cobol_c_list STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME cobol_c_list 000100 i cobol_c_list 000101 sv cobol_c_list 000102 diag_text_ptr cobol_c_list 000104 st cobol_c_list 000105 error_info cobol_c_list THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. r_e_as call_ext_out_desc call_ext_out return_mac ext_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. cobol_swf_put signal_ THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. cobol_$diag_ptr cobol_ext_$cobol_com_ptr cobol_ext_$cobol_dfp LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 28 000052 60 000062 71 000074 73 000077 75 000113 85 000122 88 000123 91 000131 93 000135 97 000150 100 000153 102 000167 104 000172 105 000176 106 000177 109 000201 110 000211 111 000217 112 000223 113 000230 114 000232 118 000234 119 000250 123 000300 127 000301 133 000400 142 000441 144 000457 147 000476 150 000500 152 000501 168 000515 ----------------------------------------------------------- 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