COMPILATION LISTING OF SEGMENT cobol_display_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 0935.4 mst Wed Options: optimize map 1 /****^ *********************************************************** 2* * * 3* * Copyright, (C) BULL HN Information Systems Inc., 1989 * 4* * * 5* * Copyright, (C) Honeywell Information Systems Inc., 1982 * 6* * * 7* * Copyright (c) 1972 by Massachusetts Institute of * 8* * Technology and Honeywell Information Systems, Inc. * 9* * * 10* *********************************************************** */ 11 12 13 14 15 /****^ HISTORY COMMENTS: 16* 1) change(89-04-23,Zimmerman), approve(89-04-23,MCR8060), 17* audit(89-05-05,RWaters), install(89-05-24,MR12.3-1048): 18* MCR8060 cobol_display_gen.pl1 Reformatted code to new Cobol standard. 19* END HISTORY COMMENTS */ 20 21 22 /* Modified on 5/18/76 by George Mercuri for changes to error interface. */ 23 /* Modified on 5/10/76 by George Mercuri for changes to error handling. */ 24 /* Modified on 5/5/76 by George Mercuri for error handling techniques. */ 25 /* Modified on 4/28/76 by G. Mercuri change code for new cobol_operators_. */ 26 /* format: style3 */ 27 cobol_display_gen: 28 proc (mp_ptr); 29 30 dcl stoff fixed bin init (0); 31 dcl mp_ptr ptr; 32 dcl 1 mp based (mp_ptr), 33 2 n fixed bin, 34 2 pt (0 refer (mp.n)) ptr; 35 36 dcl 1 args static, 37 2 entryno fixed bin init (6), /* put_chars */ 38 2 arglist_off fixed bin, 39 2 stacktemp_off fixed bin init (44), 40 2 n fixed bin init (4), 41 2 arg1, 42 3 pt ptr init (null ()), /* not meaningful */ 43 3 type fixed bin init (4), /* entry variable */ 44 3 seg fixed bin, /* set to lp|off of link to iox_$user_output or $error_output*/ 45 3 off fixed bin init (0), 46 3 value bit (18) unaligned, /* not meaningful */ 47 3 indirect bit (1) unaligned init ("0"b), 48 3 overlay bit (1) unaligned init ("0"b), 49 3 repeat_nogen bit (1) unaligned init ("0"b), 50 2 arg2, 51 3 pt ptr, /* set to pt to type 9 token or varying literal string */ 52 3 type fixed bin init (5), /* variable */ 53 3 seg fixed bin init (0), 54 3 off fixed bin init (42), /* allocate pointer to data at sp|42 */ 55 3 value bit (18) unaligned, /* set to immed value when type = 2 */ 56 3 indirect bit (1) unaligned init ("1"b),/* pass a ptr to the data rather than the data */ 57 3 overlay bit (1) unaligned init ("0"b), 58 3 repeat_nogen bit (1) unaligned init ("0"b), 59 2 arg3, 60 3 pt ptr init (null ()), /* not meaningful */ 61 3 type fixed bin init (3), 62 3 seg fixed bin init (80), /* allocate length at sp|80 */ 63 3 off fixed bin, /* not meaningful */ 64 3 value bit (18) unaligned, /* not meaningful */ 65 3 indirect bit (1) unaligned init ("0"b), 66 3 overlay bit (1) unaligned init ("0"b), 67 3 repeat_nogen bit (1) unaligned init ("0"b), 68 2 arg4, 69 3 pt ptr init (null ()), /* not meaningful */ 70 3 type fixed bin init (3), 71 3 seg fixed bin init (40), /* allocate multics code at sp|40 */ 72 3 off fixed bin, /* not meaningful */ 73 3 value bit (18) unaligned, /* not meaningful */ 74 3 indirect bit (1) unaligned init ("0"b), 75 3 overlay bit (1) unaligned init ("0"b), 76 3 repeat_nogen bit (1) unaligned init ("0"b); 77 78 dcl 1 s auto, 79 2 n fixed bin, 80 2 tag fixed bin, 81 2 rtp ptr, 82 2 ptp ptr, 83 2 str (2:257), 84 3 stp ptr, 85 3 dtp ptr; 86 87 dcl 1 nl_token static, 88 2 size fixed bin init (25), 89 2 line fixed bin init (0), 90 2 column fixed bin init (0), 91 2 type fixed bin init (3), 92 2 lit_type bit (1) init ("0"b), 93 2 all_lit bit (1) init ("0"b), 94 2 filler1 bit (6) init (""b), 95 2 lit_size fixed bin init (1), 96 2 string char (1) init (" 97 "); 98 99 dcl 1 rtype9 static, 100 2 header (4) fixed bin init (112, 0, 0, 9), 101 2 repl_ptr (2) ptr init ((2) null ()), 102 2 fill1 bit (108) init (""b), 103 2 file_key_info, 104 3 fb1 (3) fixed bin init (0, 0, 0), 105 3 size fixed bin init (0), 106 3 fb2 (2) fixed bin init (0, 0), 107 3 flags1 bit (36) init ("010000100100000000010000000100000000"b), 108 3 flags2 bit (36) init (""b), 109 3 seg fixed bin init (1000), 110 3 off fixed bin, 111 2 fill2 (7) fixed bin init (0, 0, 0, 0, 0, 0, 0); 112 113 114 dcl stream char (20); 115 116 dcl i fixed bin; 117 dcl tflen fixed bin; 118 dcl tvlen fixed bin; 119 dcl errorno fixed bin; 120 dcl lineno fixed bin; 121 dcl tagno fixed bin; 122 dcl tagno1 fixed bin; 123 124 dcl argptr ptr static; 125 dcl dn_ptr ptr; 126 127 dcl cobol_call_op entry (fixed bin, fixed bin); 128 dcl cobol_reg_manager$after_op 129 entry (fixed bin); 130 dcl cobol_make_tagref entry (fixed bin, fixed bin, ptr); 131 dcl cobol_define_tag entry (fixed bin); 132 dcl cobol_ioop_util entry (fixed bin); 133 dcl cobol_string entry (ptr); 134 dcl cobol_io_util$move_direct 135 entry (bit (3) aligned, fixed bin, fixed bin, fixed bin, bit (18) aligned); 136 dcl cobol_alloc$stack entry (fixed bin, fixed bin, fixed bin); 137 dcl cobol_emit entry (ptr, ptr, fixed bin); 138 139 140 /*************************************/ 141 start: 142 tagno = cobol_$next_tag; 143 cobol_$next_tag = cobol_$next_tag + 1; 144 call cobol_define_tag (tagno); 145 rtype9.size = 0; /* signal of no limit to cobol_string */ 146 if mp.pt (mp.n) -> end_stmt.a = "000"b 147 then do; /* iox_$error_output */ 148 errorno = 4; 149 end; 150 else do; /* iox_$user_output */ 151 errorno = 3; 152 end; 153 lineno = mp.pt (1) -> reserved_word.line; 154 155 s.n = mp.n - 1; 156 s.tag = 0; 157 s.rtp = addr (rtype9); 158 s.ptp = null (); 159 160 tflen, tvlen = 0; 161 do i = 2 to mp.n - 1; 162 dn_ptr = mp.pt (i); 163 if data_name.type = 9 164 then do; 165 if data_name.variable_length 166 then tvlen = tvlen + data_name.item_length; 167 else tflen = tflen + data_name.item_length; 168 end; 169 else if data_name.type = 2 170 then tflen = tflen + dn_ptr -> numeric_lit.places; 171 else if data_name.type = 3 172 then tflen = tflen + dn_ptr -> alphanum_lit.lit_size; 173 else tflen = tflen + 1; /* figurative constant (type 1) */ 174 s.stp (i) = dn_ptr; 175 s.dtp (i) = null (); 176 end; 177 s.stp (mp.n) = addr (nl_token); 178 s.dtp (mp.n) = null (); 179 tflen = tflen + 1; 180 call cobol_io_util$move_direct ("110"b, 320, 4, 1, substr (unspec (tflen), 19, 18)); 181 182 call cobol_alloc$stack (tflen + tvlen, 2, stoff); /* for arg list + combined max item length */ 183 rtype9.off = stoff * 4; /* next available location (will be reserved later) */ 184 call cobol_string (addr (s)); 185 186 arg2.pt = addr (rtype9); 187 call cobol_ioop_util (stoff); 188 if errorno = 3 189 then call cobol_call_op (26, tagno); /*5/18/76*/ 190 else call cobol_call_op (28, tagno); /*5/18/76*/ 191 call cobol_reg_manager$after_op (4095 + errorno); 192 193 return; 194 195 196 /*************************************/ 197 198 /***** Declaration for builtin function *****/ 199 200 dcl (substr, mod, binary, fixed, addr, addrel, rel, length, string, unspec, null, index) 201 builtin; 202 203 /***** End of declaration for builtin function *****/ 204 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 205 3 1 3 2 /* BEGIN INCLUDE FILE ... cobol_type2.incl.pl1 */ 3 3 /* Last modified on 11/19/76 by ORN */ 3 4 3 5 /* 3 6*A type 2 numeric literal token is entered into the minpral file by the 3 7*lexical analysis phase for each numeric literal encountered in the source 3 8*program. 3 9**/ 3 10 3 11 dcl nlit_ptr ptr; 3 12 3 13 /* BEGIN DECLARATION OF TYPE2 (NUMERIC LITERAL) TOKEN */ 3 14 dcl 1 numeric_lit based (nlit_ptr), 4 1 4 2 /* begin include file ... cobol_TYPE2.incl.pl1 */ 4 3 /* Last modified on 12/28/76 by FCH */ 4 4 4 5 /* header */ 4 6 2 size fixed bin, 4 7 2 line fixed bin, 4 8 2 column fixed bin, 4 9 2 type fixed bin, 4 10 /* body */ 4 11 2 integral bit(1), 4 12 2 floating bit(1), 4 13 2 seg_range bit(1), 4 14 2 filler1 bit(4), 4 15 2 subscript bit(1), 4 16 2 sign char(1), 4 17 2 exp_sign char(1), 4 18 2 exp_places fixed bin, 4 19 2 places_left fixed bin, 4 20 2 places_right fixed bin, 4 21 2 places fixed bin, 4 22 2 literal char(0 refer(numeric_lit.places)); 4 23 4 24 4 25 4 26 /* end include file ... cobol_TYPE2.incl.pl1 */ 4 27 3 15 3 16 /* END DECLARATION OF TYPE2 (NUMERIC LITERAL) TOKEN */ 3 17 3 18 /* END INCLUDE FILE ... cobol_type2.incl.pl1 */ 3 19 206 5 1 5 2 /* BEGIN INCLUDE FILE ... cobol_type3.incl.pl1 */ 5 3 /* Last modified on 11/19/76 by ORN */ 5 4 5 5 /* 5 6*A type 3 alphanumeric literal token is entered into the minpral file by the 5 7*lexical analysis phase for each alphanumeric literal encountered in the 5 8*source program. 5 9**/ 5 10 5 11 dcl alit_ptr ptr; 5 12 5 13 /* BEGIN DECLARATION OR TYPE3 (ALPHANUMERIC LITERAL) TOKEN */ 5 14 dcl 1 alphanum_lit based (alit_ptr), 6 1 6 2 /* begin include file ... cobol_TYPE3.incl.pl1 */ 6 3 /* Last modified on 11/17/76 by ORN */ 6 4 /* Last modified on 12/28/76 by FCH */ 6 5 6 6 /* header */ 6 7 2 size fixed bin, 6 8 2 line fixed bin, 6 9 2 column fixed bin, 6 10 2 type fixed bin, 6 11 /* body */ 6 12 2 lit_type bit (1), 6 13 2 all_lit bit (1), 6 14 2 filler1 bit (6), 6 15 2 lit_size fixed bin, 6 16 2 string char(0 refer(alphanum_lit.lit_size)); 6 17 6 18 6 19 6 20 /* end include file ... cobol_TYPE3.incl.pl1 */ 6 21 5 15 5 16 /* END DECLARATION OF TYPE3 (ALPHANUMERIC LITERAL) TOKEN */ 5 17 5 18 /* END INCLUDE FILE ... cobol_type3.incl.pl1 */ 5 19 207 7 1 7 2 /* BEGIN INCLUDE FILE ... cobol_type9.incl.pl1 */ 7 3 /* Last modified on 11/19/76 by ORN */ 7 4 7 5 /* 7 6*A type 9 data name token is entered into the name table by the data 7 7*division syntax phase for each data name described in the data division. 7 8*The replacement phase subsequently replaces type 8 user word references 7 9*to data names in the procedure division minpral file with the corresponding 7 10*type 9 tokens from the name table. 7 11**/ 7 12 7 13 /* dcl dn_ptr ptr; */ 7 14 7 15 /* BEGIN DECLARATION OF TYPE9 (DATA NAME) TOKEN */ 7 16 dcl 1 data_name based (dn_ptr), 8 1 8 2 /* begin include file ... cobol_TYPE9.incl.pl1 */ 8 3 /* Last modified on 06/19/77 by ORN */ 8 4 /* Last modified on 12/28/76 by FCH */ 8 5 8 6 /* header */ 8 7 2 size fixed bin, 8 8 2 line fixed bin, 8 9 2 column fixed bin, 8 10 2 type fixed bin, 8 11 /* body */ 8 12 2 string_ptr ptr, 8 13 2 prev_rec ptr, 8 14 2 searched bit (1), 8 15 2 duplicate bit (1), 8 16 2 saved bit (1), 8 17 2 debug_ind bit (1), 8 18 2 filler2 bit (3), 8 19 2 used_as_sub bit (1), 8 20 2 def_line fixed bin, 8 21 2 level fixed bin, 8 22 2 linkage fixed bin, 8 23 2 file_num fixed bin, 8 24 2 size_rtn fixed bin, 8 25 2 item_length fixed bin(24), 8 26 2 places_left fixed bin, 8 27 2 places_right fixed bin, 8 28 /* description */ 8 29 2 file_section bit (1), 8 30 2 working_storage bit (1), 8 31 2 constant_section bit (1), 8 32 2 linkage_section bit (1), 8 33 2 communication_section bit (1), 8 34 2 report_section bit (1), 8 35 2 level_77 bit (1), 8 36 2 level_01 bit (1), 8 37 2 non_elementary bit (1), 8 38 2 elementary bit (1), 8 39 2 filler_item bit (1), 8 40 2 s_of_rdf bit (1), 8 41 2 o_of_rdf bit (1), 8 42 2 bin_18 bit (1), 8 43 2 bin_36 bit (1), 8 44 2 pic_has_l bit (1), 8 45 2 pic_is_do bit (1), 8 46 2 numeric bit (1), 8 47 2 numeric_edited bit (1), 8 48 2 alphanum bit (1), 8 49 2 alphanum_edited bit (1), 8 50 2 alphabetic bit (1), 8 51 2 alphabetic_edited bit (1), 8 52 2 pic_has_p bit (1), 8 53 2 pic_has_ast bit (1), 8 54 2 item_signed bit(1), 8 55 2 sign_separate bit (1), 8 56 2 display bit (1), 8 57 2 comp bit (1), 8 58 2 ascii_packed_dec_h bit (1), /* as of 8/16/76 this field used for comp8. */ 8 59 2 ascii_packed_dec bit (1), 8 60 2 ebcdic_packed_dec bit (1), 8 61 2 bin_16 bit (1), 8 62 2 bin_32 bit (1), 8 63 2 usage_index bit (1), 8 64 2 just_right bit (1), 8 65 2 compare_argument bit (1), 8 66 2 sync bit (1), 8 67 2 temporary bit (1), 8 68 2 bwz bit (1), 8 69 2 variable_length bit (1), 8 70 2 subscripted bit (1), 8 71 2 occurs_do bit (1), 8 72 2 key_a bit (1), 8 73 2 key_d bit (1), 8 74 2 indexed_by bit (1), 8 75 2 value_numeric bit (1), 8 76 2 value_non_numeric bit (1), 8 77 2 value_signed bit (1), 8 78 2 sign_type bit (3), 8 79 2 pic_integer bit (1), 8 80 2 ast_when_zero bit (1), 8 81 2 label_record bit (1), 8 82 2 sign_clause_occurred bit (1), 8 83 2 okey_dn bit (1), 8 84 2 subject_of_keyis bit (1), 8 85 2 exp_redefining bit (1), 8 86 2 sync_in_rec bit (1), 8 87 2 rounded bit (1), 8 88 2 ad_bit bit (1), 8 89 2 debug_all bit (1), 8 90 2 overlap bit (1), 8 91 2 sum_counter bit (1), 8 92 2 exp_occurs bit (1), 8 93 2 linage_counter bit (1), 8 94 2 rnm_01 bit (1), 8 95 2 aligned bit (1), 8 96 2 not_user_writable bit (1), 8 97 2 database_key bit (1), 8 98 2 database_data_item bit (1), 8 99 2 seg_num fixed bin, 8 100 2 offset fixed bin(24), 8 101 2 initial_ptr fixed bin, 8 102 2 edit_ptr fixed bin, 8 103 2 occurs_ptr fixed bin, 8 104 2 do_rec char(5), 8 105 2 bitt bit (1), 8 106 2 byte bit (1), 8 107 2 half_word bit (1), 8 108 2 word bit (1), 8 109 2 double_word bit (1), 8 110 2 half_byte bit (1), 8 111 2 filler5 bit (1), 8 112 2 bit_offset bit (4), 8 113 2 son_cnt bit (16), 8 114 2 max_red_size fixed bin(24), 8 115 2 name_size fixed bin, 8 116 2 name char(0 refer(data_name.name_size)); 8 117 8 118 8 119 8 120 /* end include file ... cobol_TYPE9.incl.pl1 */ 8 121 7 17 7 18 /* END DECLARATION OF TYPE9 (DATA NAME) TOKEN */ 7 19 7 20 /* END INCLUDE FILE ... cobol_type9.incl.pl1 */ 7 21 208 9 1 9 2 /* BEGIN INCLUDE FILE ... cobol_type19.incl.pl1 */ 9 3 /* last modified on 11/19/76 by ORN */ 9 4 9 5 /* 9 6*A type 19 end of statement token is created in the procedure division 9 7*minpral file at the end of each minpral statement generated by the 9 8*procedure division syntax phase. A minpral statement may be a complete or 9 9*partial source language statement. A type 19 token contains information 9 10*describing the statement which it delimits. 9 11**/ 9 12 9 13 dcl eos_ptr ptr; 9 14 9 15 /* BEGIN DECLARATION OF TYPE19 (END STATEMENT) TOKEN */ 9 16 dcl 1 end_stmt based (eos_ptr), 10 1 10 2 /* begin include file ... cobol_TYPE19.incl.pl1 */ 10 3 /* Last modified on 11/17/76 by ORN */ 10 4 10 5 /* header */ 10 6 2 size fixed bin, 10 7 2 line fixed bin, 10 8 2 column fixed bin, 10 9 2 type fixed bin, 10 10 /* body */ 10 11 2 verb fixed bin, 10 12 2 e fixed bin, 10 13 2 h fixed bin, 10 14 2 i fixed bin, 10 15 2 j fixed bin, 10 16 2 a bit (3), 10 17 2 b bit (1), 10 18 2 c bit (1), 10 19 2 d bit (2), 10 20 2 f bit (2), 10 21 2 g bit (2), 10 22 2 k bit (5), 10 23 2 always_an bit (1); 10 24 10 25 /* end include file ... cobol_TYPE19.incl.pl1 */ 10 26 9 17 9 18 /* END DECLARATION OF TYPE19 (END STATEMENT) TOKEN */ 9 19 9 20 /* 9 21*FIELD CONTENTS 9 22* 9 23*size The total size in bytes of this end of statement token. 9 24*line 0 9 25*column 0 9 26*type 19 9 27*verb A value indicating the verb in this statement 9 28* 1 = accept 9 29* 2 = add 9 30* 3 = on size error 9 31* 4 = alter 9 32* 5 = call 9 33* 7 = cancel 9 34* 8 = close 9 35* 9 = divide 9 36* 10 = multiply 9 37* 11 = subtract 9 38* 12 = exit 9 39* 14 = go 9 40* 15 = merge 9 41* 16 = initiate 9 42* 17 = inspect 9 43* 18 = move 9 44* 19 = open 9 45* 20 = perform 9 46* 21 = read 9 47* 23 = receive 9 48* 24 = release 9 49* 25 = return 9 50* 26 = search 9 51* 27 = rewrite 9 52* 29 = seek 9 53* 30 = send 9 54* 31 = set 9 55* 33 = stop 9 56* 34 = string 9 57* 35 = suspend 9 58* 36 = terminate 9 59* 37 = unstring 9 60* 38 = write 9 61* 39 = use 9 62* 40 = compute 9 63* 41 = disable 9 64* 42 = display 9 65* 43 = enable 9 66* 45 = generate 9 67* 46 = hold 9 68* 48 = process 9 69* 49 = sort 9 70* 52 = procedure 9 71* 53 = declaratives 9 72* 54 = section name 9 73* 55 = paragraph name 9 74* 98 = end 9 75*e,h,i,j The significance of these fields differs with each 9 76* statement. These fields are normally used as counters. 9 77*a,b,c,d,f,g,k The significance of these fields differs with each 9 78* statement. These fields are normally used as indicators. 9 79**/ 9 80 9 81 /* END INCLUDE FILE ... cobol_type19.incl.pl1 */ 9 82 209 11 1 11 2 /* BEGIN INCLUDE FILE ... cobol_.incl.pl1 */ 11 3 /* last modified Feb 4, 1977 by ORN */ 11 4 11 5 /* This file defines all external data used in the generator phase of Multics Cobol */ 11 6 11 7 /* POINTERS */ 11 8 dcl cobol_$text_base_ptr ptr ext; 11 9 dcl text_base_ptr ptr defined (cobol_$text_base_ptr); 11 10 dcl cobol_$con_end_ptr ptr ext; 11 11 dcl con_end_ptr ptr defined (cobol_$con_end_ptr); 11 12 dcl cobol_$def_base_ptr ptr ext; 11 13 dcl def_base_ptr ptr defined (cobol_$def_base_ptr); 11 14 dcl cobol_$link_base_ptr ptr ext; 11 15 dcl link_base_ptr ptr defined (cobol_$link_base_ptr); 11 16 dcl cobol_$sym_base_ptr ptr ext; 11 17 dcl sym_base_ptr ptr defined (cobol_$sym_base_ptr); 11 18 dcl cobol_$reloc_text_base_ptr ptr ext; 11 19 dcl reloc_text_base_ptr ptr defined (cobol_$reloc_text_base_ptr); 11 20 dcl cobol_$reloc_def_base_ptr ptr ext; 11 21 dcl reloc_def_base_ptr ptr defined (cobol_$reloc_def_base_ptr); 11 22 dcl cobol_$reloc_link_base_ptr ptr ext; 11 23 dcl reloc_link_base_ptr ptr defined (cobol_$reloc_link_base_ptr); 11 24 dcl cobol_$reloc_sym_base_ptr ptr ext; 11 25 dcl reloc_sym_base_ptr ptr defined (cobol_$reloc_sym_base_ptr); 11 26 dcl cobol_$reloc_work_base_ptr ptr ext; 11 27 dcl reloc_work_base_ptr ptr defined (cobol_$reloc_work_base_ptr); 11 28 dcl cobol_$pd_map_ptr ptr ext; 11 29 dcl pd_map_ptr ptr defined (cobol_$pd_map_ptr); 11 30 dcl cobol_$fixup_ptr ptr ext; 11 31 dcl fixup_ptr ptr defined (cobol_$fixup_ptr); 11 32 dcl cobol_$initval_base_ptr ptr ext; 11 33 dcl initval_base_ptr ptr defined (cobol_$initval_base_ptr); 11 34 dcl cobol_$initval_file_ptr ptr ext; 11 35 dcl initval_file_ptr ptr defined (cobol_$initval_file_ptr); 11 36 dcl cobol_$perform_list_ptr ptr ext; 11 37 dcl perform_list_ptr ptr defined (cobol_$perform_list_ptr); 11 38 dcl cobol_$alter_list_ptr ptr ext; 11 39 dcl alter_list_ptr ptr defined (cobol_$alter_list_ptr); 11 40 dcl cobol_$seg_init_list_ptr ptr ext; 11 41 dcl seg_init_list_ptr ptr defined (cobol_$seg_init_list_ptr); 11 42 dcl cobol_$temp_token_area_ptr ptr ext; 11 43 dcl temp_token_area_ptr ptr defined (cobol_$temp_token_area_ptr); 11 44 dcl cobol_$temp_token_ptr ptr ext; 11 45 dcl temp_token_ptr ptr defined (cobol_$temp_token_ptr); 11 46 dcl cobol_$token_block1_ptr ptr ext; 11 47 dcl token_block1_ptr ptr defined (cobol_$token_block1_ptr); 11 48 dcl cobol_$token_block2_ptr ptr ext; 11 49 dcl token_block2_ptr ptr defined (cobol_$token_block2_ptr); 11 50 dcl cobol_$minpral5_ptr ptr ext; 11 51 dcl minpral5_ptr ptr defined (cobol_$minpral5_ptr); 11 52 dcl cobol_$tag_table_ptr ptr ext; 11 53 dcl tag_table_ptr ptr defined (cobol_$tag_table_ptr); 11 54 dcl cobol_$map_data_ptr ptr ext; 11 55 dcl map_data_ptr ptr defined (cobol_$map_data_ptr); 11 56 dcl cobol_$ptr_status_ptr ptr ext; 11 57 dcl ptr_status_ptr ptr defined (cobol_$ptr_status_ptr); 11 58 dcl cobol_$reg_status_ptr ptr ext; 11 59 dcl reg_status_ptr ptr defined (cobol_$reg_status_ptr); 11 60 dcl cobol_$misc_base_ptr ptr ext; 11 61 dcl misc_base_ptr ptr defined (cobol_$misc_base_ptr); 11 62 dcl cobol_$misc_end_ptr ptr ext; 11 63 dcl misc_end_ptr ptr defined (cobol_$misc_end_ptr); 11 64 dcl cobol_$list_ptr ptr ext; 11 65 dcl list_ptr ptr defined (cobol_$list_ptr); 11 66 dcl cobol_$allo1_ptr ptr ext; 11 67 dcl allo1_ptr ptr defined (cobol_$allo1_ptr); 11 68 dcl cobol_$eln_ptr ptr ext; 11 69 dcl eln_ptr ptr defined (cobol_$eln_ptr); 11 70 dcl cobol_$diag_ptr ptr ext; 11 71 dcl diag_ptr ptr defined (cobol_$diag_ptr); 11 72 dcl cobol_$xref_token_ptr ptr ext; 11 73 dcl xref_token_ptr ptr defined (cobol_$xref_token_ptr); 11 74 dcl cobol_$xref_chain_ptr ptr ext; 11 75 dcl xref_chain_ptr ptr defined (cobol_$xref_chain_ptr); 11 76 dcl cobol_$statement_info_ptr ptr ext; 11 77 dcl statement_info_ptr ptr defined (cobol_$statement_info_ptr); 11 78 dcl cobol_$reswd_ptr ptr ext; 11 79 dcl reswd_ptr ptr defined (cobol_$reswd_ptr); 11 80 dcl cobol_$op_con_ptr ptr ext; 11 81 dcl op_con_ptr ptr defined (cobol_$op_con_ptr); 11 82 dcl cobol_$ntbuf_ptr ptr ext; 11 83 dcl ntbuf_ptr ptr defined (cobol_$ntbuf_ptr); 11 84 dcl cobol_$main_pcs_ptr ptr ext; 11 85 dcl main_pcs_ptr ptr defined (cobol_$main_pcs_ptr); 11 86 dcl cobol_$include_info_ptr ptr ext; 11 87 dcl include_info_ptr ptr defined (cobol_$include_info_ptr); 11 88 11 89 /* FIXED BIN */ 11 90 dcl cobol_$text_wd_off fixed bin ext; 11 91 dcl text_wd_off fixed bin defined (cobol_$text_wd_off); 11 92 dcl cobol_$con_wd_off fixed bin ext; 11 93 dcl con_wd_off fixed bin defined (cobol_$con_wd_off); 11 94 dcl cobol_$def_wd_off fixed bin ext; 11 95 dcl def_wd_off fixed bin defined (cobol_$def_wd_off); 11 96 dcl cobol_$def_max fixed bin ext; 11 97 dcl def_max fixed bin defined (cobol_$def_max); 11 98 dcl cobol_$link_wd_off fixed bin ext; 11 99 dcl link_wd_off fixed bin defined (cobol_$link_wd_off); 11 100 dcl cobol_$link_max fixed bin ext; 11 101 dcl link_max fixed bin defined (cobol_$link_max); 11 102 dcl cobol_$sym_wd_off fixed bin ext; 11 103 dcl sym_wd_off fixed bin defined (cobol_$sym_wd_off); 11 104 dcl cobol_$sym_max fixed bin ext; 11 105 dcl sym_max fixed bin defined (cobol_$sym_max); 11 106 dcl cobol_$reloc_text_max fixed bin(24) ext; 11 107 dcl reloc_text_max fixed bin(24) defined (cobol_$reloc_text_max); 11 108 dcl cobol_$reloc_def_max fixed bin(24) ext; 11 109 dcl reloc_def_max fixed bin(24) defined (cobol_$reloc_def_max); 11 110 dcl cobol_$reloc_link_max fixed bin(24) ext; 11 111 dcl reloc_link_max fixed bin(24) defined (cobol_$reloc_link_max); 11 112 dcl cobol_$reloc_sym_max fixed bin(24) ext; 11 113 dcl reloc_sym_max fixed bin(24) defined (cobol_$reloc_sym_max); 11 114 dcl cobol_$reloc_work_max fixed bin(24) ext; 11 115 dcl reloc_work_max fixed bin(24) defined (cobol_$reloc_work_max); 11 116 dcl cobol_$pd_map_index fixed bin ext; 11 117 dcl pd_map_index fixed bin defined (cobol_$pd_map_index); 11 118 dcl cobol_$cobol_data_wd_off fixed bin ext; 11 119 dcl cobol_data_wd_off fixed bin defined (cobol_$cobol_data_wd_off); 11 120 dcl cobol_$stack_off fixed bin ext; 11 121 dcl stack_off fixed bin defined (cobol_$stack_off); 11 122 dcl cobol_$max_stack_off fixed bin ext; 11 123 dcl max_stack_off fixed bin defined (cobol_$max_stack_off); 11 124 dcl cobol_$init_stack_off fixed bin ext; 11 125 dcl init_stack_off fixed bin defined (cobol_$init_stack_off); 11 126 dcl cobol_$pd_map_sw fixed bin ext; 11 127 dcl pd_map_sw fixed bin defined (cobol_$pd_map_sw); 11 128 dcl cobol_$next_tag fixed bin ext; 11 129 dcl next_tag fixed bin defined (cobol_$next_tag); 11 130 dcl cobol_$data_init_flag fixed bin ext; 11 131 dcl data_init_flag fixed bin defined (cobol_$data_init_flag); 11 132 dcl cobol_$seg_init_flag fixed bin ext; 11 133 dcl seg_init_flag fixed bin defined (cobol_$seg_init_flag); 11 134 dcl cobol_$alter_flag fixed bin ext; 11 135 dcl alter_flag fixed bin defined (cobol_$alter_flag); 11 136 dcl cobol_$sect_eop_flag fixed bin ext; 11 137 dcl sect_eop_flag fixed bin defined (cobol_$sect_eop_flag); 11 138 dcl cobol_$para_eop_flag fixed bin ext; 11 139 dcl para_eop_flag fixed bin defined (cobol_$para_eop_flag); 11 140 dcl cobol_$priority_no fixed bin ext; 11 141 dcl priority_no fixed bin defined (cobol_$priority_no); 11 142 dcl cobol_$compile_count fixed bin ext; 11 143 dcl compile_count fixed bin defined (cobol_$compile_count); 11 144 dcl cobol_$ptr_assumption_ind fixed bin ext; 11 145 dcl ptr_assumption_ind fixed bin defined (cobol_$ptr_assumption_ind); 11 146 dcl cobol_$reg_assumption_ind fixed bin ext; 11 147 dcl reg_assumption_ind fixed bin defined (cobol_$reg_assumption_ind); 11 148 dcl cobol_$perform_para_index fixed bin ext; 11 149 dcl perform_para_index fixed bin defined (cobol_$perform_para_index); 11 150 dcl cobol_$perform_sect_index fixed bin ext; 11 151 dcl perform_sect_index fixed bin defined (cobol_$perform_sect_index); 11 152 dcl cobol_$alter_index fixed bin ext; 11 153 dcl alter_index fixed bin defined (cobol_$alter_index); 11 154 dcl cobol_$list_off fixed bin ext; 11 155 dcl list_off fixed bin defined (cobol_$list_off); 11 156 dcl cobol_$constant_offset fixed bin ext; 11 157 dcl constant_offset fixed bin defined (cobol_$constant_offset); 11 158 dcl cobol_$misc_max fixed bin ext; 11 159 dcl misc_max fixed bin defined (cobol_$misc_max); 11 160 dcl cobol_$pd_map_max fixed bin ext; 11 161 dcl pd_map_max fixed bin defined (cobol_$pd_map_max); 11 162 dcl cobol_$map_data_max fixed bin ext; 11 163 dcl map_data_max fixed bin defined (cobol_$map_data_max); 11 164 dcl cobol_$fixup_max fixed bin ext; 11 165 dcl fixup_max fixed bin defined (cobol_$fixup_max); 11 166 dcl cobol_$tag_table_max fixed bin ext; 11 167 dcl tag_table_max fixed bin defined (cobol_$tag_table_max); 11 168 dcl cobol_$temp_token_max fixed bin ext; 11 169 dcl temp_token_max fixed bin defined (cobol_$temp_token_max); 11 170 dcl cobol_$allo1_max fixed bin ext; 11 171 dcl allo1_max fixed bin defined (cobol_$allo1_max); 11 172 dcl cobol_$eln_max fixed bin ext; 11 173 dcl eln_max fixed bin defined (cobol_$eln_max); 11 174 dcl cobol_$debug_enable fixed bin ext; 11 175 dcl debug_enable fixed bin defined (cobol_$debug_enable); 11 176 dcl cobol_$non_source_offset fixed bin ext; 11 177 dcl non_source_offset fixed bin defined (cobol_$non_source_offset); 11 178 dcl cobol_$initval_flag fixed bin ext; 11 179 dcl initval_flag fixed bin defined (cobol_$initval_flag); 11 180 dcl cobol_$date_compiled_sw fixed bin ext; 11 181 dcl date_compiled_sw fixed bin defined (cobol_$date_compiled_sw); 11 182 dcl cobol_$include_cnt fixed bin ext; 11 183 dcl include_cnt fixed bin defined (cobol_$include_cnt); 11 184 dcl cobol_$fs_charcnt fixed bin ext; 11 185 dcl fs_charcnt fixed bin defined (cobol_$fs_charcnt); 11 186 dcl cobol_$ws_charcnt fixed bin ext; 11 187 dcl ws_charcnt fixed bin defined (cobol_$ws_charcnt); 11 188 dcl cobol_$coms_charcnt fixed bin ext; 11 189 dcl coms_charcnt fixed bin defined (cobol_$coms_charcnt); 11 190 dcl cobol_$ls_charcnt fixed bin ext; 11 191 dcl ls_charcnt fixed bin defined (cobol_$ls_charcnt); 11 192 dcl cobol_$cons_charcnt fixed bin ext; 11 193 dcl cons_charcnt fixed bin defined (cobol_$cons_charcnt); 11 194 dcl cobol_$value_cnt fixed bin ext; 11 195 dcl value_cnt fixed bin defined (cobol_$value_cnt); 11 196 dcl cobol_$cd_cnt fixed bin ext; 11 197 dcl cd_cnt fixed bin defined (cobol_$cd_cnt); 11 198 dcl cobol_$fs_wdoff fixed bin ext; 11 199 dcl fs_wdoff fixed bin defined (cobol_$fs_wdoff); 11 200 dcl cobol_$ws_wdoff fixed bin ext; 11 201 dcl ws_wdoff fixed bin defined (cobol_$ws_wdoff); 11 202 dcl cobol_$coms_wdoff fixed bin ext; 11 203 dcl coms_wdoff fixed bin defined (cobol_$coms_wdoff); 11 204 11 205 /* CHARACTER */ 11 206 dcl cobol_$scratch_dir char (168) aligned ext; 11 207 dcl scratch_dir char (168) aligned defined (cobol_$scratch_dir); /* -42- */ 11 208 dcl cobol_$obj_seg_name char (32) aligned ext; 11 209 dcl obj_seg_name char (32) aligned defined (cobol_$obj_seg_name); /* -8- */ 11 210 11 211 /* BIT */ 11 212 dcl cobol_$xref_bypass bit(1) aligned ext; 11 213 dcl xref_bypass bit(1) aligned defined (cobol_$xref_bypass); /* -1- */ 11 214 dcl cobol_$same_sort_merge_proc bit(1) aligned ext; 11 215 dcl same_sort_merge_proc bit(1) aligned defined (cobol_$same_sort_merge_proc); /* -1- */ 11 216 11 217 11 218 /* END INCLUDE FILE ... cobol_incl.pl1*/ 11 219 11 220 210 211 212 end cobol_display_gen; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 05/24/89 0830.2 cobol_display_gen.pl1 >spec>install>MR12.3-1048>cobol_display_gen.pl1 205 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 206 3 03/27/82 0439.8 cobol_type2.incl.pl1 >ldd>include>cobol_type2.incl.pl1 3-15 4 11/11/82 1712.8 cobol_TYPE2.incl.pl1 >ldd>include>cobol_TYPE2.incl.pl1 207 5 03/27/82 0439.8 cobol_type3.incl.pl1 >ldd>include>cobol_type3.incl.pl1 5-15 6 11/11/82 1712.8 cobol_TYPE3.incl.pl1 >ldd>include>cobol_TYPE3.incl.pl1 208 7 03/27/82 0439.9 cobol_type9.incl.pl1 >ldd>include>cobol_type9.incl.pl1 7-17 8 11/11/82 1712.7 cobol_TYPE9.incl.pl1 >ldd>include>cobol_TYPE9.incl.pl1 209 9 03/27/82 0439.8 cobol_type19.incl.pl1 >ldd>include>cobol_type19.incl.pl1 9-17 10 03/27/82 0439.6 cobol_TYPE19.incl.pl1 >ldd>include>cobol_TYPE19.incl.pl1 210 11 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. a 11 based bit(3) level 2 packed packed unaligned dcl 9-16 ref 146 addr builtin function dcl 200 ref 157 177 184 184 186 alphanum_lit based structure level 1 unaligned dcl 5-14 arg2 12 000010 internal static structure level 2 unaligned dcl 36 args 000010 internal static structure level 1 unaligned dcl 36 cobol_$next_tag 000126 external static fixed bin(17,0) dcl 11-128 set ref 141 143* 143 cobol_alloc$stack 000124 constant entry external dcl 136 ref 182 cobol_call_op 000110 constant entry external dcl 127 ref 188 190 cobol_define_tag 000114 constant entry external dcl 131 ref 144 cobol_io_util$move_direct 000122 constant entry external dcl 134 ref 180 cobol_ioop_util 000116 constant entry external dcl 132 ref 187 cobol_reg_manager$after_op 000112 constant entry external dcl 128 ref 191 cobol_string 000120 constant entry external dcl 133 ref 184 data_name based structure level 1 unaligned dcl 7-16 dn_ptr 002116 automatic pointer dcl 125 set ref 162* 163 165 165 167 169 169 171 171 174 dtp 10 000102 automatic pointer array level 3 dcl 78 set ref 175* 178* end_stmt based structure level 1 unaligned dcl 9-16 errorno 002113 automatic fixed bin(17,0) dcl 119 set ref 148* 151* 188 191 file_key_info 13 000054 internal static structure level 2 unaligned dcl 99 i 002110 automatic fixed bin(17,0) dcl 116 set ref 161* 162 174 175* item_length 16 based fixed bin(24,0) level 2 dcl 7-16 ref 165 167 line 1 based fixed bin(17,0) level 2 dcl 1-14 ref 153 lineno 002114 automatic fixed bin(17,0) dcl 120 set ref 153* lit_size 5 based fixed bin(17,0) level 2 dcl 5-14 ref 171 mp based structure level 1 unaligned dcl 32 mp_ptr parameter pointer dcl 31 ref 27 146 146 153 155 161 162 177 178 n based fixed bin(17,0) level 2 in structure "mp" dcl 32 in procedure "cobol_display_gen" ref 146 155 161 177 178 n 000102 automatic fixed bin(17,0) level 2 in structure "s" dcl 78 in procedure "cobol_display_gen" set ref 155* nl_token 000044 internal static structure level 1 unaligned dcl 87 set ref 177 null builtin function dcl 200 ref 158 175 178 numeric_lit based structure level 1 unaligned dcl 3-14 off 24 000054 internal static fixed bin(17,0) level 3 dcl 99 set ref 183* places 10 based fixed bin(17,0) level 2 dcl 3-14 ref 169 pt 12 000010 internal static pointer level 3 in structure "args" dcl 36 in procedure "cobol_display_gen" set ref 186* pt 2 based pointer array level 2 in structure "mp" dcl 32 in procedure "cobol_display_gen" ref 146 153 162 ptp 4 000102 automatic pointer level 2 dcl 78 set ref 158* reserved_word based structure level 1 unaligned dcl 1-14 rtp 2 000102 automatic pointer level 2 dcl 78 set ref 157* rtype9 000054 internal static structure level 1 unaligned dcl 99 set ref 157 186 s 000102 automatic structure level 1 unaligned dcl 78 set ref 184 184 size 16 000054 internal static fixed bin(17,0) initial level 3 dcl 99 set ref 145* stoff 000100 automatic fixed bin(17,0) initial dcl 30 set ref 30* 182* 183 187* stp 6 000102 automatic pointer array level 3 dcl 78 set ref 174* 177* str 6 000102 automatic structure array level 2 unaligned dcl 78 substr builtin function dcl 200 ref 180 180 tag 1 000102 automatic fixed bin(17,0) level 2 dcl 78 set ref 156* tagno 002115 automatic fixed bin(17,0) dcl 121 set ref 141* 144* 188* 190* tflen 002111 automatic fixed bin(17,0) dcl 117 set ref 160* 167* 167 169* 169 171* 171 173* 173 179* 179 180 180 182 tvlen 002112 automatic fixed bin(17,0) dcl 118 set ref 160* 165* 165 182 type 3 based fixed bin(17,0) level 2 dcl 7-16 ref 163 169 171 unspec builtin function dcl 200 ref 180 180 variable_length 22(04) based bit(1) level 2 packed packed unaligned dcl 7-16 ref 165 NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. addrel builtin function dcl 200 alit_ptr automatic pointer dcl 5-11 allo1_max defined fixed bin(17,0) dcl 11-171 allo1_ptr defined pointer dcl 11-67 alter_flag defined fixed bin(17,0) dcl 11-135 alter_index defined fixed bin(17,0) dcl 11-153 alter_list_ptr defined pointer dcl 11-39 argptr internal static pointer dcl 124 binary builtin function dcl 200 cd_cnt defined fixed bin(17,0) dcl 11-197 cobol_$allo1_max external static fixed bin(17,0) dcl 11-170 cobol_$allo1_ptr external static pointer dcl 11-66 cobol_$alter_flag external static fixed bin(17,0) dcl 11-134 cobol_$alter_index external static fixed bin(17,0) dcl 11-152 cobol_$alter_list_ptr external static pointer dcl 11-38 cobol_$cd_cnt external static fixed bin(17,0) dcl 11-196 cobol_$cobol_data_wd_off external static fixed bin(17,0) dcl 11-118 cobol_$compile_count external static fixed bin(17,0) dcl 11-142 cobol_$coms_charcnt external static fixed bin(17,0) dcl 11-188 cobol_$coms_wdoff external static fixed bin(17,0) dcl 11-202 cobol_$con_end_ptr external static pointer dcl 11-10 cobol_$con_wd_off external static fixed bin(17,0) dcl 11-92 cobol_$cons_charcnt external static fixed bin(17,0) dcl 11-192 cobol_$constant_offset external static fixed bin(17,0) dcl 11-156 cobol_$data_init_flag external static fixed bin(17,0) dcl 11-130 cobol_$date_compiled_sw external static fixed bin(17,0) dcl 11-180 cobol_$debug_enable external static fixed bin(17,0) dcl 11-174 cobol_$def_base_ptr external static pointer dcl 11-12 cobol_$def_max external static fixed bin(17,0) dcl 11-96 cobol_$def_wd_off external static fixed bin(17,0) dcl 11-94 cobol_$diag_ptr external static pointer dcl 11-70 cobol_$eln_max external static fixed bin(17,0) dcl 11-172 cobol_$eln_ptr external static pointer dcl 11-68 cobol_$fixup_max external static fixed bin(17,0) dcl 11-164 cobol_$fixup_ptr external static pointer dcl 11-30 cobol_$fs_charcnt external static fixed bin(17,0) dcl 11-184 cobol_$fs_wdoff external static fixed bin(17,0) dcl 11-198 cobol_$include_cnt external static fixed bin(17,0) dcl 11-182 cobol_$include_info_ptr external static pointer dcl 11-86 cobol_$init_stack_off external static fixed bin(17,0) dcl 11-124 cobol_$initval_base_ptr external static pointer dcl 11-32 cobol_$initval_file_ptr external static pointer dcl 11-34 cobol_$initval_flag external static fixed bin(17,0) dcl 11-178 cobol_$link_base_ptr external static pointer dcl 11-14 cobol_$link_max external static fixed bin(17,0) dcl 11-100 cobol_$link_wd_off external static fixed bin(17,0) dcl 11-98 cobol_$list_off external static fixed bin(17,0) dcl 11-154 cobol_$list_ptr external static pointer dcl 11-64 cobol_$ls_charcnt external static fixed bin(17,0) dcl 11-190 cobol_$main_pcs_ptr external static pointer dcl 11-84 cobol_$map_data_max external static fixed bin(17,0) dcl 11-162 cobol_$map_data_ptr external static pointer dcl 11-54 cobol_$max_stack_off external static fixed bin(17,0) dcl 11-122 cobol_$minpral5_ptr external static pointer dcl 11-50 cobol_$misc_base_ptr external static pointer dcl 11-60 cobol_$misc_end_ptr external static pointer dcl 11-62 cobol_$misc_max external static fixed bin(17,0) dcl 11-158 cobol_$non_source_offset external static fixed bin(17,0) dcl 11-176 cobol_$ntbuf_ptr external static pointer dcl 11-82 cobol_$obj_seg_name external static char(32) dcl 11-208 cobol_$op_con_ptr external static pointer dcl 11-80 cobol_$para_eop_flag external static fixed bin(17,0) dcl 11-138 cobol_$pd_map_index external static fixed bin(17,0) dcl 11-116 cobol_$pd_map_max external static fixed bin(17,0) dcl 11-160 cobol_$pd_map_ptr external static pointer dcl 11-28 cobol_$pd_map_sw external static fixed bin(17,0) dcl 11-126 cobol_$perform_list_ptr external static pointer dcl 11-36 cobol_$perform_para_index external static fixed bin(17,0) dcl 11-148 cobol_$perform_sect_index external static fixed bin(17,0) dcl 11-150 cobol_$priority_no external static fixed bin(17,0) dcl 11-140 cobol_$ptr_assumption_ind external static fixed bin(17,0) dcl 11-144 cobol_$ptr_status_ptr external static pointer dcl 11-56 cobol_$reg_assumption_ind external static fixed bin(17,0) dcl 11-146 cobol_$reg_status_ptr external static pointer dcl 11-58 cobol_$reloc_def_base_ptr external static pointer dcl 11-20 cobol_$reloc_def_max external static fixed bin(24,0) dcl 11-108 cobol_$reloc_link_base_ptr external static pointer dcl 11-22 cobol_$reloc_link_max external static fixed bin(24,0) dcl 11-110 cobol_$reloc_sym_base_ptr external static pointer dcl 11-24 cobol_$reloc_sym_max external static fixed bin(24,0) dcl 11-112 cobol_$reloc_text_base_ptr external static pointer dcl 11-18 cobol_$reloc_text_max external static fixed bin(24,0) dcl 11-106 cobol_$reloc_work_base_ptr external static pointer dcl 11-26 cobol_$reloc_work_max external static fixed bin(24,0) dcl 11-114 cobol_$reswd_ptr external static pointer dcl 11-78 cobol_$same_sort_merge_proc external static bit(1) dcl 11-214 cobol_$scratch_dir external static char(168) dcl 11-206 cobol_$sect_eop_flag external static fixed bin(17,0) dcl 11-136 cobol_$seg_init_flag external static fixed bin(17,0) dcl 11-132 cobol_$seg_init_list_ptr external static pointer dcl 11-40 cobol_$stack_off external static fixed bin(17,0) dcl 11-120 cobol_$statement_info_ptr external static pointer dcl 11-76 cobol_$sym_base_ptr external static pointer dcl 11-16 cobol_$sym_max external static fixed bin(17,0) dcl 11-104 cobol_$sym_wd_off external static fixed bin(17,0) dcl 11-102 cobol_$tag_table_max external static fixed bin(17,0) dcl 11-166 cobol_$tag_table_ptr external static pointer dcl 11-52 cobol_$temp_token_area_ptr external static pointer dcl 11-42 cobol_$temp_token_max external static fixed bin(17,0) dcl 11-168 cobol_$temp_token_ptr external static pointer dcl 11-44 cobol_$text_base_ptr external static pointer dcl 11-8 cobol_$text_wd_off external static fixed bin(17,0) dcl 11-90 cobol_$token_block1_ptr external static pointer dcl 11-46 cobol_$token_block2_ptr external static pointer dcl 11-48 cobol_$value_cnt external static fixed bin(17,0) dcl 11-194 cobol_$ws_charcnt external static fixed bin(17,0) dcl 11-186 cobol_$ws_wdoff external static fixed bin(17,0) dcl 11-200 cobol_$xref_bypass external static bit(1) dcl 11-212 cobol_$xref_chain_ptr external static pointer dcl 11-74 cobol_$xref_token_ptr external static pointer dcl 11-72 cobol_data_wd_off defined fixed bin(17,0) dcl 11-119 cobol_emit 000000 constant entry external dcl 137 cobol_make_tagref 000000 constant entry external dcl 130 compile_count defined fixed bin(17,0) dcl 11-143 coms_charcnt defined fixed bin(17,0) dcl 11-189 coms_wdoff defined fixed bin(17,0) dcl 11-203 con_end_ptr defined pointer dcl 11-11 con_wd_off defined fixed bin(17,0) dcl 11-93 cons_charcnt defined fixed bin(17,0) dcl 11-193 constant_offset defined fixed bin(17,0) dcl 11-157 data_init_flag defined fixed bin(17,0) dcl 11-131 date_compiled_sw defined fixed bin(17,0) dcl 11-181 debug_enable defined fixed bin(17,0) dcl 11-175 def_base_ptr defined pointer dcl 11-13 def_max defined fixed bin(17,0) dcl 11-97 def_wd_off defined fixed bin(17,0) dcl 11-95 diag_ptr defined pointer dcl 11-71 eln_max defined fixed bin(17,0) dcl 11-173 eln_ptr defined pointer dcl 11-69 eos_ptr automatic pointer dcl 9-13 fixed builtin function dcl 200 fixup_max defined fixed bin(17,0) dcl 11-165 fixup_ptr defined pointer dcl 11-31 fs_charcnt defined fixed bin(17,0) dcl 11-185 fs_wdoff defined fixed bin(17,0) dcl 11-199 include_cnt defined fixed bin(17,0) dcl 11-183 include_info_ptr defined pointer dcl 11-87 index builtin function dcl 200 init_stack_off defined fixed bin(17,0) dcl 11-125 initval_base_ptr defined pointer dcl 11-33 initval_file_ptr defined pointer dcl 11-35 initval_flag defined fixed bin(17,0) dcl 11-179 length builtin function dcl 200 link_base_ptr defined pointer dcl 11-15 link_max defined fixed bin(17,0) dcl 11-101 link_wd_off defined fixed bin(17,0) dcl 11-99 list_off defined fixed bin(17,0) dcl 11-155 list_ptr defined pointer dcl 11-65 ls_charcnt defined fixed bin(17,0) dcl 11-191 main_pcs_ptr defined pointer dcl 11-85 map_data_max defined fixed bin(17,0) dcl 11-163 map_data_ptr defined pointer dcl 11-55 max_stack_off defined fixed bin(17,0) dcl 11-123 minpral5_ptr defined pointer dcl 11-51 misc_base_ptr defined pointer dcl 11-61 misc_end_ptr defined pointer dcl 11-63 misc_max defined fixed bin(17,0) dcl 11-159 mod builtin function dcl 200 next_tag defined fixed bin(17,0) dcl 11-129 nlit_ptr automatic pointer dcl 3-11 non_source_offset defined fixed bin(17,0) dcl 11-177 ntbuf_ptr defined pointer dcl 11-83 obj_seg_name defined char(32) dcl 11-209 op_con_ptr defined pointer dcl 11-81 para_eop_flag defined fixed bin(17,0) dcl 11-139 pd_map_index defined fixed bin(17,0) dcl 11-117 pd_map_max defined fixed bin(17,0) dcl 11-161 pd_map_ptr defined pointer dcl 11-29 pd_map_sw defined fixed bin(17,0) dcl 11-127 perform_list_ptr defined pointer dcl 11-37 perform_para_index defined fixed bin(17,0) dcl 11-149 perform_sect_index defined fixed bin(17,0) dcl 11-151 priority_no defined fixed bin(17,0) dcl 11-141 ptr_assumption_ind defined fixed bin(17,0) dcl 11-145 ptr_status_ptr defined pointer dcl 11-57 reg_assumption_ind defined fixed bin(17,0) dcl 11-147 reg_status_ptr defined pointer dcl 11-59 rel builtin function dcl 200 reloc_def_base_ptr defined pointer dcl 11-21 reloc_def_max defined fixed bin(24,0) dcl 11-109 reloc_link_base_ptr defined pointer dcl 11-23 reloc_link_max defined fixed bin(24,0) dcl 11-111 reloc_sym_base_ptr defined pointer dcl 11-25 reloc_sym_max defined fixed bin(24,0) dcl 11-113 reloc_text_base_ptr defined pointer dcl 11-19 reloc_text_max defined fixed bin(24,0) dcl 11-107 reloc_work_base_ptr defined pointer dcl 11-27 reloc_work_max defined fixed bin(24,0) dcl 11-115 reswd_ptr defined pointer dcl 11-79 rw_ptr automatic pointer dcl 1-11 same_sort_merge_proc defined bit(1) dcl 11-215 scratch_dir defined char(168) dcl 11-207 sect_eop_flag defined fixed bin(17,0) dcl 11-137 seg_init_flag defined fixed bin(17,0) dcl 11-133 seg_init_list_ptr defined pointer dcl 11-41 stack_off defined fixed bin(17,0) dcl 11-121 statement_info_ptr defined pointer dcl 11-77 stream automatic char(20) packed unaligned dcl 114 string builtin function dcl 200 sym_base_ptr defined pointer dcl 11-17 sym_max defined fixed bin(17,0) dcl 11-105 sym_wd_off defined fixed bin(17,0) dcl 11-103 tag_table_max defined fixed bin(17,0) dcl 11-167 tag_table_ptr defined pointer dcl 11-53 tagno1 automatic fixed bin(17,0) dcl 122 temp_token_area_ptr defined pointer dcl 11-43 temp_token_max defined fixed bin(17,0) dcl 11-169 temp_token_ptr defined pointer dcl 11-45 text_base_ptr defined pointer dcl 11-9 text_wd_off defined fixed bin(17,0) dcl 11-91 token_block1_ptr defined pointer dcl 11-47 token_block2_ptr defined pointer dcl 11-49 value_cnt defined fixed bin(17,0) dcl 11-195 ws_charcnt defined fixed bin(17,0) dcl 11-187 ws_wdoff defined fixed bin(17,0) dcl 11-201 xref_bypass defined bit(1) dcl 11-213 xref_chain_ptr defined pointer dcl 11-75 xref_token_ptr defined pointer dcl 11-73 NAMES DECLARED BY EXPLICIT CONTEXT. cobol_display_gen 000007 constant entry external dcl 27 start 000015 constant label dcl 141 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 454 604 323 464 Length 1206 323 130 365 130 100 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME cobol_display_gen 1128 external procedure is an external procedure. STORAGE FOR INTERNAL STATIC VARIABLES. LOC IDENTIFIER BLOCK NAME 000010 args cobol_display_gen 000044 nl_token cobol_display_gen 000054 rtype9 cobol_display_gen STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME cobol_display_gen 000100 stoff cobol_display_gen 000102 s cobol_display_gen 002110 i cobol_display_gen 002111 tflen cobol_display_gen 002112 tvlen cobol_display_gen 002113 errorno cobol_display_gen 002114 lineno cobol_display_gen 002115 tagno cobol_display_gen 002116 dn_ptr cobol_display_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_alloc$stack cobol_call_op cobol_define_tag cobol_io_util$move_direct cobol_ioop_util cobol_reg_manager$after_op cobol_string 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 27 000004 30 000014 141 000015 143 000017 144 000020 145 000026 146 000030 148 000041 149 000043 151 000044 153 000046 155 000052 156 000055 157 000056 158 000060 160 000062 161 000064 162 000075 163 000103 165 000106 167 000114 168 000116 169 000117 171 000124 173 000131 174 000132 175 000135 176 000140 177 000142 178 000151 179 000157 180 000160 182 000211 183 000231 184 000235 186 000245 187 000250 188 000256 190 000275 191 000310 193 000322 ----------------------------------------------------------- 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