COMPILATION LISTING OF SEGMENT cobol_lex Compiled by: Multics PL/I Compiler, Release 33e, of October 6, 1992 Compiled at: CGI Compiled on: 2000-04-18_1138.32_Tue_mdt 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_lex.pl1 Reformatted code to new Cobol standard. 19* END HISTORY COMMENTS */ 20 21 22 /* Modified on 10/27/82 by FCH, [5.2-1] ,save last line num, BUG543(phx13643) */ 23 /* Modified on 12/21/81 by FCH, [5.1-1], issue diag if long line found, phx11819(BUG517) */ 24 /* Modified on 10/15/80 by PRP, [4.4-1], report writer */ 25 /* Modified on 05/02/79 by FCH, [4.0-2], debug statement */ 26 /* Modified on 03/29/79 by FCH, [4.0-1], detect dupl data names */ 27 /* Modified since Version 4.0 */ 28 29 30 /* format: style3 */ 31 cobol_lex: 32 proc; 33 34 /* This run initializes all global data and contains the main loop of lex. */ 35 36 /* reserved_word */ 37 38 dcl 1 reserved_word based (cobol_current), 39 2 fwd_link pointer, 40 2 back_link pointer, 41 2 rep_link pointer, 42 2 l_info bit (8), 43 2 size fixed bin, 44 2 line fixed bin, 45 2 column fixed bin, 46 2 type fixed bin, /* = 1 */ 47 2 key fixed bin, 48 2 class bit (26), 49 2 jump_index fixed bin; 50 51 52 /* global pointers for the token table */ 53 54 dcl phoney fixed bin; /* phoney end of list */ 55 dcl cobol_merge entry external; 56 dcl cobol_report_writer entry external; 57 dcl cobol_gns entry external; 58 dcl cobol_res_words entry external; /* dcl cobol_check_rep entry external; */ 59 dcl cobol_output_tokens entry external; 60 dcl cobol_swf_put entry (ptr, bit (32), ptr, fixed bin) ext; 61 dcl st bit (32); 62 dcl elt_buf char (440); 63 declare (addr, null, substr, unspec) 64 builtin; 65 66 /* [4.0-1] */ 67 dcl cobol_gns$init_tok_string 68 entry; /*[4.0-2]*/ 69 dcl cobol_io_$initialize 70 entry; /*[4.0-2]*/ 71 dcl cobol_output_tokens$initialize 72 entry; /*[4.0-2]*/ 73 dcl cobol_res_words$initialize 74 entry; /*[4.0-2]*/ 75 dcl cobol_gns$initialize 76 entry; /*[4.0-2]*/ 77 dcl cobol_merge$initialize 78 entry; /*[4.4-1]*/ 79 declare cobol_db_phase$initialize 80 entry; 81 dcl rw entry (ptr, ptr); 82 83 84 85 86 87 88 89 90 cobol_$date_compiled_sw = 0; 91 cobol_mfp = cobol_m1fp; 92 cobol_prime_sw = "1"b; 93 cobol_stack_sw = "0"b; 94 cobol_continuation = "1"b; 95 cobol_copy_found = "0"b; 96 cobol_copy_active = "0"b; 97 cobol_debug_mode = "0"b; 98 cobol_rwt_init_sw = "1"b; 99 cobol_elnp_sw = "1"b; 100 cobol_lu_sw = "1"b; 101 cobol_scanoff_sw = "0"b; 102 cobol_output_sw = "0"b; 103 cobol_rep_sw = "0"b; 104 105 cobol_init_ta_sw = "1"b; 106 cobol_lex_exit = l_e1; 107 cobol_pic_switch = "0"b; 108 cobol_allo_init_sw = "1"b; 109 cobol_endprog_sw = "0"b; 110 cobol_progid_sw = "0"b; 111 cobol_elt_idx = 1; 112 cobol_elt_buf_ptr = addr (elt_buf); 113 cobol_c_l_n = 0; 114 cobol_dp_sw = "0"b; /* indicates no decimal-point clause yet */ 115 cobol_decimal_point_character = "."; 116 cobol_comma_character = ","; 117 cobol_si_key = "00000"; 118 cobol_so_key = "00000"; 119 cobol_name_number = 1; 120 cobol_section_number = 1; 121 unspec (cobol_new_line_character) = "000001010"b; 122 123 do phoney = 1 to 5; 124 cobol_head_words (phoney) = "0"b; 125 end; 126 127 do phoney = 1 to 2; 128 cobol_rec1_sw (phoney) = "0"b; 129 cobol_ln_sw (phoney) = "0"b; 130 end; 131 132 /* [4.0-1] */ 133 call cobol_gns$init_tok_string; /*[4.0-2]*/ 134 call cobol_io_$initialize; /*[4.0-2]*/ 135 call cobol_output_tokens$initialize; /*[4.0-2]*/ 136 call cobol_gns$initialize; /*[4.0-2]*/ 137 call cobol_merge$initialize; /*[4.4-1]*/ 138 call cobol_db_phase$initialize; 139 140 /*[4.0-2]*/ 141 call cobol_res_words$initialize; 142 143 cobol_ta_ptr = addr (cobol_tarea); 144 cobol_current = cobol_ta_ptr; 145 reserved_word.fwd_link = null (); 146 reserved_word.back_link = null (); 147 reserved_word.rep_link = null (); 148 reserved_word.l_info = "00100000"b; /* suppress output first time into cobol_output_tokens */ 149 cobol_frst = cobol_ta_ptr; /* causes main stack to be started */ 150 cobol_top = cobol_ta_ptr; 151 cobol_endprog_sw = "0"b; 152 real_end_report = "0"b; 153 processing_report = "0"b; 154 155 call cobol_merge; 156 157 do while (^cobol_endprog_sw); 158 159 call cobol_gns; 160 161 if substr (reserved_word.l_info, 1, 1) = "0"b 162 then /* if cobol_rep_sw = "1"b then call cobol_check_rep; */ 163 if reserved_word.type = 8 164 then call cobol_res_words; 165 166 end; 167 168 l_e1: 169 call cobol_output_tokens; 170 171 cobol_m2fp = cobol_mfp; /*[4.4-1]*/ 172 173 if fixed_common.fatal_no ^= 0 174 then return; 175 176 /* The following code calls cobol_report_writer and processes the new source */ 177 178 if report_exists 179 then do; 180 181 processing_report = "1"b; 182 cobol_output_sw = "0"b; 183 cobol_head_words (5) = "0"b; 184 185 call cobol_report_writer; 186 187 /*[5.1-1]*/ 188 call get_size (cobol_rwdd); 189 190 ph_num = 2; 191 cobol_mfp = cobol_m1fp; 192 cobol_lex_exit = l_e2; 193 194 call cobol_merge; 195 196 do while (^cobol_endprog_sw); 197 198 call cobol_gns; 199 200 if substr (reserved_word.l_info, 1, 1) = "0"b 201 then if reserved_word.type = 8 202 then call cobol_res_words; 203 204 end; 205 206 l_e2: 207 call cobol_output_tokens; 208 209 cobol_head_words (5) = "1"b; 210 211 /*[5.1-1]*/ 212 call get_size (cobol_rwpd); 213 214 ph_num = 3; 215 cobol_output_sw = "0"b; 216 cobol_mfp = cobol_m2fp; 217 cobol_lex_exit = l_e3; 218 real_end_report = "1"b; 219 220 call cobol_merge; 221 222 do while (^cobol_endprog_sw); 223 224 call cobol_gns; 225 if substr (reserved_word.l_info, 1, 1) = "0"b 226 then if reserved_word.type = 8 227 then call cobol_res_words; 228 229 end; 230 231 l_e3: 232 call cobol_output_tokens; 233 234 end; 235 236 /*[5.1-2]*/ 237 fixed_common.cobol_cln = cobol_c_l_n; /* save last line num */ 238 239 return; 240 241 get_size: 242 proc (p); 243 244 /*[5.1-1]*/ 245 dcl p ptr; /*[5.1-1]*/ 246 dcl hcs_$fs_get_path_name 247 entry (ptr, char (*), fixed bin, char (*), fixed bin (35)); 248 /*[5.1-1]*/ 249 dcl hcs_$initiate_count entry (char (*), char (*), char (*), fixed bin (24), fixed bin (2), ptr, fixed bin (35)); 250 /*[5.1-1]*/ 251 dcl cobol_merge$source_file_size 252 entry (fixed bin (24)); /*[5.1-1]*/ 253 /*[5.1-1]*/ 254 dcl dn_1 char (168), 255 en_1 char (32); /*[5.1-1]*/ 256 dcl code fixed bin (35), 257 ldn fixed bin; /*[5.1-1]*/ 258 dcl s_ptr ptr; /*[5.1-1]*/ 259 dcl bc fixed bin (24); 260 261 262 /*[5.1-1]*/ 263 cobol_current = cobol_ta_ptr; /*[5.1-1]*/ 264 reserved_word.fwd_link = null (); /*[5.1-1]*/ 265 reserved_word.back_link = null (); /*[5.1-1]*/ 266 reserved_word.rep_link = null (); /*[5.1-1]*/ 267 reserved_word.l_info = "00100000"b; /*[5.1-1]*/ 268 cobol_frst = cobol_ta_ptr; /*[5.1-1]*/ 269 cobol_top = cobol_ta_ptr; /*[5.1-1]*/ 270 cobol_sfp = p; /*[5.1-1]*/ 271 cobol_endprog_sw = "0"b; /*[5.1-1]*/ 272 /*[5.1-1]*/ 273 call hcs_$fs_get_path_name (p, dn_1, ldn, en_1, code); 274 /*[5.1-1]*/ 275 /*[5.1-1]*/ 276 if code ^= 0 277 then go to err; /*[5.1-1]*/ 278 /*[5.1-1]*/ 279 call hcs_$initiate_count (dn_1, en_1, "", bc, 1, s_ptr, code); 280 /*[5.1-1]*/ 281 /*[5.1-1]*/ 282 if s_ptr = null () 283 then go to err; /*[5.1-1]*/ 284 /*[5.1-1]*/ 285 call cobol_merge$source_file_size (bc); 286 287 end; 288 289 err: /*[5.1-1]*/ 290 return; 291 1 1 1 2 /* BEGIN INCLUDE FILE ... cobol_ext_.incl.pl1 */ 1 3 /* Last modified on 06/17/76 by ORN */ 1 4 /* Last modified on 12/28/76 by FCH */ 1 5 /* Last modified on 12/01/80 by FCH */ 1 6 1 7 /* <<< SHARED EXTERNALS INCLUDE FILE >>> */ 1 8 1 9 1 10 dcl cobol_ext_$cobol_afp ptr ext; 1 11 dcl cobol_afp ptr defined ( cobol_ext_$cobol_afp); 1 12 dcl cobol_ext_$cobol_analin_fileno ptr ext; 1 13 dcl cobol_analin_fileno ptr defined ( cobol_ext_$cobol_analin_fileno); 1 14 dcl cobol_ext_$report_first_token ptr ext; 1 15 dcl report_first_token ptr defined( cobol_ext_$report_first_token); 1 16 dcl cobol_ext_$report_last_token ptr ext; 1 17 dcl report_last_token ptr defined ( cobol_ext_$report_last_token); 1 18 dcl cobol_ext_$cobol_eltp ptr ext; 1 19 dcl cobol_eltp ptr defined ( cobol_ext_$cobol_eltp); 1 20 dcl cobol_ext_$cobol_cmfp ptr ext; 1 21 dcl cobol_cmfp ptr defined ( cobol_ext_$cobol_cmfp); 1 22 dcl cobol_ext_$cobol_com_fileno ptr ext; 1 23 dcl cobol_com_fileno ptr defined ( cobol_ext_$cobol_com_fileno); 1 24 dcl cobol_ext_$cobol_com_ptr ptr ext; 1 25 dcl cobol_com_ptr ptr defined ( cobol_ext_$cobol_com_ptr); 1 26 dcl cobol_ext_$cobol_dfp ptr ext; 1 27 dcl cobol_dfp ptr defined ( cobol_ext_$cobol_dfp); 1 28 dcl cobol_ext_$cobol_hfp ptr ext; 1 29 dcl cobol_hfp ptr defined ( cobol_ext_$cobol_hfp); 1 30 dcl cobol_ext_$cobol_m1fp ptr ext; 1 31 dcl cobol_m1fp ptr defined ( cobol_ext_$cobol_m1fp); 1 32 dcl cobol_ext_$cobol_m2fp ptr ext; 1 33 dcl cobol_m2fp ptr defined ( cobol_ext_$cobol_m2fp); 1 34 dcl cobol_ext_$cobol_min1_fileno ptr ext; 1 35 dcl cobol_min1_fileno ptr defined ( cobol_ext_$cobol_min1_fileno); 1 36 dcl cobol_ext_$cobol_min2_fileno_ptr ptr ext; 1 37 dcl cobol_min2_fileno_ptr ptr defined ( cobol_ext_$cobol_min2_fileno_ptr); 1 38 dcl cobol_ext_$cobol_name_fileno ptr ext; 1 39 dcl cobol_name_fileno ptr defined ( cobol_ext_$cobol_name_fileno); 1 40 dcl cobol_ext_$cobol_name_fileno_ptr ptr ext; 1 41 dcl cobol_name_fileno_ptr ptr defined ( cobol_ext_$cobol_name_fileno_ptr); 1 42 dcl cobol_ext_$cobol_ntfp ptr ext; 1 43 dcl cobol_ntfp ptr defined ( cobol_ext_$cobol_ntfp); 1 44 dcl cobol_ext_$cobol_pdofp ptr ext; 1 45 dcl cobol_pdofp ptr defined ( cobol_ext_$cobol_pdofp); 1 46 dcl cobol_ext_$cobol_pfp ptr ext; 1 47 dcl cobol_pfp ptr defined ( cobol_ext_$cobol_pfp); 1 48 dcl cobol_ext_$cobol_rm2fp ptr ext; 1 49 dcl cobol_rm2fp ptr defined ( cobol_ext_$cobol_rm2fp); 1 50 dcl cobol_ext_$cobol_rmin2fp ptr ext; 1 51 dcl cobol_rmin2fp ptr defined ( cobol_ext_$cobol_rmin2fp); 1 52 dcl cobol_ext_$cobol_curr_in ptr ext; 1 53 dcl cobol_curr_in ptr defined ( cobol_ext_$cobol_curr_in); 1 54 dcl cobol_ext_$cobol_curr_out ptr ext; 1 55 dcl cobol_curr_out ptr defined ( cobol_ext_$cobol_curr_out); 1 56 dcl cobol_ext_$cobol_sfp ptr ext; 1 57 dcl cobol_sfp ptr defined ( cobol_ext_$cobol_sfp); 1 58 dcl cobol_ext_$cobol_w1p ptr ext; 1 59 dcl cobol_w1p ptr defined ( cobol_ext_$cobol_w1p); 1 60 dcl cobol_ext_$cobol_w2p ptr ext; 1 61 dcl cobol_w2p ptr defined ( cobol_ext_$cobol_w2p); 1 62 dcl cobol_ext_$cobol_w3p ptr ext; 1 63 dcl cobol_w3p ptr defined ( cobol_ext_$cobol_w3p); 1 64 dcl cobol_ext_$cobol_w5p ptr ext; 1 65 dcl cobol_w5p ptr defined ( cobol_ext_$cobol_w5p); 1 66 dcl cobol_ext_$cobol_w6p ptr ext; 1 67 dcl cobol_w6p ptr defined ( cobol_ext_$cobol_w6p); 1 68 dcl cobol_ext_$cobol_w7p ptr ext; 1 69 dcl cobol_w7p ptr defined ( cobol_ext_$cobol_w7p); 1 70 dcl cobol_ext_$cobol_x3fp ptr ext; 1 71 dcl cobol_x3fp ptr defined ( cobol_ext_$cobol_x3fp); 1 72 dcl cobol_ext_$cobol_rwdd ptr ext; 1 73 dcl cobol_rwdd ptr defined(cobol_ext_$cobol_rwdd); 1 74 dcl cobol_ext_$cobol_rwpd ptr ext; 1 75 dcl cobol_rwpd ptr defined(cobol_ext_$cobol_rwpd); 1 76 1 77 1 78 dcl cobol_ext_$cobol_fileno1 fixed bin(24)ext; 1 79 dcl cobol_fileno1 fixed bin(24)defined ( cobol_ext_$cobol_fileno1); 1 80 dcl cobol_ext_$cobol_options_len fixed bin(24)ext; 1 81 dcl cobol_options_len fixed bin(24)defined ( cobol_ext_$cobol_options_len); 1 82 dcl cobol_ext_$cobol_pdout_fileno fixed bin(24)ext; 1 83 dcl cobol_pdout_fileno fixed bin(24)defined ( cobol_ext_$cobol_pdout_fileno); 1 84 dcl cobol_ext_$cobol_print_fileno fixed bin(24)ext; 1 85 dcl cobol_print_fileno fixed bin(24)defined ( cobol_ext_$cobol_print_fileno); 1 86 dcl cobol_ext_$cobol_rmin2_fileno fixed bin(24)ext; 1 87 dcl cobol_rmin2_fileno fixed bin(24)defined ( cobol_ext_$cobol_rmin2_fileno); 1 88 dcl cobol_ext_$cobol_x1_fileno fixed bin(24)ext; 1 89 dcl cobol_x1_fileno fixed bin(24)defined ( cobol_ext_$cobol_x1_fileno); 1 90 dcl cobol_ext_$cobol_x2_fileno fixed bin(24)ext; 1 91 dcl cobol_x2_fileno fixed bin(24)defined ( cobol_ext_$cobol_x2_fileno); 1 92 dcl cobol_ext_$cobol_x3_fileno fixed bin(24)ext; 1 93 dcl cobol_x3_fileno fixed bin(24)defined ( cobol_ext_$cobol_x3_fileno); 1 94 1 95 dcl cobol_ext_$cobol_lpr char (5) ext; 1 96 dcl cobol_lpr char (5) defined ( cobol_ext_$cobol_lpr); /* -2- */ 1 97 dcl cobol_ext_$cobol_options char (120) ext; 1 98 dcl cobol_options char (120) defined ( cobol_ext_$cobol_options); /* -30- */ 1 99 1 100 dcl cobol_ext_$cobol_xlast8 bit (1) ext; 1 101 dcl cobol_xlast8 bit (1) defined ( cobol_ext_$cobol_xlast8); /* -1- */ 1 102 dcl cobol_ext_$report_exists bit (1) ext; 1 103 dcl report_exists bit (1) defined ( cobol_ext_$report_exists); 1 104 1 105 1 106 /* <<< END OF SHARED EXTERNALS INCLUDE FILE >>> */ 1 107 /* END INCLUDE FILE ... cobol_ext_.incl.pl1 */ 1 108 292 2 1 2 2 /* BEGIN INCLUDE FILE ... cobol_ext_lex.incl.pl1 */ 2 3 /* Last modified on 06/18/76 by ORN */ 2 4 2 5 /* * * * LEX EXTERNAL DATA * * * */ 2 6 2 7 /* Pointers */ 2 8 2 9 dcl cobol_ext_lex$cobol_current ptr ext; 2 10 dcl cobol_current ptr defined ( cobol_ext_lex$cobol_current); 2 11 dcl cobol_ext_lex$cobol_top ptr ext; 2 12 dcl cobol_top ptr defined ( cobol_ext_lex$cobol_top); 2 13 dcl cobol_ext_lex$cobol_frst ptr ext; 2 14 dcl cobol_frst ptr defined ( cobol_ext_lex$cobol_frst); 2 15 dcl cobol_ext_lex$cobol_mfp ptr ext; 2 16 dcl cobol_mfp ptr defined ( cobol_ext_lex$cobol_mfp); 2 17 dcl cobol_ext_lex$cobol_rt_ptr ptr ext; 2 18 dcl cobol_rt_ptr ptr defined ( cobol_ext_lex$cobol_rt_ptr); 2 19 dcl cobol_ext_lex$cobol_cfp ptr ext; 2 20 dcl cobol_cfp ptr defined ( cobol_ext_lex$cobol_cfp); 2 21 dcl cobol_ext_lex$cobol_ta_ptr ptr ext; 2 22 dcl cobol_ta_ptr ptr defined ( cobol_ext_lex$cobol_ta_ptr); 2 23 dcl cobol_ext_lex$cobol_elt_buf_ptr ptr ext; 2 24 dcl cobol_elt_buf_ptr ptr defined ( cobol_ext_lex$cobol_elt_buf_ptr); 2 25 dcl cobol_ext_lex$cobol_lex_exit /*[*/ label /*]*/ /*[[[ entry static ]]]*/ ext; 2 26 dcl cobol_lex_exit /*[*/ label /*]*/ /*[[[ entry static ]]]*/ defined( cobol_ext_lex$cobol_lex_exit); /* -6- */ 2 27 2 28 /* Character */ 2 29 2 30 dcl cobol_ext_lex$cobol_tarea char (300) ext; 2 31 dcl cobol_tarea char (300) defined ( cobol_ext_lex$cobol_tarea); /* -75- */ 2 32 dcl cobol_ext_lex$cobol_comma_character char (1) ext; 2 33 dcl cobol_comma_character char (1) defined ( cobol_ext_lex$cobol_comma_character); 2 34 dcl cobol_ext_lex$cobol_decimal_point_character char (1) ext; 2 35 dcl cobol_decimal_point_character char (1) defined ( cobol_ext_lex$cobol_decimal_point_character); 2 36 dcl cobol_ext_lex$cobol_new_line_character char (1) ext; 2 37 dcl cobol_new_line_character char (1) defined ( cobol_ext_lex$cobol_new_line_character); 2 38 dcl cobol_ext_lex$cobol_si_key char (5) ext; 2 39 dcl cobol_si_key char (5) defined ( cobol_ext_lex$cobol_si_key); /* -2- */ 2 40 dcl cobol_ext_lex$cobol_so_key char (5) ext; 2 41 dcl cobol_so_key char (5) defined ( cobol_ext_lex$cobol_so_key); /* -2- */ 2 42 2 43 /* Fixed bin */ 2 44 2 45 dcl cobol_ext_lex$ph_num fixed bin ext; 2 46 dcl ph_num fixed bin defined(cobol_ext_lex$ph_num ); 2 47 dcl cobol_ext_lex$cobol_c_l_n fixed bin ext; 2 48 dcl cobol_c_l_n fixed bin defined ( cobol_ext_lex$cobol_c_l_n); 2 49 dcl cobol_ext_lex$cobol_save_cln fixed bin ext; 2 50 dcl cobol_save_cln fixed bin defined ( cobol_ext_lex$cobol_save_cln); 2 51 dcl cobol_ext_lex$cobol_save_col fixed bin ext; 2 52 dcl cobol_save_col fixed bin defined ( cobol_ext_lex$cobol_save_col); 2 53 dcl cobol_ext_lex$cobol_name_number fixed bin ext; 2 54 dcl cobol_name_number fixed bin defined ( cobol_ext_lex$cobol_name_number); 2 55 dcl cobol_ext_lex$cobol_section_number fixed bin ext; 2 56 dcl cobol_section_number fixed bin defined ( cobol_ext_lex$cobol_section_number); 2 57 dcl cobol_ext_lex$cobol_sr fixed bin ext; 2 58 dcl cobol_sr fixed bin defined ( cobol_ext_lex$cobol_sr); 2 59 dcl cobol_ext_lex$cobol_elt_idx fixed bin ext; 2 60 dcl cobol_elt_idx fixed bin defined ( cobol_ext_lex$cobol_elt_idx); 2 61 2 62 /* Structures */ 2 63 2 64 dcl 1 cobol_ext_lex$cobol_cards ext like cobol_cards; 2 65 dcl 1 cobol_cards defined ( cobol_ext_lex$cobol_cards), /* -67- */ 2 66 2 column fixed bin, 2 67 2 tblanks fixed bin, 2 68 2 nr_char fixed bin, 2 69 2 name char (256); 2 70 2 71 /* Bits */ 2 72 2 73 dcl cobol_ext_lex$processing_report bit(1) ext; 2 74 dcl processing_report bit (1) defined (cobol_ext_lex$processing_report); 2 75 dcl cobol_ext_lex$real_end_report bit (1) ext; 2 76 dcl real_end_report bit (1) defined (cobol_ext_lex$real_end_report); 2 77 dcl cobol_ext_lex$cobol_continuation bit (1) ext; 2 78 dcl cobol_continuation bit (1) defined ( cobol_ext_lex$cobol_continuation); 2 79 dcl cobol_ext_lex$cobol_pic_switch bit (1) ext; 2 80 dcl cobol_pic_switch bit (1) defined ( cobol_ext_lex$cobol_pic_switch); 2 81 dcl cobol_ext_lex$cobol_allo_init_sw bit (1) ext; 2 82 dcl cobol_allo_init_sw bit (1) defined ( cobol_ext_lex$cobol_allo_init_sw); 2 83 dcl cobol_ext_lex$cobol_lu_sw bit (1) ext; 2 84 dcl cobol_lu_sw bit (1) defined ( cobol_ext_lex$cobol_lu_sw); 2 85 dcl cobol_ext_lex$cobol_scanoff_sw bit (1) ext; 2 86 dcl cobol_scanoff_sw bit (1) defined ( cobol_ext_lex$cobol_scanoff_sw); 2 87 dcl cobol_ext_lex$cobol_output_sw bit (1) ext; 2 88 dcl cobol_output_sw bit (1) defined ( cobol_ext_lex$cobol_output_sw); 2 89 dcl cobol_ext_lex$cobol_stack_sw bit (1) ext; 2 90 dcl cobol_stack_sw bit (1) defined ( cobol_ext_lex$cobol_stack_sw); 2 91 dcl cobol_ext_lex$cobol_copy_found bit (1) ext; 2 92 dcl cobol_copy_found bit (1) defined ( cobol_ext_lex$cobol_copy_found); 2 93 dcl cobol_ext_lex$cobol_head_words (5) bit (1) ext; 2 94 dcl cobol_head_words (5) bit (1) defined ( cobol_ext_lex$cobol_head_words); 2 95 dcl cobol_ext_lex$cobol_elnp_sw bit (1) ext; 2 96 dcl cobol_elnp_sw bit (1) defined ( cobol_ext_lex$cobol_elnp_sw); 2 97 dcl cobol_ext_lex$cobol_dp_sw bit (1) ext; 2 98 dcl cobol_dp_sw bit (1) defined ( cobol_ext_lex$cobol_dp_sw); 2 99 dcl cobol_ext_lex$cobol_endprog_sw bit (1) ext; 2 100 dcl cobol_endprog_sw bit (1) defined ( cobol_ext_lex$cobol_endprog_sw); 2 101 dcl cobol_ext_lex$cobol_debug_mode bit (1) ext; 2 102 dcl cobol_debug_mode bit (1) defined ( cobol_ext_lex$cobol_debug_mode); 2 103 dcl cobol_ext_lex$cobol_rwt_init_sw bit (1) ext; 2 104 dcl cobol_rwt_init_sw bit (1) defined ( cobol_ext_lex$cobol_rwt_init_sw); 2 105 dcl cobol_ext_lex$cobol_init_ta_sw bit (1) ext; 2 106 dcl cobol_init_ta_sw bit (1) defined ( cobol_ext_lex$cobol_init_ta_sw); 2 107 dcl cobol_ext_lex$cobol_rep_sw bit (1) ext; 2 108 dcl cobol_rep_sw bit (1) defined ( cobol_ext_lex$cobol_rep_sw); 2 109 dcl cobol_ext_lex$cobol_copy_active bit (1) ext; 2 110 dcl cobol_copy_active bit (1) defined ( cobol_ext_lex$cobol_copy_active); 2 111 dcl cobol_ext_lex$cobol_ln_sw (2) bit (1) ext; 2 112 dcl cobol_ln_sw (2) bit (1) defined ( cobol_ext_lex$cobol_ln_sw); 2 113 dcl cobol_ext_lex$cobol_prime_sw bit (1) ext; 2 114 dcl cobol_prime_sw bit (1) defined ( cobol_ext_lex$cobol_prime_sw); 2 115 dcl cobol_ext_lex$cobol_rec1_sw (2) bit (1) ext; 2 116 dcl cobol_rec1_sw (2) bit (1) defined ( cobol_ext_lex$cobol_rec1_sw); 2 117 dcl cobol_ext_lex$cobol_progid_sw bit(1) ext; 2 118 dcl cobol_progid_sw bit(1) defined ( cobol_ext_lex$cobol_progid_sw); 2 119 2 120 2 121 /* * * * END LEX EXTERNAL DATA * * * */ 2 122 /* END INCLUDE FILE ... cobol_ext_lex.incl.pl1 */ 2 123 293 3 1 3 2 /* BEGIN INCLUDE FILE ... cobol_.incl.pl1 */ 3 3 /* last modified Feb 4, 1977 by ORN */ 3 4 3 5 /* This file defines all external data used in the generator phase of Multics Cobol */ 3 6 3 7 /* POINTERS */ 3 8 dcl cobol_$text_base_ptr ptr ext; 3 9 dcl text_base_ptr ptr defined (cobol_$text_base_ptr); 3 10 dcl cobol_$con_end_ptr ptr ext; 3 11 dcl con_end_ptr ptr defined (cobol_$con_end_ptr); 3 12 dcl cobol_$def_base_ptr ptr ext; 3 13 dcl def_base_ptr ptr defined (cobol_$def_base_ptr); 3 14 dcl cobol_$link_base_ptr ptr ext; 3 15 dcl link_base_ptr ptr defined (cobol_$link_base_ptr); 3 16 dcl cobol_$sym_base_ptr ptr ext; 3 17 dcl sym_base_ptr ptr defined (cobol_$sym_base_ptr); 3 18 dcl cobol_$reloc_text_base_ptr ptr ext; 3 19 dcl reloc_text_base_ptr ptr defined (cobol_$reloc_text_base_ptr); 3 20 dcl cobol_$reloc_def_base_ptr ptr ext; 3 21 dcl reloc_def_base_ptr ptr defined (cobol_$reloc_def_base_ptr); 3 22 dcl cobol_$reloc_link_base_ptr ptr ext; 3 23 dcl reloc_link_base_ptr ptr defined (cobol_$reloc_link_base_ptr); 3 24 dcl cobol_$reloc_sym_base_ptr ptr ext; 3 25 dcl reloc_sym_base_ptr ptr defined (cobol_$reloc_sym_base_ptr); 3 26 dcl cobol_$reloc_work_base_ptr ptr ext; 3 27 dcl reloc_work_base_ptr ptr defined (cobol_$reloc_work_base_ptr); 3 28 dcl cobol_$pd_map_ptr ptr ext; 3 29 dcl pd_map_ptr ptr defined (cobol_$pd_map_ptr); 3 30 dcl cobol_$fixup_ptr ptr ext; 3 31 dcl fixup_ptr ptr defined (cobol_$fixup_ptr); 3 32 dcl cobol_$initval_base_ptr ptr ext; 3 33 dcl initval_base_ptr ptr defined (cobol_$initval_base_ptr); 3 34 dcl cobol_$initval_file_ptr ptr ext; 3 35 dcl initval_file_ptr ptr defined (cobol_$initval_file_ptr); 3 36 dcl cobol_$perform_list_ptr ptr ext; 3 37 dcl perform_list_ptr ptr defined (cobol_$perform_list_ptr); 3 38 dcl cobol_$alter_list_ptr ptr ext; 3 39 dcl alter_list_ptr ptr defined (cobol_$alter_list_ptr); 3 40 dcl cobol_$seg_init_list_ptr ptr ext; 3 41 dcl seg_init_list_ptr ptr defined (cobol_$seg_init_list_ptr); 3 42 dcl cobol_$temp_token_area_ptr ptr ext; 3 43 dcl temp_token_area_ptr ptr defined (cobol_$temp_token_area_ptr); 3 44 dcl cobol_$temp_token_ptr ptr ext; 3 45 dcl temp_token_ptr ptr defined (cobol_$temp_token_ptr); 3 46 dcl cobol_$token_block1_ptr ptr ext; 3 47 dcl token_block1_ptr ptr defined (cobol_$token_block1_ptr); 3 48 dcl cobol_$token_block2_ptr ptr ext; 3 49 dcl token_block2_ptr ptr defined (cobol_$token_block2_ptr); 3 50 dcl cobol_$minpral5_ptr ptr ext; 3 51 dcl minpral5_ptr ptr defined (cobol_$minpral5_ptr); 3 52 dcl cobol_$tag_table_ptr ptr ext; 3 53 dcl tag_table_ptr ptr defined (cobol_$tag_table_ptr); 3 54 dcl cobol_$map_data_ptr ptr ext; 3 55 dcl map_data_ptr ptr defined (cobol_$map_data_ptr); 3 56 dcl cobol_$ptr_status_ptr ptr ext; 3 57 dcl ptr_status_ptr ptr defined (cobol_$ptr_status_ptr); 3 58 dcl cobol_$reg_status_ptr ptr ext; 3 59 dcl reg_status_ptr ptr defined (cobol_$reg_status_ptr); 3 60 dcl cobol_$misc_base_ptr ptr ext; 3 61 dcl misc_base_ptr ptr defined (cobol_$misc_base_ptr); 3 62 dcl cobol_$misc_end_ptr ptr ext; 3 63 dcl misc_end_ptr ptr defined (cobol_$misc_end_ptr); 3 64 dcl cobol_$list_ptr ptr ext; 3 65 dcl list_ptr ptr defined (cobol_$list_ptr); 3 66 dcl cobol_$allo1_ptr ptr ext; 3 67 dcl allo1_ptr ptr defined (cobol_$allo1_ptr); 3 68 dcl cobol_$eln_ptr ptr ext; 3 69 dcl eln_ptr ptr defined (cobol_$eln_ptr); 3 70 dcl cobol_$diag_ptr ptr ext; 3 71 dcl diag_ptr ptr defined (cobol_$diag_ptr); 3 72 dcl cobol_$xref_token_ptr ptr ext; 3 73 dcl xref_token_ptr ptr defined (cobol_$xref_token_ptr); 3 74 dcl cobol_$xref_chain_ptr ptr ext; 3 75 dcl xref_chain_ptr ptr defined (cobol_$xref_chain_ptr); 3 76 dcl cobol_$statement_info_ptr ptr ext; 3 77 dcl statement_info_ptr ptr defined (cobol_$statement_info_ptr); 3 78 dcl cobol_$reswd_ptr ptr ext; 3 79 dcl reswd_ptr ptr defined (cobol_$reswd_ptr); 3 80 dcl cobol_$op_con_ptr ptr ext; 3 81 dcl op_con_ptr ptr defined (cobol_$op_con_ptr); 3 82 dcl cobol_$ntbuf_ptr ptr ext; 3 83 dcl ntbuf_ptr ptr defined (cobol_$ntbuf_ptr); 3 84 dcl cobol_$main_pcs_ptr ptr ext; 3 85 dcl main_pcs_ptr ptr defined (cobol_$main_pcs_ptr); 3 86 dcl cobol_$include_info_ptr ptr ext; 3 87 dcl include_info_ptr ptr defined (cobol_$include_info_ptr); 3 88 3 89 /* FIXED BIN */ 3 90 dcl cobol_$text_wd_off fixed bin ext; 3 91 dcl text_wd_off fixed bin defined (cobol_$text_wd_off); 3 92 dcl cobol_$con_wd_off fixed bin ext; 3 93 dcl con_wd_off fixed bin defined (cobol_$con_wd_off); 3 94 dcl cobol_$def_wd_off fixed bin ext; 3 95 dcl def_wd_off fixed bin defined (cobol_$def_wd_off); 3 96 dcl cobol_$def_max fixed bin ext; 3 97 dcl def_max fixed bin defined (cobol_$def_max); 3 98 dcl cobol_$link_wd_off fixed bin ext; 3 99 dcl link_wd_off fixed bin defined (cobol_$link_wd_off); 3 100 dcl cobol_$link_max fixed bin ext; 3 101 dcl link_max fixed bin defined (cobol_$link_max); 3 102 dcl cobol_$sym_wd_off fixed bin ext; 3 103 dcl sym_wd_off fixed bin defined (cobol_$sym_wd_off); 3 104 dcl cobol_$sym_max fixed bin ext; 3 105 dcl sym_max fixed bin defined (cobol_$sym_max); 3 106 dcl cobol_$reloc_text_max fixed bin(24) ext; 3 107 dcl reloc_text_max fixed bin(24) defined (cobol_$reloc_text_max); 3 108 dcl cobol_$reloc_def_max fixed bin(24) ext; 3 109 dcl reloc_def_max fixed bin(24) defined (cobol_$reloc_def_max); 3 110 dcl cobol_$reloc_link_max fixed bin(24) ext; 3 111 dcl reloc_link_max fixed bin(24) defined (cobol_$reloc_link_max); 3 112 dcl cobol_$reloc_sym_max fixed bin(24) ext; 3 113 dcl reloc_sym_max fixed bin(24) defined (cobol_$reloc_sym_max); 3 114 dcl cobol_$reloc_work_max fixed bin(24) ext; 3 115 dcl reloc_work_max fixed bin(24) defined (cobol_$reloc_work_max); 3 116 dcl cobol_$pd_map_index fixed bin ext; 3 117 dcl pd_map_index fixed bin defined (cobol_$pd_map_index); 3 118 dcl cobol_$cobol_data_wd_off fixed bin ext; 3 119 dcl cobol_data_wd_off fixed bin defined (cobol_$cobol_data_wd_off); 3 120 dcl cobol_$stack_off fixed bin ext; 3 121 dcl stack_off fixed bin defined (cobol_$stack_off); 3 122 dcl cobol_$max_stack_off fixed bin ext; 3 123 dcl max_stack_off fixed bin defined (cobol_$max_stack_off); 3 124 dcl cobol_$init_stack_off fixed bin ext; 3 125 dcl init_stack_off fixed bin defined (cobol_$init_stack_off); 3 126 dcl cobol_$pd_map_sw fixed bin ext; 3 127 dcl pd_map_sw fixed bin defined (cobol_$pd_map_sw); 3 128 dcl cobol_$next_tag fixed bin ext; 3 129 dcl next_tag fixed bin defined (cobol_$next_tag); 3 130 dcl cobol_$data_init_flag fixed bin ext; 3 131 dcl data_init_flag fixed bin defined (cobol_$data_init_flag); 3 132 dcl cobol_$seg_init_flag fixed bin ext; 3 133 dcl seg_init_flag fixed bin defined (cobol_$seg_init_flag); 3 134 dcl cobol_$alter_flag fixed bin ext; 3 135 dcl alter_flag fixed bin defined (cobol_$alter_flag); 3 136 dcl cobol_$sect_eop_flag fixed bin ext; 3 137 dcl sect_eop_flag fixed bin defined (cobol_$sect_eop_flag); 3 138 dcl cobol_$para_eop_flag fixed bin ext; 3 139 dcl para_eop_flag fixed bin defined (cobol_$para_eop_flag); 3 140 dcl cobol_$priority_no fixed bin ext; 3 141 dcl priority_no fixed bin defined (cobol_$priority_no); 3 142 dcl cobol_$compile_count fixed bin ext; 3 143 dcl compile_count fixed bin defined (cobol_$compile_count); 3 144 dcl cobol_$ptr_assumption_ind fixed bin ext; 3 145 dcl ptr_assumption_ind fixed bin defined (cobol_$ptr_assumption_ind); 3 146 dcl cobol_$reg_assumption_ind fixed bin ext; 3 147 dcl reg_assumption_ind fixed bin defined (cobol_$reg_assumption_ind); 3 148 dcl cobol_$perform_para_index fixed bin ext; 3 149 dcl perform_para_index fixed bin defined (cobol_$perform_para_index); 3 150 dcl cobol_$perform_sect_index fixed bin ext; 3 151 dcl perform_sect_index fixed bin defined (cobol_$perform_sect_index); 3 152 dcl cobol_$alter_index fixed bin ext; 3 153 dcl alter_index fixed bin defined (cobol_$alter_index); 3 154 dcl cobol_$list_off fixed bin ext; 3 155 dcl list_off fixed bin defined (cobol_$list_off); 3 156 dcl cobol_$constant_offset fixed bin ext; 3 157 dcl constant_offset fixed bin defined (cobol_$constant_offset); 3 158 dcl cobol_$misc_max fixed bin ext; 3 159 dcl misc_max fixed bin defined (cobol_$misc_max); 3 160 dcl cobol_$pd_map_max fixed bin ext; 3 161 dcl pd_map_max fixed bin defined (cobol_$pd_map_max); 3 162 dcl cobol_$map_data_max fixed bin ext; 3 163 dcl map_data_max fixed bin defined (cobol_$map_data_max); 3 164 dcl cobol_$fixup_max fixed bin ext; 3 165 dcl fixup_max fixed bin defined (cobol_$fixup_max); 3 166 dcl cobol_$tag_table_max fixed bin ext; 3 167 dcl tag_table_max fixed bin defined (cobol_$tag_table_max); 3 168 dcl cobol_$temp_token_max fixed bin ext; 3 169 dcl temp_token_max fixed bin defined (cobol_$temp_token_max); 3 170 dcl cobol_$allo1_max fixed bin ext; 3 171 dcl allo1_max fixed bin defined (cobol_$allo1_max); 3 172 dcl cobol_$eln_max fixed bin ext; 3 173 dcl eln_max fixed bin defined (cobol_$eln_max); 3 174 dcl cobol_$debug_enable fixed bin ext; 3 175 dcl debug_enable fixed bin defined (cobol_$debug_enable); 3 176 dcl cobol_$non_source_offset fixed bin ext; 3 177 dcl non_source_offset fixed bin defined (cobol_$non_source_offset); 3 178 dcl cobol_$initval_flag fixed bin ext; 3 179 dcl initval_flag fixed bin defined (cobol_$initval_flag); 3 180 dcl cobol_$date_compiled_sw fixed bin ext; 3 181 dcl date_compiled_sw fixed bin defined (cobol_$date_compiled_sw); 3 182 dcl cobol_$include_cnt fixed bin ext; 3 183 dcl include_cnt fixed bin defined (cobol_$include_cnt); 3 184 dcl cobol_$fs_charcnt fixed bin ext; 3 185 dcl fs_charcnt fixed bin defined (cobol_$fs_charcnt); 3 186 dcl cobol_$ws_charcnt fixed bin ext; 3 187 dcl ws_charcnt fixed bin defined (cobol_$ws_charcnt); 3 188 dcl cobol_$coms_charcnt fixed bin ext; 3 189 dcl coms_charcnt fixed bin defined (cobol_$coms_charcnt); 3 190 dcl cobol_$ls_charcnt fixed bin ext; 3 191 dcl ls_charcnt fixed bin defined (cobol_$ls_charcnt); 3 192 dcl cobol_$cons_charcnt fixed bin ext; 3 193 dcl cons_charcnt fixed bin defined (cobol_$cons_charcnt); 3 194 dcl cobol_$value_cnt fixed bin ext; 3 195 dcl value_cnt fixed bin defined (cobol_$value_cnt); 3 196 dcl cobol_$cd_cnt fixed bin ext; 3 197 dcl cd_cnt fixed bin defined (cobol_$cd_cnt); 3 198 dcl cobol_$fs_wdoff fixed bin ext; 3 199 dcl fs_wdoff fixed bin defined (cobol_$fs_wdoff); 3 200 dcl cobol_$ws_wdoff fixed bin ext; 3 201 dcl ws_wdoff fixed bin defined (cobol_$ws_wdoff); 3 202 dcl cobol_$coms_wdoff fixed bin ext; 3 203 dcl coms_wdoff fixed bin defined (cobol_$coms_wdoff); 3 204 3 205 /* CHARACTER */ 3 206 dcl cobol_$scratch_dir char (168) aligned ext; 3 207 dcl scratch_dir char (168) aligned defined (cobol_$scratch_dir); /* -42- */ 3 208 dcl cobol_$obj_seg_name char (32) aligned ext; 3 209 dcl obj_seg_name char (32) aligned defined (cobol_$obj_seg_name); /* -8- */ 3 210 3 211 /* BIT */ 3 212 dcl cobol_$xref_bypass bit(1) aligned ext; 3 213 dcl xref_bypass bit(1) aligned defined (cobol_$xref_bypass); /* -1- */ 3 214 dcl cobol_$same_sort_merge_proc bit(1) aligned ext; 3 215 dcl same_sort_merge_proc bit(1) aligned defined (cobol_$same_sort_merge_proc); /* -1- */ 3 216 3 217 3 218 /* END INCLUDE FILE ... cobol_incl.pl1*/ 3 219 3 220 294 4 1 4 2 /* BEGIN INCLUDE FILE ... cobol_fixed_common.incl.pl1 */ 4 3 /* Modified on 10/27/82 by FCH, [5.1-1], cobol_cln added to save last line num, BUG543(phx13643) */ 4 4 /* Modified on 07/31/80 by FCH, [4.3-1], use_reporting field added for Report Writer */ 4 5 /* Modified on 03/30/79 by FCH, [4.1-1], -card option added */ 4 6 /* Modified on 03/30/79 by FCH, [4.0-2], -svNM option added */ 4 7 /* Modified on 03/02/79 by FCH, [4.0-1], -levNM option added */ 4 8 /* Modified by RAL on 10/13/78, [4.0-0], Added option exp from fil2. */ 4 9 /* Modified by BC on 06/20/77, descriptor added. */ 4 10 /* Modified by BC on 06/02/77, init_cd_seg, init_cd_offset added. */ 4 11 /* Modified by BC on 1/21/77, options.profile added. */ 4 12 /* Modified by FCH on 7/6/76, sysin_fno & sysout_fno deleted, accept_device & display_device added */ 4 13 /* Modified by FCH on 5/20/77, comp_level added */ 4 14 4 15 4 16 /* THE SIZE OF THIS STRUCTURE IN BYTES, (EXCLUDING VARIABLE 4 17* LENGTH ENTITIES), FOR EACH HARDWARE IMPLEMENTATION IS: 4 18* 4 19* HARDWARE | SIZE (BYTES) 4 20* --------------------------------- 4 21* 645/6180 | 464 4 22* P7 | 396 4 23* --------------------------------- 4 24* */ 4 25 4 26 dcl 1 fixed_common based ( cobol_com_ptr), 4 27 2 prog_name char (30), 4 28 2 compiler_rev_no char (25), 4 29 2 phase_name char (6), 4 30 2 currency char (1), 4 31 2 fatal_no fixed bin, 4 32 2 warn_no fixed bin, 4 33 2 proc_counter fixed bin, 4 34 2 spec_tag_counter fixed bin, 4 35 2 file_count fixed bin, 4 36 2 filedescr_offsets (20) char (5), 4 37 2 perf_alter_info char (5), 4 38 2 another_perform_info char (5), 4 39 2 sort_in_info char (5), 4 40 2 odo_info char (5), 4 41 2 size_seg fixed bin, 4 42 2 size_offset fixed bin(24), 4 43 2 size_perform_info char (5), 4 44 2 rename_info char (5), 4 45 2 report_names char (5), 4 46 2 rw_buf_seg fixed bin, 4 47 2 rw_buf_offset fixed bin(24), 4 48 2 rw_buf_length fixed bin(24), 4 49 2 file_keys char (5), 4 50 2 search_keys char (5), 4 51 2 dd_seg_size fixed bin(24), 4 52 2 pd_seg_size fixed bin(24), 4 53 2 seg_limit fixed bin , 4 54 2 number_of_dd_segs fixed bin, 4 55 2 seg_info char (5), 4 56 2 number_of_ls_pointers fixed bin, 4 57 2 link_sec_seg fixed bin, 4 58 2 link_sec_offset fixed bin(24), 4 59 2 sra_clauses fixed bin, 4 60 2 fix_up_info char (5), 4 61 2 linage_info char (5), 4 62 2 first_dd_item char (5), 4 63 2 sort_out_info char (5), 4 64 2 db_info char (5), 4 65 2 realm_info char (5), 4 66 2 rc_realm_info char (5), 4 67 2 last_file_key char (5), 4 68 2 prog_coll_seq fixed bin, 4 69 2 init_cd_seg fixed bin, 4 70 2 init_cd_offset fixed bin(24), 4 71 2 input_error_exit fixed bin, 4 72 2 output_error_exit fixed bin, 4 73 2 i_o_error_exit fixed bin, 4 74 2 extend_error_exit fixed bin, 4 75 2 dummy15 fixed bin, 4 76 2 options, 4 77 3 cu bit (1), 4 78 3 st bit (1), 4 79 3 wn bit (1), 4 80 3 obs bit (1), 4 81 3 dm bit (1), 4 82 3 xrl bit (1), 4 83 3 xrn bit (1), 4 84 3 src bit (1), 4 85 3 obj bit (1), 4 86 3 exs bit (1), 4 87 3 sck bit (1), 4 88 3 rno bit (1), 4 89 3 u_l bit (1), 4 90 3 cnv bit (1), 4 91 3 cos bit (1), 4 92 3 fmt bit (1), 4 93 3 profile bit(1), 4 94 3 nw bit (1), 4 95 3 exp bit (1), /* [4.0-0] */ 4 96 3 card bit (1), /*[4.1-1]*/ 4 97 3 fil2 bit (5), 4 98 3 m_map bit (1), 4 99 3 m_bf bit (1), 4 100 3 m_fat bit (1), 4 101 3 m_wn bit (1), 4 102 3 m_obs bit(1), 4 103 3 pd bit(1), 4 104 3 oc bit(1), 4 105 2 supervisor bit (1), 4 106 2 dec_comma bit (1), 4 107 2 init_cd bit (1), 4 108 2 corr bit (1), 4 109 2 initl bit (1), 4 110 2 debug bit (1), 4 111 2 report bit (1), 4 112 2 sync_in_prog bit (1), 4 113 2 pd_section bit (1), 4 114 2 list_switch bit (1), 4 115 2 alpha_cond bit (1), 4 116 2 num_cond bit (1), 4 117 2 spec_sysin bit (1), 4 118 2 spec_sysout bit (1), 4 119 2 cpl_files bit (1), 4 120 2 obj_dec_comma bit (1), 4 121 2 default_sign_type bit (3), 4 122 2 use_debug bit(1), 4 123 2 syntax_trace bit(1), 4 124 2 comp_defaults, 4 125 3 comp bit(1), 4 126 3 comp_1 bit(1), 4 127 3 comp_2 bit(1), 4 128 3 comp_3 bit(1), 4 129 3 comp_4 bit(1), 4 130 3 comp_5 bit(1), 4 131 3 comp_6 bit(1), 4 132 3 comp_7 bit(1), 4 133 3 comp_8 bit(1), 4 134 2 disp_defaults, 4 135 3 disp bit(1), 4 136 3 disp_1 bit(1), 4 137 3 disp_2 bit(1), 4 138 3 disp_3 bit(1), 4 139 3 disp_4 bit(1), 4 140 3 disp_5 bit(1), 4 141 3 disp_6 bit(1), 4 142 3 disp_7 bit(1), 4 143 2 descriptor bit(2), 4 144 2 levsv bit(3), /*[4.0-1]*/ 4 145 2 use_reporting bit(1), /*[4.3-1]*/ 4 146 2 cd bit(1), /*[4.4-1]*/ 4 147 2 dummy17 bit(3), 4 148 2 lvl_rstr bit(32), 4 149 2 inst_rstr bit(32), 4 150 2 comp_level char(1), 4 151 2 dummy18 char(30), 4 152 2 object_sign char (1), 4 153 2 last_print_rec char (5), 4 154 2 coll_seq_info char (5), 4 155 2 sys_status_seg fixed bin, 4 156 2 sys_status_offset fixed bin(24), 4 157 2 compiler_id fixed bin, 4 158 2 date_comp_ln fixed bin, 4 159 2 compile_mode bit(36), 4 160 2 default_temp fixed bin, 4 161 2 accept_device fixed bin, 4 162 2 display_device fixed bin, 4 163 2 cobol_cln fixed bin, /*[5.1-1]*/ 4 164 2 alphabet_offset fixed bin; 4 165 4 166 4 167 4 168 /* END INCLUDE FILE ... cobol_fixed_common.incl.pl1 */ 4 169 295 296 297 end cobol_lex; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 04/18/00 1138.3 cobol_lex.pl1 >udd>sm>ds>w>ml>cobol_lex.pl1 292 1 03/27/82 0531.3 cobol_ext_.incl.pl1 >ldd>incl>cobol_ext_.incl.pl1 293 2 03/27/82 0531.6 cobol_ext_lex.incl.pl1 >ldd>incl>cobol_ext_lex.incl.pl1 294 3 11/11/82 1812.7 cobol_.incl.pl1 >ldd>incl>cobol_.incl.pl1 295 4 11/11/82 1812.8 cobol_fixed_common.incl.pl1 >ldd>incl>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. addr builtin function dcl 63 ref 112 143 back_link 2 based pointer level 2 dcl 38 set ref 146* 265* bc 000354 automatic fixed bin(24,0) dcl 259 set ref 279* 285* cobol_$date_compiled_sw 000200 external static fixed bin(17,0) dcl 3-180 set ref 90* cobol_allo_init_sw defined bit(1) packed unaligned dcl 2-82 set ref 108* cobol_c_l_n defined fixed bin(17,0) dcl 2-48 set ref 113* 237 cobol_cards defined structure level 1 unaligned dcl 2-65 cobol_cln 162 based fixed bin(17,0) level 2 dcl 4-26 set ref 237* cobol_com_ptr defined pointer dcl 1-25 ref 173 237 cobol_comma_character defined char(1) packed unaligned dcl 2-33 set ref 116* cobol_continuation defined bit(1) packed unaligned dcl 2-78 set ref 94* cobol_copy_active defined bit(1) packed unaligned dcl 2-110 set ref 96* cobol_copy_found defined bit(1) packed unaligned dcl 2-92 set ref 95* cobol_current defined pointer dcl 2-10 set ref 144* 145 146 147 148 161 161 200 200 225 225 263* 264 265 266 267 cobol_db_phase$initialize 000036 constant entry external dcl 79 ref 138 cobol_debug_mode defined bit(1) packed unaligned dcl 2-102 set ref 97* cobol_decimal_point_character defined char(1) packed unaligned dcl 2-35 set ref 115* cobol_dp_sw defined bit(1) packed unaligned dcl 2-98 set ref 114* cobol_elnp_sw defined bit(1) packed unaligned dcl 2-96 set ref 99* cobol_elt_buf_ptr defined pointer dcl 2-24 set ref 112* cobol_elt_idx defined fixed bin(17,0) dcl 2-60 set ref 111* cobol_endprog_sw defined bit(1) packed unaligned dcl 2-100 set ref 109* 151* 157 196 222 271* cobol_ext_$cobol_com_ptr 000040 external static pointer dcl 1-24 ref 173 173 237 237 cobol_ext_$cobol_m1fp 000042 external static pointer dcl 1-30 ref 91 91 191 191 cobol_ext_$cobol_m2fp 000044 external static pointer dcl 1-32 set ref 171* 171 216 216 cobol_ext_$cobol_rwdd 000050 external static pointer dcl 1-72 ref 188 188 cobol_ext_$cobol_rwpd 000052 external static pointer dcl 1-74 ref 212 212 cobol_ext_$cobol_sfp 000046 external static pointer dcl 1-56 set ref 270* 270 cobol_ext_$report_exists 000054 external static bit(1) packed unaligned dcl 1-102 ref 178 178 cobol_ext_lex$cobol_allo_init_sw 000132 external static bit(1) packed unaligned dcl 2-81 set ref 108* 108 cobol_ext_lex$cobol_c_l_n 000112 external static fixed bin(17,0) dcl 2-47 set ref 113* 113 237 237 cobol_ext_lex$cobol_comma_character 000076 external static char(1) packed unaligned dcl 2-32 set ref 116* 116 cobol_ext_lex$cobol_continuation 000126 external static bit(1) packed unaligned dcl 2-77 set ref 94* 94 cobol_ext_lex$cobol_copy_active 000166 external static bit(1) packed unaligned dcl 2-109 set ref 96* 96 cobol_ext_lex$cobol_copy_found 000144 external static bit(1) packed unaligned dcl 2-91 set ref 95* 95 cobol_ext_lex$cobol_current 000056 external static pointer dcl 2-9 set ref 144* 144 145 145 146 146 147 147 148 148 161 161 161 161 200 200 200 200 225 225 225 225 263* 263 264 264 265 265 266 266 267 267 cobol_ext_lex$cobol_debug_mode 000156 external static bit(1) packed unaligned dcl 2-101 set ref 97* 97 cobol_ext_lex$cobol_decimal_point_character 000100 external static char(1) packed unaligned dcl 2-34 set ref 115* 115 cobol_ext_lex$cobol_dp_sw 000152 external static bit(1) packed unaligned dcl 2-97 set ref 114* 114 cobol_ext_lex$cobol_elnp_sw 000150 external static bit(1) packed unaligned dcl 2-95 set ref 99* 99 cobol_ext_lex$cobol_elt_buf_ptr 000070 external static pointer dcl 2-23 set ref 112* 112 cobol_ext_lex$cobol_elt_idx 000120 external static fixed bin(17,0) dcl 2-59 set ref 111* 111 cobol_ext_lex$cobol_endprog_sw 000154 external static bit(1) packed unaligned dcl 2-99 set ref 109* 109 151* 151 157 157 196 196 222 222 271* 271 cobol_ext_lex$cobol_frst 000062 external static pointer dcl 2-13 set ref 149* 149 268* 268 cobol_ext_lex$cobol_head_words 000146 external static bit(1) array packed unaligned dcl 2-93 set ref 124* 124 183* 183 209* 209 cobol_ext_lex$cobol_init_ta_sw 000162 external static bit(1) packed unaligned dcl 2-105 set ref 105* 105 cobol_ext_lex$cobol_lex_exit 000072 external static label variable dcl 2-25 set ref 106* 106 192* 192 217* 217 cobol_ext_lex$cobol_ln_sw 000170 external static bit(1) array packed unaligned dcl 2-111 set ref 129* 129 cobol_ext_lex$cobol_lu_sw 000134 external static bit(1) packed unaligned dcl 2-83 set ref 100* 100 cobol_ext_lex$cobol_mfp 000064 external static pointer dcl 2-15 set ref 91* 91 171 171 191* 191 216* 216 cobol_ext_lex$cobol_name_number 000114 external static fixed bin(17,0) dcl 2-53 set ref 119* 119 cobol_ext_lex$cobol_new_line_character 000102 external static char(1) packed unaligned dcl 2-36 ref 121 121 cobol_ext_lex$cobol_output_sw 000140 external static bit(1) packed unaligned dcl 2-87 set ref 102* 102 182* 182 215* 215 cobol_ext_lex$cobol_pic_switch 000130 external static bit(1) packed unaligned dcl 2-79 set ref 107* 107 cobol_ext_lex$cobol_prime_sw 000172 external static bit(1) packed unaligned dcl 2-113 set ref 92* 92 cobol_ext_lex$cobol_progid_sw 000176 external static bit(1) packed unaligned dcl 2-117 set ref 110* 110 cobol_ext_lex$cobol_rec1_sw 000174 external static bit(1) array packed unaligned dcl 2-115 set ref 128* 128 cobol_ext_lex$cobol_rep_sw 000164 external static bit(1) packed unaligned dcl 2-107 set ref 103* 103 cobol_ext_lex$cobol_rwt_init_sw 000160 external static bit(1) packed unaligned dcl 2-103 set ref 98* 98 cobol_ext_lex$cobol_scanoff_sw 000136 external static bit(1) packed unaligned dcl 2-85 set ref 101* 101 cobol_ext_lex$cobol_section_number 000116 external static fixed bin(17,0) dcl 2-55 set ref 120* 120 cobol_ext_lex$cobol_si_key 000104 external static char(5) packed unaligned dcl 2-38 set ref 117* 117 cobol_ext_lex$cobol_so_key 000106 external static char(5) packed unaligned dcl 2-40 set ref 118* 118 cobol_ext_lex$cobol_stack_sw 000142 external static bit(1) packed unaligned dcl 2-89 set ref 93* 93 cobol_ext_lex$cobol_ta_ptr 000066 external static pointer dcl 2-21 set ref 143* 143 144 144 149 149 150 150 263 263 268 268 269 269 cobol_ext_lex$cobol_tarea 000074 external static char(300) packed unaligned dcl 2-30 ref 143 143 cobol_ext_lex$cobol_top 000060 external static pointer dcl 2-11 set ref 150* 150 269* 269 cobol_ext_lex$ph_num 000110 external static fixed bin(17,0) dcl 2-45 set ref 190* 190 214* 214 cobol_ext_lex$processing_report 000122 external static bit(1) packed unaligned dcl 2-73 set ref 153* 153 181* 181 cobol_ext_lex$real_end_report 000124 external static bit(1) packed unaligned dcl 2-75 set ref 152* 152 218* 218 cobol_frst defined pointer dcl 2-14 set ref 149* 268* cobol_gns 000014 constant entry external dcl 57 ref 159 198 224 cobol_gns$init_tok_string 000022 constant entry external dcl 67 ref 133 cobol_gns$initialize 000032 constant entry external dcl 75 ref 136 cobol_head_words defined bit(1) array packed unaligned dcl 2-94 set ref 124* 183* 209* cobol_init_ta_sw defined bit(1) packed unaligned dcl 2-106 set ref 105* cobol_io_$initialize 000024 constant entry external dcl 69 ref 134 cobol_lex_exit defined label variable dcl 2-26 set ref 106* 192* 217* cobol_ln_sw defined bit(1) array packed unaligned dcl 2-112 set ref 129* cobol_lu_sw defined bit(1) packed unaligned dcl 2-84 set ref 100* cobol_m1fp defined pointer dcl 1-31 ref 91 191 cobol_m2fp defined pointer dcl 1-33 set ref 171* 216 cobol_merge 000010 constant entry external dcl 55 ref 155 194 220 cobol_merge$initialize 000034 constant entry external dcl 77 ref 137 cobol_merge$source_file_size 000206 constant entry external dcl 251 ref 285 cobol_mfp defined pointer dcl 2-16 set ref 91* 171 191* 216* cobol_name_number defined fixed bin(17,0) dcl 2-54 set ref 119* cobol_new_line_character defined char(1) packed unaligned dcl 2-37 set ref 121* cobol_output_sw defined bit(1) packed unaligned dcl 2-88 set ref 102* 182* 215* cobol_output_tokens 000020 constant entry external dcl 59 ref 168 206 231 cobol_output_tokens$initialize 000026 constant entry external dcl 71 ref 135 cobol_pic_switch defined bit(1) packed unaligned dcl 2-80 set ref 107* cobol_prime_sw defined bit(1) packed unaligned dcl 2-114 set ref 92* cobol_progid_sw defined bit(1) packed unaligned dcl 2-118 set ref 110* cobol_rec1_sw defined bit(1) array packed unaligned dcl 2-116 set ref 128* cobol_rep_sw defined bit(1) packed unaligned dcl 2-108 set ref 103* cobol_report_writer 000012 constant entry external dcl 56 ref 185 cobol_res_words 000016 constant entry external dcl 58 ref 161 200 225 cobol_res_words$initialize 000030 constant entry external dcl 73 ref 141 cobol_rwdd defined pointer dcl 1-73 set ref 188* cobol_rwpd defined pointer dcl 1-75 set ref 212* cobol_rwt_init_sw defined bit(1) packed unaligned dcl 2-104 set ref 98* cobol_scanoff_sw defined bit(1) packed unaligned dcl 2-86 set ref 101* cobol_section_number defined fixed bin(17,0) dcl 2-56 set ref 120* cobol_sfp defined pointer dcl 1-57 set ref 270* cobol_si_key defined char(5) packed unaligned dcl 2-39 set ref 117* cobol_so_key defined char(5) packed unaligned dcl 2-41 set ref 118* cobol_stack_sw defined bit(1) packed unaligned dcl 2-90 set ref 93* cobol_ta_ptr defined pointer dcl 2-22 set ref 143* 144 149 150 263 268 269 cobol_tarea defined char(300) packed unaligned dcl 2-31 set ref 143 cobol_top defined pointer dcl 2-12 set ref 150* 269* code 000350 automatic fixed bin(35,0) dcl 256 set ref 273* 276 279* dn_1 000266 automatic char(168) packed unaligned dcl 254 set ref 273* 279* elt_buf 000101 automatic char(440) packed unaligned dcl 62 set ref 112 en_1 000340 automatic char(32) packed unaligned dcl 254 set ref 273* 279* fatal_no 20 based fixed bin(17,0) level 2 dcl 4-26 ref 173 fixed_common based structure level 1 unaligned dcl 4-26 fwd_link based pointer level 2 dcl 38 set ref 145* 264* hcs_$fs_get_path_name 000202 constant entry external dcl 246 ref 273 hcs_$initiate_count 000204 constant entry external dcl 249 ref 279 l_info 6 based bit(8) level 2 packed packed unaligned dcl 38 set ref 148* 161 200 225 267* ldn 000351 automatic fixed bin(17,0) dcl 256 set ref 273* null builtin function dcl 63 ref 145 146 147 264 265 266 282 p parameter pointer dcl 245 set ref 241 270 273* ph_num defined fixed bin(17,0) dcl 2-46 set ref 190* 214* phoney 000100 automatic fixed bin(17,0) dcl 54 set ref 123* 124* 127* 128 129* processing_report defined bit(1) packed unaligned dcl 2-74 set ref 153* 181* real_end_report defined bit(1) packed unaligned dcl 2-76 set ref 152* 218* rep_link 4 based pointer level 2 dcl 38 set ref 147* 266* report_exists defined bit(1) packed unaligned dcl 1-103 ref 178 reserved_word based structure level 1 unaligned dcl 38 s_ptr 000352 automatic pointer dcl 258 set ref 279* 282 substr builtin function dcl 63 ref 161 200 225 type 12 based fixed bin(17,0) level 2 dcl 38 ref 161 200 225 unspec builtin function dcl 63 set ref 121* NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. allo1_max defined fixed bin(17,0) dcl 3-171 allo1_ptr defined pointer dcl 3-67 alter_flag defined fixed bin(17,0) dcl 3-135 alter_index defined fixed bin(17,0) dcl 3-153 alter_list_ptr defined pointer dcl 3-39 cd_cnt defined fixed bin(17,0) dcl 3-197 cobol_$allo1_max external static fixed bin(17,0) dcl 3-170 cobol_$allo1_ptr external static pointer dcl 3-66 cobol_$alter_flag external static fixed bin(17,0) dcl 3-134 cobol_$alter_index external static fixed bin(17,0) dcl 3-152 cobol_$alter_list_ptr external static pointer dcl 3-38 cobol_$cd_cnt external static fixed bin(17,0) dcl 3-196 cobol_$cobol_data_wd_off external static fixed bin(17,0) dcl 3-118 cobol_$compile_count external static fixed bin(17,0) dcl 3-142 cobol_$coms_charcnt external static fixed bin(17,0) dcl 3-188 cobol_$coms_wdoff external static fixed bin(17,0) dcl 3-202 cobol_$con_end_ptr external static pointer dcl 3-10 cobol_$con_wd_off external static fixed bin(17,0) dcl 3-92 cobol_$cons_charcnt external static fixed bin(17,0) dcl 3-192 cobol_$constant_offset external static fixed bin(17,0) dcl 3-156 cobol_$data_init_flag external static fixed bin(17,0) dcl 3-130 cobol_$debug_enable external static fixed bin(17,0) dcl 3-174 cobol_$def_base_ptr external static pointer dcl 3-12 cobol_$def_max external static fixed bin(17,0) dcl 3-96 cobol_$def_wd_off external static fixed bin(17,0) dcl 3-94 cobol_$diag_ptr external static pointer dcl 3-70 cobol_$eln_max external static fixed bin(17,0) dcl 3-172 cobol_$eln_ptr external static pointer dcl 3-68 cobol_$fixup_max external static fixed bin(17,0) dcl 3-164 cobol_$fixup_ptr external static pointer dcl 3-30 cobol_$fs_charcnt external static fixed bin(17,0) dcl 3-184 cobol_$fs_wdoff external static fixed bin(17,0) dcl 3-198 cobol_$include_cnt external static fixed bin(17,0) dcl 3-182 cobol_$include_info_ptr external static pointer dcl 3-86 cobol_$init_stack_off external static fixed bin(17,0) dcl 3-124 cobol_$initval_base_ptr external static pointer dcl 3-32 cobol_$initval_file_ptr external static pointer dcl 3-34 cobol_$initval_flag external static fixed bin(17,0) dcl 3-178 cobol_$link_base_ptr external static pointer dcl 3-14 cobol_$link_max external static fixed bin(17,0) dcl 3-100 cobol_$link_wd_off external static fixed bin(17,0) dcl 3-98 cobol_$list_off external static fixed bin(17,0) dcl 3-154 cobol_$list_ptr external static pointer dcl 3-64 cobol_$ls_charcnt external static fixed bin(17,0) dcl 3-190 cobol_$main_pcs_ptr external static pointer dcl 3-84 cobol_$map_data_max external static fixed bin(17,0) dcl 3-162 cobol_$map_data_ptr external static pointer dcl 3-54 cobol_$max_stack_off external static fixed bin(17,0) dcl 3-122 cobol_$minpral5_ptr external static pointer dcl 3-50 cobol_$misc_base_ptr external static pointer dcl 3-60 cobol_$misc_end_ptr external static pointer dcl 3-62 cobol_$misc_max external static fixed bin(17,0) dcl 3-158 cobol_$next_tag external static fixed bin(17,0) dcl 3-128 cobol_$non_source_offset external static fixed bin(17,0) dcl 3-176 cobol_$ntbuf_ptr external static pointer dcl 3-82 cobol_$obj_seg_name external static char(32) dcl 3-208 cobol_$op_con_ptr external static pointer dcl 3-80 cobol_$para_eop_flag external static fixed bin(17,0) dcl 3-138 cobol_$pd_map_index external static fixed bin(17,0) dcl 3-116 cobol_$pd_map_max external static fixed bin(17,0) dcl 3-160 cobol_$pd_map_ptr external static pointer dcl 3-28 cobol_$pd_map_sw external static fixed bin(17,0) dcl 3-126 cobol_$perform_list_ptr external static pointer dcl 3-36 cobol_$perform_para_index external static fixed bin(17,0) dcl 3-148 cobol_$perform_sect_index external static fixed bin(17,0) dcl 3-150 cobol_$priority_no external static fixed bin(17,0) dcl 3-140 cobol_$ptr_assumption_ind external static fixed bin(17,0) dcl 3-144 cobol_$ptr_status_ptr external static pointer dcl 3-56 cobol_$reg_assumption_ind external static fixed bin(17,0) dcl 3-146 cobol_$reg_status_ptr external static pointer dcl 3-58 cobol_$reloc_def_base_ptr external static pointer dcl 3-20 cobol_$reloc_def_max external static fixed bin(24,0) dcl 3-108 cobol_$reloc_link_base_ptr external static pointer dcl 3-22 cobol_$reloc_link_max external static fixed bin(24,0) dcl 3-110 cobol_$reloc_sym_base_ptr external static pointer dcl 3-24 cobol_$reloc_sym_max external static fixed bin(24,0) dcl 3-112 cobol_$reloc_text_base_ptr external static pointer dcl 3-18 cobol_$reloc_text_max external static fixed bin(24,0) dcl 3-106 cobol_$reloc_work_base_ptr external static pointer dcl 3-26 cobol_$reloc_work_max external static fixed bin(24,0) dcl 3-114 cobol_$reswd_ptr external static pointer dcl 3-78 cobol_$same_sort_merge_proc external static bit(1) dcl 3-214 cobol_$scratch_dir external static char(168) dcl 3-206 cobol_$sect_eop_flag external static fixed bin(17,0) dcl 3-136 cobol_$seg_init_flag external static fixed bin(17,0) dcl 3-132 cobol_$seg_init_list_ptr external static pointer dcl 3-40 cobol_$stack_off external static fixed bin(17,0) dcl 3-120 cobol_$statement_info_ptr external static pointer dcl 3-76 cobol_$sym_base_ptr external static pointer dcl 3-16 cobol_$sym_max external static fixed bin(17,0) dcl 3-104 cobol_$sym_wd_off external static fixed bin(17,0) dcl 3-102 cobol_$tag_table_max external static fixed bin(17,0) dcl 3-166 cobol_$tag_table_ptr external static pointer dcl 3-52 cobol_$temp_token_area_ptr external static pointer dcl 3-42 cobol_$temp_token_max external static fixed bin(17,0) dcl 3-168 cobol_$temp_token_ptr external static pointer dcl 3-44 cobol_$text_base_ptr external static pointer dcl 3-8 cobol_$text_wd_off external static fixed bin(17,0) dcl 3-90 cobol_$token_block1_ptr external static pointer dcl 3-46 cobol_$token_block2_ptr external static pointer dcl 3-48 cobol_$value_cnt external static fixed bin(17,0) dcl 3-194 cobol_$ws_charcnt external static fixed bin(17,0) dcl 3-186 cobol_$ws_wdoff external static fixed bin(17,0) dcl 3-200 cobol_$xref_bypass external static bit(1) dcl 3-212 cobol_$xref_chain_ptr external static pointer dcl 3-74 cobol_$xref_token_ptr external static pointer dcl 3-72 cobol_afp defined pointer dcl 1-11 cobol_analin_fileno defined pointer dcl 1-13 cobol_cfp defined pointer dcl 2-20 cobol_cmfp defined pointer dcl 1-21 cobol_com_fileno defined pointer dcl 1-23 cobol_curr_in defined pointer dcl 1-53 cobol_curr_out defined pointer dcl 1-55 cobol_data_wd_off defined fixed bin(17,0) dcl 3-119 cobol_dfp defined pointer dcl 1-27 cobol_eltp defined pointer dcl 1-19 cobol_ext_$cobol_afp external static pointer dcl 1-10 cobol_ext_$cobol_analin_fileno external static pointer dcl 1-12 cobol_ext_$cobol_cmfp external static pointer dcl 1-20 cobol_ext_$cobol_com_fileno external static pointer dcl 1-22 cobol_ext_$cobol_curr_in external static pointer dcl 1-52 cobol_ext_$cobol_curr_out external static pointer dcl 1-54 cobol_ext_$cobol_dfp external static pointer dcl 1-26 cobol_ext_$cobol_eltp external static pointer dcl 1-18 cobol_ext_$cobol_fileno1 external static fixed bin(24,0) dcl 1-78 cobol_ext_$cobol_hfp external static pointer dcl 1-28 cobol_ext_$cobol_lpr external static char(5) packed unaligned dcl 1-95 cobol_ext_$cobol_min1_fileno external static pointer dcl 1-34 cobol_ext_$cobol_min2_fileno_ptr external static pointer dcl 1-36 cobol_ext_$cobol_name_fileno external static pointer dcl 1-38 cobol_ext_$cobol_name_fileno_ptr external static pointer dcl 1-40 cobol_ext_$cobol_ntfp external static pointer dcl 1-42 cobol_ext_$cobol_options external static char(120) packed unaligned dcl 1-97 cobol_ext_$cobol_options_len external static fixed bin(24,0) dcl 1-80 cobol_ext_$cobol_pdofp external static pointer dcl 1-44 cobol_ext_$cobol_pdout_fileno external static fixed bin(24,0) dcl 1-82 cobol_ext_$cobol_pfp external static pointer dcl 1-46 cobol_ext_$cobol_print_fileno external static fixed bin(24,0) dcl 1-84 cobol_ext_$cobol_rm2fp external static pointer dcl 1-48 cobol_ext_$cobol_rmin2_fileno external static fixed bin(24,0) dcl 1-86 cobol_ext_$cobol_rmin2fp external static pointer dcl 1-50 cobol_ext_$cobol_w1p external static pointer dcl 1-58 cobol_ext_$cobol_w2p external static pointer dcl 1-60 cobol_ext_$cobol_w3p external static pointer dcl 1-62 cobol_ext_$cobol_w5p external static pointer dcl 1-64 cobol_ext_$cobol_w6p external static pointer dcl 1-66 cobol_ext_$cobol_w7p external static pointer dcl 1-68 cobol_ext_$cobol_x1_fileno external static fixed bin(24,0) dcl 1-88 cobol_ext_$cobol_x2_fileno external static fixed bin(24,0) dcl 1-90 cobol_ext_$cobol_x3_fileno external static fixed bin(24,0) dcl 1-92 cobol_ext_$cobol_x3fp external static pointer dcl 1-70 cobol_ext_$cobol_xlast8 external static bit(1) packed unaligned dcl 1-100 cobol_ext_$report_first_token external static pointer dcl 1-14 cobol_ext_$report_last_token external static pointer dcl 1-16 cobol_ext_lex$cobol_cards external static structure level 1 unaligned dcl 2-64 cobol_ext_lex$cobol_cfp external static pointer dcl 2-19 cobol_ext_lex$cobol_rt_ptr external static pointer dcl 2-17 cobol_ext_lex$cobol_save_cln external static fixed bin(17,0) dcl 2-49 cobol_ext_lex$cobol_save_col external static fixed bin(17,0) dcl 2-51 cobol_ext_lex$cobol_sr external static fixed bin(17,0) dcl 2-57 cobol_fileno1 defined fixed bin(24,0) dcl 1-79 cobol_hfp defined pointer dcl 1-29 cobol_lpr defined char(5) packed unaligned dcl 1-96 cobol_min1_fileno defined pointer dcl 1-35 cobol_min2_fileno_ptr defined pointer dcl 1-37 cobol_name_fileno defined pointer dcl 1-39 cobol_name_fileno_ptr defined pointer dcl 1-41 cobol_ntfp defined pointer dcl 1-43 cobol_options defined char(120) packed unaligned dcl 1-98 cobol_options_len defined fixed bin(24,0) dcl 1-81 cobol_pdofp defined pointer dcl 1-45 cobol_pdout_fileno defined fixed bin(24,0) dcl 1-83 cobol_pfp defined pointer dcl 1-47 cobol_print_fileno defined fixed bin(24,0) dcl 1-85 cobol_rm2fp defined pointer dcl 1-49 cobol_rmin2_fileno defined fixed bin(24,0) dcl 1-87 cobol_rmin2fp defined pointer dcl 1-51 cobol_rt_ptr defined pointer dcl 2-18 cobol_save_cln defined fixed bin(17,0) dcl 2-50 cobol_save_col defined fixed bin(17,0) dcl 2-52 cobol_sr defined fixed bin(17,0) dcl 2-58 cobol_swf_put 000000 constant entry external dcl 60 cobol_w1p defined pointer dcl 1-59 cobol_w2p defined pointer dcl 1-61 cobol_w3p defined pointer dcl 1-63 cobol_w5p defined pointer dcl 1-65 cobol_w6p defined pointer dcl 1-67 cobol_w7p defined pointer dcl 1-69 cobol_x1_fileno defined fixed bin(24,0) dcl 1-89 cobol_x2_fileno defined fixed bin(24,0) dcl 1-91 cobol_x3_fileno defined fixed bin(24,0) dcl 1-93 cobol_x3fp defined pointer dcl 1-71 cobol_xlast8 defined bit(1) packed unaligned dcl 1-101 compile_count defined fixed bin(17,0) dcl 3-143 coms_charcnt defined fixed bin(17,0) dcl 3-189 coms_wdoff defined fixed bin(17,0) dcl 3-203 con_end_ptr defined pointer dcl 3-11 con_wd_off defined fixed bin(17,0) dcl 3-93 cons_charcnt defined fixed bin(17,0) dcl 3-193 constant_offset defined fixed bin(17,0) dcl 3-157 data_init_flag defined fixed bin(17,0) dcl 3-131 date_compiled_sw defined fixed bin(17,0) dcl 3-181 debug_enable defined fixed bin(17,0) dcl 3-175 def_base_ptr defined pointer dcl 3-13 def_max defined fixed bin(17,0) dcl 3-97 def_wd_off defined fixed bin(17,0) dcl 3-95 diag_ptr defined pointer dcl 3-71 eln_max defined fixed bin(17,0) dcl 3-173 eln_ptr defined pointer dcl 3-69 fixup_max defined fixed bin(17,0) dcl 3-165 fixup_ptr defined pointer dcl 3-31 fs_charcnt defined fixed bin(17,0) dcl 3-185 fs_wdoff defined fixed bin(17,0) dcl 3-199 include_cnt defined fixed bin(17,0) dcl 3-183 include_info_ptr defined pointer dcl 3-87 init_stack_off defined fixed bin(17,0) dcl 3-125 initval_base_ptr defined pointer dcl 3-33 initval_file_ptr defined pointer dcl 3-35 initval_flag defined fixed bin(17,0) dcl 3-179 link_base_ptr defined pointer dcl 3-15 link_max defined fixed bin(17,0) dcl 3-101 link_wd_off defined fixed bin(17,0) dcl 3-99 list_off defined fixed bin(17,0) dcl 3-155 list_ptr defined pointer dcl 3-65 ls_charcnt defined fixed bin(17,0) dcl 3-191 main_pcs_ptr defined pointer dcl 3-85 map_data_max defined fixed bin(17,0) dcl 3-163 map_data_ptr defined pointer dcl 3-55 max_stack_off defined fixed bin(17,0) dcl 3-123 minpral5_ptr defined pointer dcl 3-51 misc_base_ptr defined pointer dcl 3-61 misc_end_ptr defined pointer dcl 3-63 misc_max defined fixed bin(17,0) dcl 3-159 next_tag defined fixed bin(17,0) dcl 3-129 non_source_offset defined fixed bin(17,0) dcl 3-177 ntbuf_ptr defined pointer dcl 3-83 obj_seg_name defined char(32) dcl 3-209 op_con_ptr defined pointer dcl 3-81 para_eop_flag defined fixed bin(17,0) dcl 3-139 pd_map_index defined fixed bin(17,0) dcl 3-117 pd_map_max defined fixed bin(17,0) dcl 3-161 pd_map_ptr defined pointer dcl 3-29 pd_map_sw defined fixed bin(17,0) dcl 3-127 perform_list_ptr defined pointer dcl 3-37 perform_para_index defined fixed bin(17,0) dcl 3-149 perform_sect_index defined fixed bin(17,0) dcl 3-151 priority_no defined fixed bin(17,0) dcl 3-141 ptr_assumption_ind defined fixed bin(17,0) dcl 3-145 ptr_status_ptr defined pointer dcl 3-57 reg_assumption_ind defined fixed bin(17,0) dcl 3-147 reg_status_ptr defined pointer dcl 3-59 reloc_def_base_ptr defined pointer dcl 3-21 reloc_def_max defined fixed bin(24,0) dcl 3-109 reloc_link_base_ptr defined pointer dcl 3-23 reloc_link_max defined fixed bin(24,0) dcl 3-111 reloc_sym_base_ptr defined pointer dcl 3-25 reloc_sym_max defined fixed bin(24,0) dcl 3-113 reloc_text_base_ptr defined pointer dcl 3-19 reloc_text_max defined fixed bin(24,0) dcl 3-107 reloc_work_base_ptr defined pointer dcl 3-27 reloc_work_max defined fixed bin(24,0) dcl 3-115 report_first_token defined pointer dcl 1-15 report_last_token defined pointer dcl 1-17 reswd_ptr defined pointer dcl 3-79 rw 000000 constant entry external dcl 81 same_sort_merge_proc defined bit(1) dcl 3-215 scratch_dir defined char(168) dcl 3-207 sect_eop_flag defined fixed bin(17,0) dcl 3-137 seg_init_flag defined fixed bin(17,0) dcl 3-133 seg_init_list_ptr defined pointer dcl 3-41 st automatic bit(32) packed unaligned dcl 61 stack_off defined fixed bin(17,0) dcl 3-121 statement_info_ptr defined pointer dcl 3-77 sym_base_ptr defined pointer dcl 3-17 sym_max defined fixed bin(17,0) dcl 3-105 sym_wd_off defined fixed bin(17,0) dcl 3-103 tag_table_max defined fixed bin(17,0) dcl 3-167 tag_table_ptr defined pointer dcl 3-53 temp_token_area_ptr defined pointer dcl 3-43 temp_token_max defined fixed bin(17,0) dcl 3-169 temp_token_ptr defined pointer dcl 3-45 text_base_ptr defined pointer dcl 3-9 text_wd_off defined fixed bin(17,0) dcl 3-91 token_block1_ptr defined pointer dcl 3-47 token_block2_ptr defined pointer dcl 3-49 value_cnt defined fixed bin(17,0) dcl 3-195 ws_charcnt defined fixed bin(17,0) dcl 3-187 ws_wdoff defined fixed bin(17,0) dcl 3-201 xref_bypass defined bit(1) dcl 3-213 xref_chain_ptr defined pointer dcl 3-75 xref_token_ptr defined pointer dcl 3-73 NAMES DECLARED BY EXPLICIT CONTEXT. cobol_lex 000015 constant entry external dcl 31 err 000515 constant label dcl 289 ref 276 282 get_size 000516 constant entry internal dcl 241 ref 188 212 l_e1 000306 constant label dcl 168 ref 106 l_e2 000414 constant label dcl 206 ref 192 l_e3 000502 constant label dcl 231 ref 217 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 1630 2040 671 1640 Length 2424 671 210 347 736 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME cobol_lex 298 external procedure is an external procedure. get_size internal procedure shares stack frame of external procedure cobol_lex. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME cobol_lex 000100 phoney cobol_lex 000101 elt_buf cobol_lex 000266 dn_1 get_size 000340 en_1 get_size 000350 code get_size 000351 ldn get_size 000352 s_ptr get_size 000354 bc get_size THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out_desc call_ext_out return_mac ext_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. cobol_db_phase$initialize cobol_gns cobol_gns$init_tok_string cobol_gns$initialize cobol_io_$initialize cobol_merge cobol_merge$initialize cobol_merge$source_file_size cobol_output_tokens cobol_output_tokens$initialize cobol_report_writer cobol_res_words cobol_res_words$initialize hcs_$fs_get_path_name hcs_$initiate_count THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. cobol_$date_compiled_sw cobol_ext_$cobol_com_ptr cobol_ext_$cobol_m1fp cobol_ext_$cobol_m2fp cobol_ext_$cobol_rwdd cobol_ext_$cobol_rwpd cobol_ext_$cobol_sfp cobol_ext_$report_exists cobol_ext_lex$cobol_allo_init_sw cobol_ext_lex$cobol_c_l_n cobol_ext_lex$cobol_comma_character cobol_ext_lex$cobol_continuation cobol_ext_lex$cobol_copy_active cobol_ext_lex$cobol_copy_found cobol_ext_lex$cobol_current cobol_ext_lex$cobol_debug_mode cobol_ext_lex$cobol_decimal_point_character cobol_ext_lex$cobol_dp_sw cobol_ext_lex$cobol_elnp_sw cobol_ext_lex$cobol_elt_buf_ptr cobol_ext_lex$cobol_elt_idx cobol_ext_lex$cobol_endprog_sw cobol_ext_lex$cobol_frst cobol_ext_lex$cobol_head_words cobol_ext_lex$cobol_init_ta_sw cobol_ext_lex$cobol_lex_exit cobol_ext_lex$cobol_ln_sw cobol_ext_lex$cobol_lu_sw cobol_ext_lex$cobol_mfp cobol_ext_lex$cobol_name_number cobol_ext_lex$cobol_new_line_character cobol_ext_lex$cobol_output_sw cobol_ext_lex$cobol_pic_switch cobol_ext_lex$cobol_prime_sw cobol_ext_lex$cobol_progid_sw cobol_ext_lex$cobol_rec1_sw cobol_ext_lex$cobol_rep_sw cobol_ext_lex$cobol_rwt_init_sw cobol_ext_lex$cobol_scanoff_sw cobol_ext_lex$cobol_section_number cobol_ext_lex$cobol_si_key cobol_ext_lex$cobol_so_key cobol_ext_lex$cobol_stack_sw cobol_ext_lex$cobol_ta_ptr cobol_ext_lex$cobol_tarea cobol_ext_lex$cobol_top cobol_ext_lex$ph_num cobol_ext_lex$processing_report cobol_ext_lex$real_end_report LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 31 000014 90 000022 91 000023 92 000026 93 000030 94 000032 95 000034 96 000036 97 000037 98 000040 99 000042 100 000044 101 000046 102 000050 103 000051 105 000052 106 000054 107 000060 108 000062 109 000064 110 000066 111 000067 112 000071 113 000073 114 000074 115 000075 116 000100 117 000103 118 000107 119 000113 120 000115 121 000116 123 000121 124 000125 125 000132 127 000134 128 000141 129 000146 130 000152 133 000154 134 000161 135 000166 136 000173 137 000200 138 000205 141 000212 143 000217 144 000222 145 000225 146 000230 147 000233 148 000236 149 000242 150 000245 151 000250 152 000252 153 000253 155 000254 157 000260 159 000264 161 000270 166 000305 168 000306 171 000313 173 000317 178 000323 181 000326 182 000330 183 000332 185 000334 188 000340 190 000347 191 000352 192 000355 194 000361 196 000365 198 000372 200 000376 204 000413 206 000414 209 000421 212 000424 214 000432 215 000435 216 000437 217 000442 218 000446 220 000450 222 000454 224 000460 225 000464 229 000501 231 000502 237 000507 239 000514 289 000515 241 000516 263 000520 264 000524 265 000527 266 000532 267 000535 268 000541 269 000544 270 000547 271 000552 273 000554 276 000604 279 000606 282 000651 285 000655 287 000664 ----------------------------------------------------------- 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