COMPILATION LISTING OF SEGMENT cobol_unstring_gen 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 0952.1 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_unstring_gen.pl1 Reformatted code to new Cobol standard. 19* END HISTORY COMMENTS */ 20 21 22 /* format: style3 */ 23 cobol_unstring_gen: 24 proc (mp_ptr, passed_tag); 25 26 dcl mp_ptr ptr; 27 dcl passed_tag fixed bin; 28 29 dcl 1 mp based (mp_ptr), 30 2 n fixed bin, 31 2 pt (0 refer (mp.n)) ptr; 32 33 dcl 1 u auto, 34 2 n fixed bin, 35 2 tag fixed bin, 36 2 stp ptr, /* pts to sending token */ 37 2 dptr ptr, /* pts to d struct - may be null */ 38 2 ptp ptr, /* pts to pointer token - may be null */ 39 2 ttp ptr, /* pts to tallying token - may be null */ 40 2 unstr (256), 41 3 rtp ptr, /* pts to receiving token(i) */ 42 3 dtp ptr, /* pts to delimiter token(i) - may be null */ 43 3 ctp ptr; /* pts to count token(i) - may be null */ 44 dcl 1 d auto, 45 2 n fixed bin, 46 2 all_cnt fixed bin, /* number of entries with ALL */ 47 2 delimiter (256), 48 3 dtp ptr, /* pts to delimited token */ 49 3 allsw fixed bin; /* 1 means ALL precedes delimiter */ 50 51 dcl (i, j, temp) fixed bin; 52 dcl delimiter_key fixed bin static init (91); 53 dcl count_key fixed bin static init (84); 54 dcl all_key fixed bin static init (73); 55 56 dcl dn_ptr ptr; 57 58 dcl cobol_unstring entry (ptr, ptr); 59 60 61 /*************************************/ 62 start: 63 eos_ptr = mp.pt (mp.n); 64 if end_stmt.b 65 then do; 66 passed_tag = cobol_$next_tag; 67 cobol_$next_tag = cobol_$next_tag + 1; 68 u.tag = passed_tag; 69 end; 70 else u.tag = 0; 71 72 u.stp = mp.pt (2); 73 74 j = 3; 75 if end_stmt.e > 0 76 then do; /* at least one operand after DELIMITED */ 77 u.dptr = addr (d); 78 d.all_cnt = 0; 79 d.n = end_stmt.e; 80 do i = 1 to d.n; 81 dn_ptr = mp.pt (j); 82 d.allsw (i) = 0; 83 if data_name.type = 1 84 then if dn_ptr -> reserved_word.key = all_key 85 then do; /*ALL */ 86 d.allsw (i) = 1; 87 d.all_cnt = d.all_cnt + 1; 88 j = j + 1; 89 end; 90 d.dtp (i) = mp.pt (j); 91 j = j + 1; 92 end; 93 end; 94 else u.dptr = null (); 95 96 u.n = end_stmt.h; 97 do i = 1 to u.n; 98 u.rtp (i) = mp.pt (j); 99 temp = j + 1; 100 if mp.pt (temp) -> data_name.type = 1 & mp.pt (temp) -> reserved_word.key = delimiter_key 101 then do; 102 j = j + 2; 103 u.dtp (i) = mp.pt (j); 104 end; 105 else u.dtp (i) = null (); 106 temp = j + 1; 107 if mp.pt (temp) -> data_name.type = 1 & mp.pt (temp) -> reserved_word.key = count_key 108 then do; 109 j = j + 2; 110 u.ctp (i) = mp.pt (j); 111 end; 112 else u.ctp (i) = null (); 113 j = j + 1; 114 end; 115 116 if end_stmt.d = "01"b 117 then u.ptp = mp.pt (j); 118 else u.ptp = null (); 119 if end_stmt.c = "1"b 120 then u.ttp = mp.pt (mp.n - 1); 121 else u.ttp = null (); 122 123 call cobol_unstring (addr (u), mp.pt (1)); 124 return; 125 126 127 /*************************************/ 128 129 /***** Declaration for builtin function *****/ 130 131 dcl (substr, mod, binary, fixed, addr, addrel, rel, length, string, unspec, null, index) 132 builtin; 133 134 /***** End of declaration for builtin function *****/ 135 1 1 1 2 /* BEGIN INCLUDE FILE ... cobol_type1.incl.pl1 */ 1 3 /* Last modified on 11/19/76 by ORN */ 1 4 1 5 /* 1 6*A reserved word token is created in the minpral files for each occurrence 1 7*of a reserved word in the source program. The value of the key field 1 8*indicates the specific reserved word which a type 1 token represents. 1 9**/ 1 10 1 11 dcl rw_ptr ptr; 1 12 1 13 /* BEGIN DECLARATION OF TYPE1 (RESERVED WORD) TOKEN */ 1 14 dcl 1 reserved_word based (rw_ptr), 2 1 2 2 /* begin include file ... cobol_TYPE1.incl.pl1 */ 2 3 /* Last modified on 11/17/76 by ORN */ 2 4 /* Last modified on 12/28/76 by FCH */ 2 5 /* Last modified on 12/16/80 by FCH */ 2 6 2 7 /* header */ 2 8 2 size fixed bin, 2 9 2 line fixed bin, 2 10 2 column fixed bin, 2 11 2 type fixed bin, 2 12 /* body */ 2 13 2 key fixed bin, 2 14 /* procedure division class bits */ 2 15 2 verb bit (1), 2 16 2 arith_op bit (1), 2 17 2 figcon bit (1), 2 18 2 terminator bit (1), 2 19 2 end_dec bit (1), 2 20 2 rel_op bit (1), 2 21 2 imper_verb bit (1), 2 22 2 end_cobol bit (1), 2 23 /* data division class bits */ 2 24 2 section_header bit (1), 2 25 2 fs_ind bit (1), 2 26 2 fd_clause bit (1), 2 27 2 dd_clause bit (1), 2 28 2 cd_input bit (1), 2 29 2 cd_output bit (1), 2 30 2 cset_name bit (1), 2 31 2 ss_division bit (1), 2 32 2 repl_jump_ind bit (4), 2 33 2 ided_recovery bit (1), 2 34 2 report_writer bit (5), 2 35 2 ss_desc_entry bit (1), 2 36 2 jump_index fixed bin, 2 37 2 length fixed bin, 2 38 2 name char(0 refer(reserved_word.length)); 2 39 2 40 2 41 2 42 /* end include file ... cobol_TYPE1.incl.pl1 */ 2 43 1 15 1 16 /* END DECLARATION OF TYPE1 (RESERVED WORD) TOKEN */ 1 17 1 18 /* END INCLUDE FILE ... cobol_type1.incl.pl1 */ 1 19 136 3 1 3 2 /* BEGIN INCLUDE FILE ... cobol_type9.incl.pl1 */ 3 3 /* Last modified on 11/19/76 by ORN */ 3 4 3 5 /* 3 6*A type 9 data name token is entered into the name table by the data 3 7*division syntax phase for each data name described in the data division. 3 8*The replacement phase subsequently replaces type 8 user word references 3 9*to data names in the procedure division minpral file with the corresponding 3 10*type 9 tokens from the name table. 3 11**/ 3 12 3 13 /* dcl dn_ptr ptr; */ 3 14 3 15 /* BEGIN DECLARATION OF TYPE9 (DATA NAME) TOKEN */ 3 16 dcl 1 data_name based (dn_ptr), 4 1 4 2 /* begin include file ... cobol_TYPE9.incl.pl1 */ 4 3 /* Last modified on 06/19/77 by ORN */ 4 4 /* Last modified on 12/28/76 by FCH */ 4 5 4 6 /* header */ 4 7 2 size fixed bin, 4 8 2 line fixed bin, 4 9 2 column fixed bin, 4 10 2 type fixed bin, 4 11 /* body */ 4 12 2 string_ptr ptr, 4 13 2 prev_rec ptr, 4 14 2 searched bit (1), 4 15 2 duplicate bit (1), 4 16 2 saved bit (1), 4 17 2 debug_ind bit (1), 4 18 2 filler2 bit (3), 4 19 2 used_as_sub bit (1), 4 20 2 def_line fixed bin, 4 21 2 level fixed bin, 4 22 2 linkage fixed bin, 4 23 2 file_num fixed bin, 4 24 2 size_rtn fixed bin, 4 25 2 item_length fixed bin(24), 4 26 2 places_left fixed bin, 4 27 2 places_right fixed bin, 4 28 /* description */ 4 29 2 file_section bit (1), 4 30 2 working_storage bit (1), 4 31 2 constant_section bit (1), 4 32 2 linkage_section bit (1), 4 33 2 communication_section bit (1), 4 34 2 report_section bit (1), 4 35 2 level_77 bit (1), 4 36 2 level_01 bit (1), 4 37 2 non_elementary bit (1), 4 38 2 elementary bit (1), 4 39 2 filler_item bit (1), 4 40 2 s_of_rdf bit (1), 4 41 2 o_of_rdf bit (1), 4 42 2 bin_18 bit (1), 4 43 2 bin_36 bit (1), 4 44 2 pic_has_l bit (1), 4 45 2 pic_is_do bit (1), 4 46 2 numeric bit (1), 4 47 2 numeric_edited bit (1), 4 48 2 alphanum bit (1), 4 49 2 alphanum_edited bit (1), 4 50 2 alphabetic bit (1), 4 51 2 alphabetic_edited bit (1), 4 52 2 pic_has_p bit (1), 4 53 2 pic_has_ast bit (1), 4 54 2 item_signed bit(1), 4 55 2 sign_separate bit (1), 4 56 2 display bit (1), 4 57 2 comp bit (1), 4 58 2 ascii_packed_dec_h bit (1), /* as of 8/16/76 this field used for comp8. */ 4 59 2 ascii_packed_dec bit (1), 4 60 2 ebcdic_packed_dec bit (1), 4 61 2 bin_16 bit (1), 4 62 2 bin_32 bit (1), 4 63 2 usage_index bit (1), 4 64 2 just_right bit (1), 4 65 2 compare_argument bit (1), 4 66 2 sync bit (1), 4 67 2 temporary bit (1), 4 68 2 bwz bit (1), 4 69 2 variable_length bit (1), 4 70 2 subscripted bit (1), 4 71 2 occurs_do bit (1), 4 72 2 key_a bit (1), 4 73 2 key_d bit (1), 4 74 2 indexed_by bit (1), 4 75 2 value_numeric bit (1), 4 76 2 value_non_numeric bit (1), 4 77 2 value_signed bit (1), 4 78 2 sign_type bit (3), 4 79 2 pic_integer bit (1), 4 80 2 ast_when_zero bit (1), 4 81 2 label_record bit (1), 4 82 2 sign_clause_occurred bit (1), 4 83 2 okey_dn bit (1), 4 84 2 subject_of_keyis bit (1), 4 85 2 exp_redefining bit (1), 4 86 2 sync_in_rec bit (1), 4 87 2 rounded bit (1), 4 88 2 ad_bit bit (1), 4 89 2 debug_all bit (1), 4 90 2 overlap bit (1), 4 91 2 sum_counter bit (1), 4 92 2 exp_occurs bit (1), 4 93 2 linage_counter bit (1), 4 94 2 rnm_01 bit (1), 4 95 2 aligned bit (1), 4 96 2 not_user_writable bit (1), 4 97 2 database_key bit (1), 4 98 2 database_data_item bit (1), 4 99 2 seg_num fixed bin, 4 100 2 offset fixed bin(24), 4 101 2 initial_ptr fixed bin, 4 102 2 edit_ptr fixed bin, 4 103 2 occurs_ptr fixed bin, 4 104 2 do_rec char(5), 4 105 2 bitt bit (1), 4 106 2 byte bit (1), 4 107 2 half_word bit (1), 4 108 2 word bit (1), 4 109 2 double_word bit (1), 4 110 2 half_byte bit (1), 4 111 2 filler5 bit (1), 4 112 2 bit_offset bit (4), 4 113 2 son_cnt bit (16), 4 114 2 max_red_size fixed bin(24), 4 115 2 name_size fixed bin, 4 116 2 name char(0 refer(data_name.name_size)); 4 117 4 118 4 119 4 120 /* end include file ... cobol_TYPE9.incl.pl1 */ 4 121 3 17 3 18 /* END DECLARATION OF TYPE9 (DATA NAME) TOKEN */ 3 19 3 20 /* END INCLUDE FILE ... cobol_type9.incl.pl1 */ 3 21 137 5 1 5 2 /* BEGIN INCLUDE FILE ... cobol_type19.incl.pl1 */ 5 3 /* last modified on 11/19/76 by ORN */ 5 4 5 5 /* 5 6*A type 19 end of statement token is created in the procedure division 5 7*minpral file at the end of each minpral statement generated by the 5 8*procedure division syntax phase. A minpral statement may be a complete or 5 9*partial source language statement. A type 19 token contains information 5 10*describing the statement which it delimits. 5 11**/ 5 12 5 13 dcl eos_ptr ptr; 5 14 5 15 /* BEGIN DECLARATION OF TYPE19 (END STATEMENT) TOKEN */ 5 16 dcl 1 end_stmt based (eos_ptr), 6 1 6 2 /* begin include file ... cobol_TYPE19.incl.pl1 */ 6 3 /* Last modified on 11/17/76 by ORN */ 6 4 6 5 /* header */ 6 6 2 size fixed bin, 6 7 2 line fixed bin, 6 8 2 column fixed bin, 6 9 2 type fixed bin, 6 10 /* body */ 6 11 2 verb fixed bin, 6 12 2 e fixed bin, 6 13 2 h fixed bin, 6 14 2 i fixed bin, 6 15 2 j fixed bin, 6 16 2 a bit (3), 6 17 2 b bit (1), 6 18 2 c bit (1), 6 19 2 d bit (2), 6 20 2 f bit (2), 6 21 2 g bit (2), 6 22 2 k bit (5), 6 23 2 always_an bit (1); 6 24 6 25 /* end include file ... cobol_TYPE19.incl.pl1 */ 6 26 5 17 5 18 /* END DECLARATION OF TYPE19 (END STATEMENT) TOKEN */ 5 19 5 20 /* 5 21*FIELD CONTENTS 5 22* 5 23*size The total size in bytes of this end of statement token. 5 24*line 0 5 25*column 0 5 26*type 19 5 27*verb A value indicating the verb in this statement 5 28* 1 = accept 5 29* 2 = add 5 30* 3 = on size error 5 31* 4 = alter 5 32* 5 = call 5 33* 7 = cancel 5 34* 8 = close 5 35* 9 = divide 5 36* 10 = multiply 5 37* 11 = subtract 5 38* 12 = exit 5 39* 14 = go 5 40* 15 = merge 5 41* 16 = initiate 5 42* 17 = inspect 5 43* 18 = move 5 44* 19 = open 5 45* 20 = perform 5 46* 21 = read 5 47* 23 = receive 5 48* 24 = release 5 49* 25 = return 5 50* 26 = search 5 51* 27 = rewrite 5 52* 29 = seek 5 53* 30 = send 5 54* 31 = set 5 55* 33 = stop 5 56* 34 = string 5 57* 35 = suspend 5 58* 36 = terminate 5 59* 37 = unstring 5 60* 38 = write 5 61* 39 = use 5 62* 40 = compute 5 63* 41 = disable 5 64* 42 = display 5 65* 43 = enable 5 66* 45 = generate 5 67* 46 = hold 5 68* 48 = process 5 69* 49 = sort 5 70* 52 = procedure 5 71* 53 = declaratives 5 72* 54 = section name 5 73* 55 = paragraph name 5 74* 98 = end 5 75*e,h,i,j The significance of these fields differs with each 5 76* statement. These fields are normally used as counters. 5 77*a,b,c,d,f,g,k The significance of these fields differs with each 5 78* statement. These fields are normally used as indicators. 5 79**/ 5 80 5 81 /* END INCLUDE FILE ... cobol_type19.incl.pl1 */ 5 82 138 7 1 7 2 /* BEGIN INCLUDE FILE ... cobol_.incl.pl1 */ 7 3 /* last modified Feb 4, 1977 by ORN */ 7 4 7 5 /* This file defines all external data used in the generator phase of Multics Cobol */ 7 6 7 7 /* POINTERS */ 7 8 dcl cobol_$text_base_ptr ptr ext; 7 9 dcl text_base_ptr ptr defined (cobol_$text_base_ptr); 7 10 dcl cobol_$con_end_ptr ptr ext; 7 11 dcl con_end_ptr ptr defined (cobol_$con_end_ptr); 7 12 dcl cobol_$def_base_ptr ptr ext; 7 13 dcl def_base_ptr ptr defined (cobol_$def_base_ptr); 7 14 dcl cobol_$link_base_ptr ptr ext; 7 15 dcl link_base_ptr ptr defined (cobol_$link_base_ptr); 7 16 dcl cobol_$sym_base_ptr ptr ext; 7 17 dcl sym_base_ptr ptr defined (cobol_$sym_base_ptr); 7 18 dcl cobol_$reloc_text_base_ptr ptr ext; 7 19 dcl reloc_text_base_ptr ptr defined (cobol_$reloc_text_base_ptr); 7 20 dcl cobol_$reloc_def_base_ptr ptr ext; 7 21 dcl reloc_def_base_ptr ptr defined (cobol_$reloc_def_base_ptr); 7 22 dcl cobol_$reloc_link_base_ptr ptr ext; 7 23 dcl reloc_link_base_ptr ptr defined (cobol_$reloc_link_base_ptr); 7 24 dcl cobol_$reloc_sym_base_ptr ptr ext; 7 25 dcl reloc_sym_base_ptr ptr defined (cobol_$reloc_sym_base_ptr); 7 26 dcl cobol_$reloc_work_base_ptr ptr ext; 7 27 dcl reloc_work_base_ptr ptr defined (cobol_$reloc_work_base_ptr); 7 28 dcl cobol_$pd_map_ptr ptr ext; 7 29 dcl pd_map_ptr ptr defined (cobol_$pd_map_ptr); 7 30 dcl cobol_$fixup_ptr ptr ext; 7 31 dcl fixup_ptr ptr defined (cobol_$fixup_ptr); 7 32 dcl cobol_$initval_base_ptr ptr ext; 7 33 dcl initval_base_ptr ptr defined (cobol_$initval_base_ptr); 7 34 dcl cobol_$initval_file_ptr ptr ext; 7 35 dcl initval_file_ptr ptr defined (cobol_$initval_file_ptr); 7 36 dcl cobol_$perform_list_ptr ptr ext; 7 37 dcl perform_list_ptr ptr defined (cobol_$perform_list_ptr); 7 38 dcl cobol_$alter_list_ptr ptr ext; 7 39 dcl alter_list_ptr ptr defined (cobol_$alter_list_ptr); 7 40 dcl cobol_$seg_init_list_ptr ptr ext; 7 41 dcl seg_init_list_ptr ptr defined (cobol_$seg_init_list_ptr); 7 42 dcl cobol_$temp_token_area_ptr ptr ext; 7 43 dcl temp_token_area_ptr ptr defined (cobol_$temp_token_area_ptr); 7 44 dcl cobol_$temp_token_ptr ptr ext; 7 45 dcl temp_token_ptr ptr defined (cobol_$temp_token_ptr); 7 46 dcl cobol_$token_block1_ptr ptr ext; 7 47 dcl token_block1_ptr ptr defined (cobol_$token_block1_ptr); 7 48 dcl cobol_$token_block2_ptr ptr ext; 7 49 dcl token_block2_ptr ptr defined (cobol_$token_block2_ptr); 7 50 dcl cobol_$minpral5_ptr ptr ext; 7 51 dcl minpral5_ptr ptr defined (cobol_$minpral5_ptr); 7 52 dcl cobol_$tag_table_ptr ptr ext; 7 53 dcl tag_table_ptr ptr defined (cobol_$tag_table_ptr); 7 54 dcl cobol_$map_data_ptr ptr ext; 7 55 dcl map_data_ptr ptr defined (cobol_$map_data_ptr); 7 56 dcl cobol_$ptr_status_ptr ptr ext; 7 57 dcl ptr_status_ptr ptr defined (cobol_$ptr_status_ptr); 7 58 dcl cobol_$reg_status_ptr ptr ext; 7 59 dcl reg_status_ptr ptr defined (cobol_$reg_status_ptr); 7 60 dcl cobol_$misc_base_ptr ptr ext; 7 61 dcl misc_base_ptr ptr defined (cobol_$misc_base_ptr); 7 62 dcl cobol_$misc_end_ptr ptr ext; 7 63 dcl misc_end_ptr ptr defined (cobol_$misc_end_ptr); 7 64 dcl cobol_$list_ptr ptr ext; 7 65 dcl list_ptr ptr defined (cobol_$list_ptr); 7 66 dcl cobol_$allo1_ptr ptr ext; 7 67 dcl allo1_ptr ptr defined (cobol_$allo1_ptr); 7 68 dcl cobol_$eln_ptr ptr ext; 7 69 dcl eln_ptr ptr defined (cobol_$eln_ptr); 7 70 dcl cobol_$diag_ptr ptr ext; 7 71 dcl diag_ptr ptr defined (cobol_$diag_ptr); 7 72 dcl cobol_$xref_token_ptr ptr ext; 7 73 dcl xref_token_ptr ptr defined (cobol_$xref_token_ptr); 7 74 dcl cobol_$xref_chain_ptr ptr ext; 7 75 dcl xref_chain_ptr ptr defined (cobol_$xref_chain_ptr); 7 76 dcl cobol_$statement_info_ptr ptr ext; 7 77 dcl statement_info_ptr ptr defined (cobol_$statement_info_ptr); 7 78 dcl cobol_$reswd_ptr ptr ext; 7 79 dcl reswd_ptr ptr defined (cobol_$reswd_ptr); 7 80 dcl cobol_$op_con_ptr ptr ext; 7 81 dcl op_con_ptr ptr defined (cobol_$op_con_ptr); 7 82 dcl cobol_$ntbuf_ptr ptr ext; 7 83 dcl ntbuf_ptr ptr defined (cobol_$ntbuf_ptr); 7 84 dcl cobol_$main_pcs_ptr ptr ext; 7 85 dcl main_pcs_ptr ptr defined (cobol_$main_pcs_ptr); 7 86 dcl cobol_$include_info_ptr ptr ext; 7 87 dcl include_info_ptr ptr defined (cobol_$include_info_ptr); 7 88 7 89 /* FIXED BIN */ 7 90 dcl cobol_$text_wd_off fixed bin ext; 7 91 dcl text_wd_off fixed bin defined (cobol_$text_wd_off); 7 92 dcl cobol_$con_wd_off fixed bin ext; 7 93 dcl con_wd_off fixed bin defined (cobol_$con_wd_off); 7 94 dcl cobol_$def_wd_off fixed bin ext; 7 95 dcl def_wd_off fixed bin defined (cobol_$def_wd_off); 7 96 dcl cobol_$def_max fixed bin ext; 7 97 dcl def_max fixed bin defined (cobol_$def_max); 7 98 dcl cobol_$link_wd_off fixed bin ext; 7 99 dcl link_wd_off fixed bin defined (cobol_$link_wd_off); 7 100 dcl cobol_$link_max fixed bin ext; 7 101 dcl link_max fixed bin defined (cobol_$link_max); 7 102 dcl cobol_$sym_wd_off fixed bin ext; 7 103 dcl sym_wd_off fixed bin defined (cobol_$sym_wd_off); 7 104 dcl cobol_$sym_max fixed bin ext; 7 105 dcl sym_max fixed bin defined (cobol_$sym_max); 7 106 dcl cobol_$reloc_text_max fixed bin(24) ext; 7 107 dcl reloc_text_max fixed bin(24) defined (cobol_$reloc_text_max); 7 108 dcl cobol_$reloc_def_max fixed bin(24) ext; 7 109 dcl reloc_def_max fixed bin(24) defined (cobol_$reloc_def_max); 7 110 dcl cobol_$reloc_link_max fixed bin(24) ext; 7 111 dcl reloc_link_max fixed bin(24) defined (cobol_$reloc_link_max); 7 112 dcl cobol_$reloc_sym_max fixed bin(24) ext; 7 113 dcl reloc_sym_max fixed bin(24) defined (cobol_$reloc_sym_max); 7 114 dcl cobol_$reloc_work_max fixed bin(24) ext; 7 115 dcl reloc_work_max fixed bin(24) defined (cobol_$reloc_work_max); 7 116 dcl cobol_$pd_map_index fixed bin ext; 7 117 dcl pd_map_index fixed bin defined (cobol_$pd_map_index); 7 118 dcl cobol_$cobol_data_wd_off fixed bin ext; 7 119 dcl cobol_data_wd_off fixed bin defined (cobol_$cobol_data_wd_off); 7 120 dcl cobol_$stack_off fixed bin ext; 7 121 dcl stack_off fixed bin defined (cobol_$stack_off); 7 122 dcl cobol_$max_stack_off fixed bin ext; 7 123 dcl max_stack_off fixed bin defined (cobol_$max_stack_off); 7 124 dcl cobol_$init_stack_off fixed bin ext; 7 125 dcl init_stack_off fixed bin defined (cobol_$init_stack_off); 7 126 dcl cobol_$pd_map_sw fixed bin ext; 7 127 dcl pd_map_sw fixed bin defined (cobol_$pd_map_sw); 7 128 dcl cobol_$next_tag fixed bin ext; 7 129 dcl next_tag fixed bin defined (cobol_$next_tag); 7 130 dcl cobol_$data_init_flag fixed bin ext; 7 131 dcl data_init_flag fixed bin defined (cobol_$data_init_flag); 7 132 dcl cobol_$seg_init_flag fixed bin ext; 7 133 dcl seg_init_flag fixed bin defined (cobol_$seg_init_flag); 7 134 dcl cobol_$alter_flag fixed bin ext; 7 135 dcl alter_flag fixed bin defined (cobol_$alter_flag); 7 136 dcl cobol_$sect_eop_flag fixed bin ext; 7 137 dcl sect_eop_flag fixed bin defined (cobol_$sect_eop_flag); 7 138 dcl cobol_$para_eop_flag fixed bin ext; 7 139 dcl para_eop_flag fixed bin defined (cobol_$para_eop_flag); 7 140 dcl cobol_$priority_no fixed bin ext; 7 141 dcl priority_no fixed bin defined (cobol_$priority_no); 7 142 dcl cobol_$compile_count fixed bin ext; 7 143 dcl compile_count fixed bin defined (cobol_$compile_count); 7 144 dcl cobol_$ptr_assumption_ind fixed bin ext; 7 145 dcl ptr_assumption_ind fixed bin defined (cobol_$ptr_assumption_ind); 7 146 dcl cobol_$reg_assumption_ind fixed bin ext; 7 147 dcl reg_assumption_ind fixed bin defined (cobol_$reg_assumption_ind); 7 148 dcl cobol_$perform_para_index fixed bin ext; 7 149 dcl perform_para_index fixed bin defined (cobol_$perform_para_index); 7 150 dcl cobol_$perform_sect_index fixed bin ext; 7 151 dcl perform_sect_index fixed bin defined (cobol_$perform_sect_index); 7 152 dcl cobol_$alter_index fixed bin ext; 7 153 dcl alter_index fixed bin defined (cobol_$alter_index); 7 154 dcl cobol_$list_off fixed bin ext; 7 155 dcl list_off fixed bin defined (cobol_$list_off); 7 156 dcl cobol_$constant_offset fixed bin ext; 7 157 dcl constant_offset fixed bin defined (cobol_$constant_offset); 7 158 dcl cobol_$misc_max fixed bin ext; 7 159 dcl misc_max fixed bin defined (cobol_$misc_max); 7 160 dcl cobol_$pd_map_max fixed bin ext; 7 161 dcl pd_map_max fixed bin defined (cobol_$pd_map_max); 7 162 dcl cobol_$map_data_max fixed bin ext; 7 163 dcl map_data_max fixed bin defined (cobol_$map_data_max); 7 164 dcl cobol_$fixup_max fixed bin ext; 7 165 dcl fixup_max fixed bin defined (cobol_$fixup_max); 7 166 dcl cobol_$tag_table_max fixed bin ext; 7 167 dcl tag_table_max fixed bin defined (cobol_$tag_table_max); 7 168 dcl cobol_$temp_token_max fixed bin ext; 7 169 dcl temp_token_max fixed bin defined (cobol_$temp_token_max); 7 170 dcl cobol_$allo1_max fixed bin ext; 7 171 dcl allo1_max fixed bin defined (cobol_$allo1_max); 7 172 dcl cobol_$eln_max fixed bin ext; 7 173 dcl eln_max fixed bin defined (cobol_$eln_max); 7 174 dcl cobol_$debug_enable fixed bin ext; 7 175 dcl debug_enable fixed bin defined (cobol_$debug_enable); 7 176 dcl cobol_$non_source_offset fixed bin ext; 7 177 dcl non_source_offset fixed bin defined (cobol_$non_source_offset); 7 178 dcl cobol_$initval_flag fixed bin ext; 7 179 dcl initval_flag fixed bin defined (cobol_$initval_flag); 7 180 dcl cobol_$date_compiled_sw fixed bin ext; 7 181 dcl date_compiled_sw fixed bin defined (cobol_$date_compiled_sw); 7 182 dcl cobol_$include_cnt fixed bin ext; 7 183 dcl include_cnt fixed bin defined (cobol_$include_cnt); 7 184 dcl cobol_$fs_charcnt fixed bin ext; 7 185 dcl fs_charcnt fixed bin defined (cobol_$fs_charcnt); 7 186 dcl cobol_$ws_charcnt fixed bin ext; 7 187 dcl ws_charcnt fixed bin defined (cobol_$ws_charcnt); 7 188 dcl cobol_$coms_charcnt fixed bin ext; 7 189 dcl coms_charcnt fixed bin defined (cobol_$coms_charcnt); 7 190 dcl cobol_$ls_charcnt fixed bin ext; 7 191 dcl ls_charcnt fixed bin defined (cobol_$ls_charcnt); 7 192 dcl cobol_$cons_charcnt fixed bin ext; 7 193 dcl cons_charcnt fixed bin defined (cobol_$cons_charcnt); 7 194 dcl cobol_$value_cnt fixed bin ext; 7 195 dcl value_cnt fixed bin defined (cobol_$value_cnt); 7 196 dcl cobol_$cd_cnt fixed bin ext; 7 197 dcl cd_cnt fixed bin defined (cobol_$cd_cnt); 7 198 dcl cobol_$fs_wdoff fixed bin ext; 7 199 dcl fs_wdoff fixed bin defined (cobol_$fs_wdoff); 7 200 dcl cobol_$ws_wdoff fixed bin ext; 7 201 dcl ws_wdoff fixed bin defined (cobol_$ws_wdoff); 7 202 dcl cobol_$coms_wdoff fixed bin ext; 7 203 dcl coms_wdoff fixed bin defined (cobol_$coms_wdoff); 7 204 7 205 /* CHARACTER */ 7 206 dcl cobol_$scratch_dir char (168) aligned ext; 7 207 dcl scratch_dir char (168) aligned defined (cobol_$scratch_dir); /* -42- */ 7 208 dcl cobol_$obj_seg_name char (32) aligned ext; 7 209 dcl obj_seg_name char (32) aligned defined (cobol_$obj_seg_name); /* -8- */ 7 210 7 211 /* BIT */ 7 212 dcl cobol_$xref_bypass bit(1) aligned ext; 7 213 dcl xref_bypass bit(1) aligned defined (cobol_$xref_bypass); /* -1- */ 7 214 dcl cobol_$same_sort_merge_proc bit(1) aligned ext; 7 215 dcl same_sort_merge_proc bit(1) aligned defined (cobol_$same_sort_merge_proc); /* -1- */ 7 216 7 217 7 218 /* END INCLUDE FILE ... cobol_incl.pl1*/ 7 219 7 220 139 140 end cobol_unstring_gen; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 05/24/89 0832.1 cobol_unstring_gen.pl1 >spec>install>MR12.3-1048>cobol_unstring_gen.pl1 136 1 03/27/82 0439.8 cobol_type1.incl.pl1 >ldd>include>cobol_type1.incl.pl1 1-15 2 11/11/82 1712.8 cobol_TYPE1.incl.pl1 >ldd>include>cobol_TYPE1.incl.pl1 137 3 03/27/82 0439.9 cobol_type9.incl.pl1 >ldd>include>cobol_type9.incl.pl1 3-17 4 11/11/82 1712.7 cobol_TYPE9.incl.pl1 >ldd>include>cobol_TYPE9.incl.pl1 138 5 03/27/82 0439.8 cobol_type19.incl.pl1 >ldd>include>cobol_type19.incl.pl1 5-17 6 03/27/82 0439.6 cobol_TYPE19.incl.pl1 >ldd>include>cobol_TYPE19.incl.pl1 139 7 11/11/82 1712.7 cobol_.incl.pl1 >ldd>include>cobol_.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 131 ref 77 123 123 all_cnt 1 003112 automatic fixed bin(17,0) level 2 dcl 44 set ref 78* 87* 87 all_key constant fixed bin(17,0) initial dcl 54 ref 83 allsw 4 003112 automatic fixed bin(17,0) array level 3 dcl 44 set ref 82* 86* b 11(03) based bit(1) level 2 packed packed unaligned dcl 5-16 ref 64 c 11(04) based bit(1) level 2 packed packed unaligned dcl 5-16 ref 119 cobol_$next_tag 000012 external static fixed bin(17,0) dcl 7-128 set ref 66 67* 67 cobol_unstring 000010 constant entry external dcl 58 ref 123 count_key constant fixed bin(17,0) initial dcl 53 ref 107 ctp 16 000100 automatic pointer array level 3 dcl 33 set ref 110* 112* d 11(05) based bit(2) level 2 in structure "end_stmt" packed packed unaligned dcl 5-16 in procedure "cobol_unstring_gen" ref 116 d 003112 automatic structure level 1 unaligned dcl 44 in procedure "cobol_unstring_gen" set ref 77 data_name based structure level 1 unaligned dcl 3-16 delimiter 2 003112 automatic structure array level 2 unaligned dcl 44 delimiter_key constant fixed bin(17,0) initial dcl 52 ref 100 dn_ptr 005120 automatic pointer dcl 56 set ref 81* 83 83 dptr 4 000100 automatic pointer level 2 dcl 33 set ref 77* 94* dtp 14 000100 automatic pointer array level 3 in structure "u" dcl 33 in procedure "cobol_unstring_gen" set ref 103* 105* dtp 2 003112 automatic pointer array level 3 in structure "d" dcl 44 in procedure "cobol_unstring_gen" set ref 90* e 5 based fixed bin(17,0) level 2 dcl 5-16 ref 75 79 end_stmt based structure level 1 unaligned dcl 5-16 eos_ptr 005122 automatic pointer dcl 5-13 set ref 62* 64 75 79 96 116 119 h 6 based fixed bin(17,0) level 2 dcl 5-16 ref 96 i 005114 automatic fixed bin(17,0) dcl 51 set ref 80* 82 86 90* 97* 98 103 105 110 112* j 005115 automatic fixed bin(17,0) dcl 51 set ref 74* 81 88* 88 90 91* 91 98 99 102* 102 103 106 109* 109 110 113* 113 116 key 4 based fixed bin(17,0) level 2 dcl 1-14 ref 83 100 107 mp based structure level 1 unaligned dcl 29 mp_ptr parameter pointer dcl 26 ref 23 62 62 72 81 90 98 100 100 103 107 107 110 116 119 119 123 n 000100 automatic fixed bin(17,0) level 2 in structure "u" dcl 33 in procedure "cobol_unstring_gen" set ref 96* 97 n based fixed bin(17,0) level 2 in structure "mp" dcl 29 in procedure "cobol_unstring_gen" ref 62 119 n 003112 automatic fixed bin(17,0) level 2 in structure "d" dcl 44 in procedure "cobol_unstring_gen" set ref 79* 80 null builtin function dcl 131 ref 94 105 112 118 121 passed_tag parameter fixed bin(17,0) dcl 27 set ref 23 66* 68 pt 2 based pointer array level 2 dcl 29 set ref 62 72 81 90 98 100 100 103 107 107 110 116 119 123* ptp 6 000100 automatic pointer level 2 dcl 33 set ref 116* 118* reserved_word based structure level 1 unaligned dcl 1-14 rtp 12 000100 automatic pointer array level 3 dcl 33 set ref 98* stp 2 000100 automatic pointer level 2 dcl 33 set ref 72* tag 1 000100 automatic fixed bin(17,0) level 2 dcl 33 set ref 68* 70* temp 005116 automatic fixed bin(17,0) dcl 51 set ref 99* 100 100 106* 107 107 ttp 10 000100 automatic pointer level 2 dcl 33 set ref 119* 121* type 3 based fixed bin(17,0) level 2 dcl 3-16 ref 83 100 107 u 000100 automatic structure level 1 unaligned dcl 33 set ref 123 123 unstr 12 000100 automatic structure array level 2 unaligned dcl 33 NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. addrel builtin function dcl 131 allo1_max defined fixed bin(17,0) dcl 7-171 allo1_ptr defined pointer dcl 7-67 alter_flag defined fixed bin(17,0) dcl 7-135 alter_index defined fixed bin(17,0) dcl 7-153 alter_list_ptr defined pointer dcl 7-39 binary builtin function dcl 131 cd_cnt defined fixed bin(17,0) dcl 7-197 cobol_$allo1_max external static fixed bin(17,0) dcl 7-170 cobol_$allo1_ptr external static pointer dcl 7-66 cobol_$alter_flag external static fixed bin(17,0) dcl 7-134 cobol_$alter_index external static fixed bin(17,0) dcl 7-152 cobol_$alter_list_ptr external static pointer dcl 7-38 cobol_$cd_cnt external static fixed bin(17,0) dcl 7-196 cobol_$cobol_data_wd_off external static fixed bin(17,0) dcl 7-118 cobol_$compile_count external static fixed bin(17,0) dcl 7-142 cobol_$coms_charcnt external static fixed bin(17,0) dcl 7-188 cobol_$coms_wdoff external static fixed bin(17,0) dcl 7-202 cobol_$con_end_ptr external static pointer dcl 7-10 cobol_$con_wd_off external static fixed bin(17,0) dcl 7-92 cobol_$cons_charcnt external static fixed bin(17,0) dcl 7-192 cobol_$constant_offset external static fixed bin(17,0) dcl 7-156 cobol_$data_init_flag external static fixed bin(17,0) dcl 7-130 cobol_$date_compiled_sw external static fixed bin(17,0) dcl 7-180 cobol_$debug_enable external static fixed bin(17,0) dcl 7-174 cobol_$def_base_ptr external static pointer dcl 7-12 cobol_$def_max external static fixed bin(17,0) dcl 7-96 cobol_$def_wd_off external static fixed bin(17,0) dcl 7-94 cobol_$diag_ptr external static pointer dcl 7-70 cobol_$eln_max external static fixed bin(17,0) dcl 7-172 cobol_$eln_ptr external static pointer dcl 7-68 cobol_$fixup_max external static fixed bin(17,0) dcl 7-164 cobol_$fixup_ptr external static pointer dcl 7-30 cobol_$fs_charcnt external static fixed bin(17,0) dcl 7-184 cobol_$fs_wdoff external static fixed bin(17,0) dcl 7-198 cobol_$include_cnt external static fixed bin(17,0) dcl 7-182 cobol_$include_info_ptr external static pointer dcl 7-86 cobol_$init_stack_off external static fixed bin(17,0) dcl 7-124 cobol_$initval_base_ptr external static pointer dcl 7-32 cobol_$initval_file_ptr external static pointer dcl 7-34 cobol_$initval_flag external static fixed bin(17,0) dcl 7-178 cobol_$link_base_ptr external static pointer dcl 7-14 cobol_$link_max external static fixed bin(17,0) dcl 7-100 cobol_$link_wd_off external static fixed bin(17,0) dcl 7-98 cobol_$list_off external static fixed bin(17,0) dcl 7-154 cobol_$list_ptr external static pointer dcl 7-64 cobol_$ls_charcnt external static fixed bin(17,0) dcl 7-190 cobol_$main_pcs_ptr external static pointer dcl 7-84 cobol_$map_data_max external static fixed bin(17,0) dcl 7-162 cobol_$map_data_ptr external static pointer dcl 7-54 cobol_$max_stack_off external static fixed bin(17,0) dcl 7-122 cobol_$minpral5_ptr external static pointer dcl 7-50 cobol_$misc_base_ptr external static pointer dcl 7-60 cobol_$misc_end_ptr external static pointer dcl 7-62 cobol_$misc_max external static fixed bin(17,0) dcl 7-158 cobol_$non_source_offset external static fixed bin(17,0) dcl 7-176 cobol_$ntbuf_ptr external static pointer dcl 7-82 cobol_$obj_seg_name external static char(32) dcl 7-208 cobol_$op_con_ptr external static pointer dcl 7-80 cobol_$para_eop_flag external static fixed bin(17,0) dcl 7-138 cobol_$pd_map_index external static fixed bin(17,0) dcl 7-116 cobol_$pd_map_max external static fixed bin(17,0) dcl 7-160 cobol_$pd_map_ptr external static pointer dcl 7-28 cobol_$pd_map_sw external static fixed bin(17,0) dcl 7-126 cobol_$perform_list_ptr external static pointer dcl 7-36 cobol_$perform_para_index external static fixed bin(17,0) dcl 7-148 cobol_$perform_sect_index external static fixed bin(17,0) dcl 7-150 cobol_$priority_no external static fixed bin(17,0) dcl 7-140 cobol_$ptr_assumption_ind external static fixed bin(17,0) dcl 7-144 cobol_$ptr_status_ptr external static pointer dcl 7-56 cobol_$reg_assumption_ind external static fixed bin(17,0) dcl 7-146 cobol_$reg_status_ptr external static pointer dcl 7-58 cobol_$reloc_def_base_ptr external static pointer dcl 7-20 cobol_$reloc_def_max external static fixed bin(24,0) dcl 7-108 cobol_$reloc_link_base_ptr external static pointer dcl 7-22 cobol_$reloc_link_max external static fixed bin(24,0) dcl 7-110 cobol_$reloc_sym_base_ptr external static pointer dcl 7-24 cobol_$reloc_sym_max external static fixed bin(24,0) dcl 7-112 cobol_$reloc_text_base_ptr external static pointer dcl 7-18 cobol_$reloc_text_max external static fixed bin(24,0) dcl 7-106 cobol_$reloc_work_base_ptr external static pointer dcl 7-26 cobol_$reloc_work_max external static fixed bin(24,0) dcl 7-114 cobol_$reswd_ptr external static pointer dcl 7-78 cobol_$same_sort_merge_proc external static bit(1) dcl 7-214 cobol_$scratch_dir external static char(168) dcl 7-206 cobol_$sect_eop_flag external static fixed bin(17,0) dcl 7-136 cobol_$seg_init_flag external static fixed bin(17,0) dcl 7-132 cobol_$seg_init_list_ptr external static pointer dcl 7-40 cobol_$stack_off external static fixed bin(17,0) dcl 7-120 cobol_$statement_info_ptr external static pointer dcl 7-76 cobol_$sym_base_ptr external static pointer dcl 7-16 cobol_$sym_max external static fixed bin(17,0) dcl 7-104 cobol_$sym_wd_off external static fixed bin(17,0) dcl 7-102 cobol_$tag_table_max external static fixed bin(17,0) dcl 7-166 cobol_$tag_table_ptr external static pointer dcl 7-52 cobol_$temp_token_area_ptr external static pointer dcl 7-42 cobol_$temp_token_max external static fixed bin(17,0) dcl 7-168 cobol_$temp_token_ptr external static pointer dcl 7-44 cobol_$text_base_ptr external static pointer dcl 7-8 cobol_$text_wd_off external static fixed bin(17,0) dcl 7-90 cobol_$token_block1_ptr external static pointer dcl 7-46 cobol_$token_block2_ptr external static pointer dcl 7-48 cobol_$value_cnt external static fixed bin(17,0) dcl 7-194 cobol_$ws_charcnt external static fixed bin(17,0) dcl 7-186 cobol_$ws_wdoff external static fixed bin(17,0) dcl 7-200 cobol_$xref_bypass external static bit(1) dcl 7-212 cobol_$xref_chain_ptr external static pointer dcl 7-74 cobol_$xref_token_ptr external static pointer dcl 7-72 cobol_data_wd_off defined fixed bin(17,0) dcl 7-119 compile_count defined fixed bin(17,0) dcl 7-143 coms_charcnt defined fixed bin(17,0) dcl 7-189 coms_wdoff defined fixed bin(17,0) dcl 7-203 con_end_ptr defined pointer dcl 7-11 con_wd_off defined fixed bin(17,0) dcl 7-93 cons_charcnt defined fixed bin(17,0) dcl 7-193 constant_offset defined fixed bin(17,0) dcl 7-157 data_init_flag defined fixed bin(17,0) dcl 7-131 date_compiled_sw defined fixed bin(17,0) dcl 7-181 debug_enable defined fixed bin(17,0) dcl 7-175 def_base_ptr defined pointer dcl 7-13 def_max defined fixed bin(17,0) dcl 7-97 def_wd_off defined fixed bin(17,0) dcl 7-95 diag_ptr defined pointer dcl 7-71 eln_max defined fixed bin(17,0) dcl 7-173 eln_ptr defined pointer dcl 7-69 fixed builtin function dcl 131 fixup_max defined fixed bin(17,0) dcl 7-165 fixup_ptr defined pointer dcl 7-31 fs_charcnt defined fixed bin(17,0) dcl 7-185 fs_wdoff defined fixed bin(17,0) dcl 7-199 include_cnt defined fixed bin(17,0) dcl 7-183 include_info_ptr defined pointer dcl 7-87 index builtin function dcl 131 init_stack_off defined fixed bin(17,0) dcl 7-125 initval_base_ptr defined pointer dcl 7-33 initval_file_ptr defined pointer dcl 7-35 initval_flag defined fixed bin(17,0) dcl 7-179 length builtin function dcl 131 link_base_ptr defined pointer dcl 7-15 link_max defined fixed bin(17,0) dcl 7-101 link_wd_off defined fixed bin(17,0) dcl 7-99 list_off defined fixed bin(17,0) dcl 7-155 list_ptr defined pointer dcl 7-65 ls_charcnt defined fixed bin(17,0) dcl 7-191 main_pcs_ptr defined pointer dcl 7-85 map_data_max defined fixed bin(17,0) dcl 7-163 map_data_ptr defined pointer dcl 7-55 max_stack_off defined fixed bin(17,0) dcl 7-123 minpral5_ptr defined pointer dcl 7-51 misc_base_ptr defined pointer dcl 7-61 misc_end_ptr defined pointer dcl 7-63 misc_max defined fixed bin(17,0) dcl 7-159 mod builtin function dcl 131 next_tag defined fixed bin(17,0) dcl 7-129 non_source_offset defined fixed bin(17,0) dcl 7-177 ntbuf_ptr defined pointer dcl 7-83 obj_seg_name defined char(32) dcl 7-209 op_con_ptr defined pointer dcl 7-81 para_eop_flag defined fixed bin(17,0) dcl 7-139 pd_map_index defined fixed bin(17,0) dcl 7-117 pd_map_max defined fixed bin(17,0) dcl 7-161 pd_map_ptr defined pointer dcl 7-29 pd_map_sw defined fixed bin(17,0) dcl 7-127 perform_list_ptr defined pointer dcl 7-37 perform_para_index defined fixed bin(17,0) dcl 7-149 perform_sect_index defined fixed bin(17,0) dcl 7-151 priority_no defined fixed bin(17,0) dcl 7-141 ptr_assumption_ind defined fixed bin(17,0) dcl 7-145 ptr_status_ptr defined pointer dcl 7-57 reg_assumption_ind defined fixed bin(17,0) dcl 7-147 reg_status_ptr defined pointer dcl 7-59 rel builtin function dcl 131 reloc_def_base_ptr defined pointer dcl 7-21 reloc_def_max defined fixed bin(24,0) dcl 7-109 reloc_link_base_ptr defined pointer dcl 7-23 reloc_link_max defined fixed bin(24,0) dcl 7-111 reloc_sym_base_ptr defined pointer dcl 7-25 reloc_sym_max defined fixed bin(24,0) dcl 7-113 reloc_text_base_ptr defined pointer dcl 7-19 reloc_text_max defined fixed bin(24,0) dcl 7-107 reloc_work_base_ptr defined pointer dcl 7-27 reloc_work_max defined fixed bin(24,0) dcl 7-115 reswd_ptr defined pointer dcl 7-79 rw_ptr automatic pointer dcl 1-11 same_sort_merge_proc defined bit(1) dcl 7-215 scratch_dir defined char(168) dcl 7-207 sect_eop_flag defined fixed bin(17,0) dcl 7-137 seg_init_flag defined fixed bin(17,0) dcl 7-133 seg_init_list_ptr defined pointer dcl 7-41 stack_off defined fixed bin(17,0) dcl 7-121 statement_info_ptr defined pointer dcl 7-77 string builtin function dcl 131 substr builtin function dcl 131 sym_base_ptr defined pointer dcl 7-17 sym_max defined fixed bin(17,0) dcl 7-105 sym_wd_off defined fixed bin(17,0) dcl 7-103 tag_table_max defined fixed bin(17,0) dcl 7-167 tag_table_ptr defined pointer dcl 7-53 temp_token_area_ptr defined pointer dcl 7-43 temp_token_max defined fixed bin(17,0) dcl 7-169 temp_token_ptr defined pointer dcl 7-45 text_base_ptr defined pointer dcl 7-9 text_wd_off defined fixed bin(17,0) dcl 7-91 token_block1_ptr defined pointer dcl 7-47 token_block2_ptr defined pointer dcl 7-49 unspec builtin function dcl 131 value_cnt defined fixed bin(17,0) dcl 7-195 ws_charcnt defined fixed bin(17,0) dcl 7-187 ws_wdoff defined fixed bin(17,0) dcl 7-201 xref_bypass defined bit(1) dcl 7-213 xref_chain_ptr defined pointer dcl 7-75 xref_token_ptr defined pointer dcl 7-73 NAMES DECLARED BY EXPLICIT CONTEXT. cobol_unstring_gen 000010 constant entry external dcl 23 start 000015 constant label dcl 62 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 356 372 310 366 Length 674 310 14 265 45 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME cobol_unstring_gen 2656 external procedure is an external procedure. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME cobol_unstring_gen 000100 u cobol_unstring_gen 003112 d cobol_unstring_gen 005114 i cobol_unstring_gen 005115 j cobol_unstring_gen 005116 temp cobol_unstring_gen 005120 dn_ptr cobol_unstring_gen 005122 eos_ptr cobol_unstring_gen THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. call_ext_out return_mac ext_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. cobol_unstring THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. cobol_$next_tag LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 23 000004 62 000015 64 000024 66 000027 67 000031 68 000032 69 000034 70 000035 72 000036 74 000041 75 000043 77 000046 78 000050 79 000051 80 000053 81 000061 82 000070 83 000073 86 000102 87 000105 88 000106 90 000107 91 000115 92 000116 93 000120 94 000121 96 000123 97 000126 98 000135 99 000146 100 000151 102 000165 103 000167 104 000174 105 000175 106 000177 107 000202 109 000215 110 000217 111 000224 112 000225 113 000227 114 000230 116 000232 118 000250 119 000252 121 000267 123 000271 124 000307 ----------------------------------------------------------- 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