COMPILATION LISTING OF SEGMENT declare_picture Compiled by: Multics PL/I Compiler, Release 32c, of June 16, 1989 Compiled at: Bull HN, Phoenix AZ, System-M Compiled on: 07/31/89 1404.3 mst Mon Options: optimize map 1 /* *********************************************************** 2* * * 3* * Copyright, (C) Honeywell Information Systems Inc., 1982 * 4* * * 5* * Copyright (c) 1972 by Massachusetts Institute of * 6* * Technology and Honeywell Information Systems, Inc. * 7* * * 8* *********************************************************** */ 9 10 11 declare_picture: proc(string,symbol_ptr,error_code); 12 13 dcl string char(*) aligned; 14 dcl symbol_ptr ptr; 15 dcl error_code fixed bin(15); 16 17 dcl n_storage_nodes fixed bin; 18 19 dcl pl1_stat_$node_uses(32) fixed bin ext static; 20 21 dcl bit_value bit(648) aligned based(addr(picture_constant)); 22 23 dcl (addr,substr) builtin; 24 25 dcl picture_info_ ext entry(char(*)aligned,ptr,fixed bin(15)); 26 1 1 /****^ ********************************************************* 1 2* * * 1 3* * Copyright, (C) BULL HN Information Systems Inc., 1989 * 1 4* * * 1 5* ********************************************************* */ 1 6 1 7 /* BEGIN INCLUDE FILE ... language_utility.incl.pl1 */ 1 8 1 9 1 10 /****^ HISTORY COMMENTS: 1 11* 1) change(89-07-10,RWaters), approve(89-07-10,MCR8118), audit(89-07-19,Vu), 1 12* install(89-07-31,MR12.3-1066): 1 13* Removed the obsolete parameter source_line from the dcl of error_(). 1 14* END HISTORY COMMENTS */ 1 15 1 16 /* Modified: 6 Jun 1979 by PG to add rank and byte 1 17* * Modified: 9 Jul 1989 by RW updated the declaration of error_ 1 18* */ 1 19 1 20 declare adjust_count entry(pointer); 1 21 /* parameter 1: (input) any node pointer */ 1 22 1 23 declare bindec entry(fixed bin(31)) reducible 1 24 returns(character(12) aligned); 1 25 /* parameter 1: (input) bin value */ 1 26 /* return: (output) character value with blanks */ 1 27 1 28 declare bindec$vs entry(fixed bin(31)) reducible 1 29 returns(character(12) aligned varying); 1 30 /* parameter 1: (input) binary value */ 1 31 /* return: (output) char value without blanks */ 1 32 1 33 declare binoct entry(fixed bin(31)) reducible 1 34 returns(char(12) aligned); 1 35 /* parameter 1: (input) binary value */ 1 36 /* return: (output) char value with blanks */ 1 37 1 38 declare binary_to_octal_string entry(fixed bin(31)) reducible 1 39 returns(char(12) aligned); 1 40 /* parameter 1: (input) binary value */ 1 41 /* return: (output) right-aligned char value */ 1 42 1 43 declare binary_to_octal_var_string entry(fixed bin(31)) reducible 1 44 returns(char(12) varying aligned); 1 45 /* parameter 1: (input) binary value */ 1 46 /* returns: (output) char value without blanks */ 1 47 1 48 declare compare_expression entry(pointer,pointer) reducible 1 49 returns(bit(1) aligned); 1 50 /* parameter 1: (input) any node pointer */ 1 51 /* parameter 2: (input) any node pointer */ 1 52 /* return: (output) compare bit */ 1 53 1 54 declare constant_length entry (pointer, fixed bin (71)) 1 55 returns (bit (1) aligned); 1 56 /* parameter 1: (input) reference node pointer */ 1 57 /* parameter 2: (input) value of constant length */ 1 58 /* return: (output) "1"b if constant length */ 1 59 1 60 declare convert entry(pointer,bit(36) aligned) 1 61 returns(pointer); 1 62 /* parameter 1: (input) any node pointer */ 1 63 /* parameter 2: (input) target type */ 1 64 /* return: (output) target value tree pointer */ 1 65 1 66 declare convert$to_integer entry(pointer,bit(36)aligned) 1 67 returns(pointer); 1 68 /* parameter 1: (input) any node pointer */ 1 69 /* parameter 2: (input) target type */ 1 70 /* return: (output) target value tree pointer */ 1 71 1 72 declare convert$from_builtin entry(pointer,bit(36) aligned) 1 73 returns(pointer); 1 74 /* parameter 1: (input) any node pointer */ 1 75 /* parameter 2: (input) target type */ 1 76 /* return: (output) target value tree pointer */ 1 77 1 78 declare convert$validate entry(pointer,pointer); 1 79 /* parameter 1: (input) source value tree pointer */ 1 80 /* parameter 2: (input) target reference node pointer */ 1 81 1 82 declare convert$to_target_fb entry(pointer,pointer) 1 83 returns(pointer); 1 84 /* parameter 1: (input) source value tree pointer */ 1 85 /* parameter 2: (input) target reference node pointer */ 1 86 /* return: (output) target value tree pointer */ 1 87 1 88 declare convert$to_target entry(pointer,pointer) 1 89 returns(pointer); 1 90 /* parameter 1: (input) source value tree pointer */ 1 91 /* parameter 2: (input) target reference node pointer */ 1 92 /* return: (output) target value tree pointer */ 1 93 1 94 declare copy_expression entry(pointer unaligned) 1 95 returns(pointer); 1 96 /* parameter 1: (input) any node pointer */ 1 97 /* return: (output) any node pointer */ 1 98 1 99 declare copy_expression$copy_sons entry(pointer,pointer); 1 100 /* parameter 1: (input) father symbol node pointer */ 1 101 /* parameter 2: (input) stepfather symbol node ptr */ 1 102 1 103 declare copy_unique_expression entry(pointer) 1 104 returns(pointer); 1 105 /* parameter 1: (input) any node pointer */ 1 106 /* return: (output) any node pointer */ 1 107 1 108 declare create_array entry() 1 109 returns(pointer); 1 110 /* return: (output) array node pointer */ 1 111 1 112 declare create_block entry(bit(9) aligned,pointer) 1 113 returns(pointer); 1 114 /* parameter 1: (input) block type */ 1 115 /* parameter 2: (input) father block node pointer */ 1 116 /* return: (output) block node pointer */ 1 117 1 118 declare create_bound entry() 1 119 returns(pointer); 1 120 /* return: (output) bound node pointer */ 1 121 1 122 declare create_context entry(pointer,pointer) 1 123 returns(pointer); 1 124 /* parameter 1: (input) block node pointer */ 1 125 /* parameter 2: (input) token pointer */ 1 126 /* return: (output) context node pointer */ 1 127 1 128 declare create_cross_reference entry() 1 129 returns(pointer); 1 130 /* return: (output) cross reference node pointer */ 1 131 1 132 declare create_default entry 1 133 returns(pointer); 1 134 /* return: (output) default node pointer */ 1 135 1 136 declare create_identifier entry() 1 137 returns(pointer); 1 138 /* return: (output) token node pointer */ 1 139 1 140 declare create_label entry(pointer,pointer,bit(3) aligned) 1 141 returns(pointer); 1 142 /* parameter 1: (input) block node pointer */ 1 143 /* parameter 2: (input) token node pointer */ 1 144 /* parameter 3: (input) declare type */ 1 145 /* return: (output) label node pointer */ 1 146 1 147 declare create_list entry(fixed bin(15)) 1 148 returns(pointer); 1 149 /* parameter 1: (input) number of list elements */ 1 150 /* return: (output) list node pointer */ 1 151 1 152 declare create_operator entry(bit(9) aligned,fixed bin(15)) 1 153 returns(pointer); 1 154 /* parameter 1: (input) operator type */ 1 155 /* parameter 2: (input) number of operands */ 1 156 /* return: (output) operator node pointer */ 1 157 1 158 declare create_reference entry(pointer) 1 159 returns(pointer); 1 160 /* parameter 1: (input) symbol node pointer */ 1 161 /* return: (output) reference node pointer */ 1 162 1 163 declare create_statement entry(bit(9) aligned,pointer,pointer,bit(12) aligned) 1 164 returns(pointer); 1 165 /* parameter 1: (input) statement type */ 1 166 /* parameter 2: (input) block node pointer */ 1 167 /* parameter 3: (input) label node pointer */ 1 168 /* parameter 4: (input) conditions */ 1 169 /* return: (output) statement node pointer */ 1 170 1 171 declare create_statement$prologue entry(bit(9) aligned,pointer,pointer,bit(12) aligned) 1 172 returns(pointer); 1 173 /* parameter 1: (input) statement type */ 1 174 /* parameter 2: (input) block node pointer */ 1 175 /* parameter 3: (input) label node pointer */ 1 176 /* parameter 4: (input) conditions */ 1 177 /* return: (output) statement node pointer */ 1 178 1 179 declare create_storage entry(fixed bin(15)) 1 180 returns(pointer); 1 181 /* parameter 1: (input) number of words */ 1 182 /* return: (output) storage block pointer */ 1 183 1 184 declare create_symbol entry(pointer,pointer,bit(3) aligned) 1 185 returns(pointer); 1 186 /* parameter 1: (input) block node pointer */ 1 187 /* parameter 2: (input) token node pointer */ 1 188 /* parameter 3: (input) declare type */ 1 189 /* return: (output) symbol node pointer */ 1 190 1 191 declare create_token entry (character (*), bit (9) aligned) 1 192 returns (ptr); 1 193 /* parameter 1: (input) token string */ 1 194 /* parameter 2: (input) token type */ 1 195 /* return: (output) token node ptr */ 1 196 1 197 declare create_token$init_hash_table entry (); 1 198 1 199 declare create_token$protected entry (char (*), bit (9) aligned, bit (18) aligned) 1 200 returns (ptr); 1 201 /* parameter 1: (input) token string */ 1 202 /* parameter 2: (input) token type */ 1 203 /* parameter 3: (input) protected flag */ 1 204 /* return: (output) token node ptr */ 1 205 1 206 declare decbin entry(character(*) aligned) reducible 1 207 returns(fixed bin(31)); 1 208 /* parameter 1: (input) decimal character string */ 1 209 /* return: (output) binary value */ 1 210 1 211 declare declare_constant entry(bit(*) aligned,bit(36) aligned,fixed bin(31),fixed bin(15)) 1 212 returns(pointer); 1 213 /* parameter 1: (input) value */ 1 214 /* parameter 2: (input) type */ 1 215 /* parameter 3: (input) size */ 1 216 /* parameter 4: (input) scale */ 1 217 /* return: (output) reference node pointer */ 1 218 1 219 declare declare_constant$bit entry(bit(*) aligned) 1 220 returns(pointer); 1 221 /* parameter 1: (input) bit */ 1 222 /* return: (output) reference node pointer */ 1 223 1 224 declare declare_constant$char entry(character(*) aligned) 1 225 returns(pointer); 1 226 /* parameter 1: (input) character */ 1 227 /* return: (output) reference node pointer */ 1 228 1 229 declare declare_constant$desc entry(bit(*) aligned) 1 230 returns(pointer); 1 231 /* parameter 1: (input) descriptor bit value */ 1 232 /* return: (output) reference node pointer */ 1 233 1 234 declare declare_constant$integer entry(fixed bin(31)) /* note...should really be fixed bin(24) */ 1 235 returns(pointer); 1 236 /* parameter 1: (input) integer */ 1 237 /* return: (output) reference node pointer */ 1 238 1 239 declare declare_descriptor entry(pointer,pointer,pointer,pointer,bit(2) aligned) 1 240 returns(pointer); 1 241 /* parameter 1: (input) block node pointer */ 1 242 /* parameter 2: (input) statement node pointer */ 1 243 /* parameter 3: (input) symbol node pointer */ 1 244 /* parameter 4: (input) loc pointer */ 1 245 /* parameter 5: (input) array descriptor bit 1 246* cross_section bit */ 1 247 /* return: (output) reference node pointer */ 1 248 1 249 declare declare_descriptor$ctl entry(pointer,pointer,pointer,pointer,bit(2) aligned) 1 250 returns(pointer); 1 251 /* parameter 1: (input) block node pointer */ 1 252 /* parameter 2: (input) statement node pointer */ 1 253 /* parameter 3: (input) symbol node pointer */ 1 254 /* parameter 4: (input) loc pointer */ 1 255 /* parameter 5: (input) array descriptor bit 1 256* cross_section bit */ 1 257 /* return: (output) reference node pointer */ 1 258 1 259 declare declare_descriptor$param entry(pointer,pointer,pointer,pointer,bit(2) aligned) 1 260 returns(pointer); 1 261 /* parameter 1: (input) block node pointer */ 1 262 /* parameter 2: (input) statement node pointer */ 1 263 /* parameter 3: (input) symbol node pointer */ 1 264 /* parameter 4: (input) loc pointer */ 1 265 /* parameter 5: (input) array descriptor bit 1 266* cross_section bit */ 1 267 /* return: (output) reference node pointer */ 1 268 1 269 declare declare_integer entry(pointer) 1 270 returns(pointer); 1 271 /* parameter 1: (input) block node pointer */ 1 272 /* return: (output) reference node pointer */ 1 273 1 274 declare declare_picture entry(char(*)aligned,pointer,fixed bin(15)); 1 275 /* parameter 1: (input) picture string */ 1 276 /* parameter 2: (input) symbol node pointer */ 1 277 /* parameter 3: (output) error code, if any */ 1 278 1 279 declare declare_picture_temp entry(char(*) aligned,fixed bin(31),bit(1) aligned,bit(1) aligned) 1 280 returns(pointer); 1 281 /* parameter 1: (input) picture string */ 1 282 /* parameter 2: (input) scalefactor of picture */ 1 283 /* parameter 3: (input) ="1"b => complex picture */ 1 284 /* parameter 4: (input) ="1"b => unaligned temp */ 1 285 /* return: (output) reference node pointer */ 1 286 1 287 declare declare_pointer entry(pointer) 1 288 returns(pointer); 1 289 /* parameter 1: (input) block node pointer */ 1 290 /* return: (output) reference node pointer */ 1 291 1 292 declare declare_temporary entry(bit(36) aligned,fixed bin(31),fixed bin(15),pointer) 1 293 returns(pointer); 1 294 /* parameter 1: (input) type */ 1 295 /* parameter 2: (input) precision */ 1 296 /* parameter 3: (input) scale */ 1 297 /* parameter 4: (input) length */ 1 298 /* return: (output) reference node pointer */ 1 299 1 300 declare decode_node_id entry(pointer,bit(1) aligned) 1 301 returns(char(120) varying); 1 302 /* parameter 1: (input) node pointer */ 1 303 /* parameter 2: (input) ="1"b => capitals */ 1 304 /* return: (output) source line id */ 1 305 1 306 declare decode_source_id entry( 2 1 1 structure unaligned, 2 2 2 /* file_number */ bit(8), 2 3 2 /* line_number */ bit(14), 2 4 2 /* stmt_number */ bit(5), 1 307 1 308 bit(1) aligned) 1 309 returns(char(120) varying); 1 310 /* parameter 1: (input) source id */ 1 311 /* parameter 2: (input) ="1"b => capitals */ 1 312 /* return: (output) source line id */ 1 313 1 314 declare error entry(fixed bin(15),pointer,pointer); 1 315 /* parameter 1: (input) error number */ 1 316 /* parameter 2: (input) statement node pointer or null*/ 1 317 /* parameter 3: (input) token node pointer */ 1 318 1 319 declare error$omit_text entry(fixed bin(15),pointer,pointer); 1 320 /* parameter 1: (input) error number */ 1 321 /* parameter 2: (input) statement node pointer or null*/ 1 322 /* parameter 3: (input) token node pointer */ 1 323 1 324 declare error_ entry(fixed bin(15), 3 1 1 structure unaligned, 3 2 2 /* file_number */ bit(8), 3 3 2 /* line_number */ bit(14), 3 4 2 /* stmt_number */ bit(5), 1 325 1 326 pointer,fixed bin(8),fixed bin(23),fixed bin(11)); 1 327 /* parameter 1: (input) error number */ 1 328 /* parameter 2: (input) statement id */ 1 329 /* parameter 3: (input) any node pointer */ 1 330 /* parameter 4: (input) source segment */ 1 331 /* parameter 5: (input) source starting character */ 1 332 /* parameter 6: (input) source length */ 1 333 1 334 declare error_$no_text entry(fixed bin(15), 4 1 1 structure unaligned, 4 2 2 /* file_number */ bit(8), 4 3 2 /* line_number */ bit(14), 4 4 2 /* stmt_number */ bit(5), 1 335 1 336 pointer); 1 337 /* parameter 1: (input) error number */ 1 338 /* parameter 2: (input) statement id */ 1 339 /* parameter 3: (input) any node pointer */ 1 340 1 341 declare error_$initialize_error entry(); 1 342 1 343 declare error_$finish entry(); 1 344 1 345 declare free_node entry(pointer); 1 346 /* parameter 1: any node pointer */ 1 347 1 348 declare get_array_size entry(pointer,fixed bin(3)); 1 349 /* parameter 1: (input) symbol node pointer */ 1 350 /* parameter 2: (input) units */ 1 351 1 352 declare get_size entry(pointer); 1 353 /* parameter 1: (input) symbol node pointer */ 1 354 1 355 declare merge_attributes external entry(pointer,pointer) 1 356 returns(bit(1) aligned); 1 357 /* parameter 1: (input) target symbol node pointer */ 1 358 /* parameter 2: (input) source symbol node pointer */ 1 359 /* return: (output) "1"b if merge was unsuccessful */ 1 360 1 361 declare optimizer entry(pointer); 1 362 /* parameter 1: (input) root pointer */ 1 363 1 364 declare parse_error entry(fixed bin(15),pointer); 1 365 /* parameter 1: (input) error number */ 1 366 /* parameter 2: (input) any node pointer */ 1 367 1 368 declare parse_error$no_text entry(fixed bin(15),pointer); 1 369 /* parameter 1: (input) error number */ 1 370 /* parameter 2: (input) any node pointer */ 1 371 1 372 declare pl1_error_print$write_out 1 373 entry(fixed bin(15), 5 1 1 structure unaligned, 5 2 2 /* file_number */ bit(8), 5 3 2 /* line_number */ bit(14), 5 4 2 /* stmt_number */ bit(5), 1 374 1 375 pointer,fixed bin(11),fixed bin(31),fixed bin(31),fixed bin(15)); 1 376 /* parameter 1: (input) error number */ 1 377 /* parameter 2: (input) statement identification */ 1 378 /* parameter 3: (input) any node pointer */ 1 379 /* parameter 4: (input) source segment */ 1 380 /* parameter 5: (input) source character index */ 1 381 /* parameter 6: (input) source length */ 1 382 /* parameter 7: (input) source line */ 1 383 1 384 declare pl1_error_print$listing_segment 1 385 entry(fixed bin(15), 6 1 1 structure unaligned, 6 2 2 /* file_number */ bit(8), 6 3 2 /* line_number */ bit(14), 6 4 2 /* stmt_number */ bit(5), 1 386 1 387 pointer); 1 388 /* parameter 1: (input) error number */ 1 389 /* parameter 2: (input) statement identification */ 1 390 /* parameter 3: (input) token node pointer */ 1 391 1 392 declare pl1_print$varying entry(character(*) aligned varying); 1 393 /* parameter 1: (input) string */ 1 394 1 395 declare pl1_print$varying_nl entry(character(*) aligned varying); 1 396 /* parameter 1: (input) string */ 1 397 1 398 declare pl1_print$non_varying entry(character(*) aligned,fixed bin(31)); 1 399 /* parameter 1: (input) string */ 1 400 /* parameter 2: (input) string length or 0 */ 1 401 1 402 declare pl1_print$non_varying_nl entry(character(*) aligned,fixed bin(31)); 1 403 /* parameter 1: (input) string */ 1 404 /* parameter 2: (input) string length or 0 */ 1 405 1 406 declare pl1_print$string_pointer entry(pointer,fixed bin(31)); 1 407 /* parameter 1: (input) string pointer */ 1 408 /* parameter 2: (input) string size */ 1 409 1 410 declare pl1_print$string_pointer_nl entry(pointer,fixed bin(31)); 1 411 /* parameter 1: (input) string pointer */ 1 412 /* parameter 2: (input) string length or 0 */ 1 413 1 414 declare pl1_print$unaligned_nl entry(character(*) unaligned,fixed bin(31)); 1 415 /* parameter 1: (input) string */ 1 416 /* parameter 2: (input) length */ 1 417 1 418 declare pl1_print$for_lex entry (ptr, fixed bin (14), fixed bin (21), fixed bin (21), bit (1) aligned, bit (1) aligned); 1 419 /* parameter 1: (input) ptr to base of source segment */ 1 420 /* parameter 2: (input) line number */ 1 421 /* parameter 3: (input) starting offset in source seg */ 1 422 /* parameter 4: (input) number of chars to copy */ 1 423 /* parameter 5: (input) ON iff shd print line number */ 1 424 /* parameter 6: (input) ON iff line begins in comment */ 1 425 1 426 declare refer_extent entry(pointer,pointer); 1 427 /* parameter 1: (input/output) null,ref node,op node pointer */ 1 428 /* parameter 2: (input) null,ref node,op node pointer */ 1 429 1 430 declare reserve$clear entry() 1 431 returns(pointer); 1 432 /* return: (output) pointer */ 1 433 1 434 declare reserve$declare_lib entry(fixed bin(15)) 1 435 returns(pointer); 1 436 /* parameter 1: (input) builtin function number */ 1 437 /* return: (output) pointer */ 1 438 1 439 declare reserve$read_lib entry(fixed bin(15)) 1 440 returns(pointer); 1 441 /* parameter 1: (input) builtin function number */ 1 442 /* return: (output) pointer */ 1 443 1 444 declare semantic_translator entry(); 1 445 1 446 declare semantic_translator$abort entry(fixed bin(15),pointer); 1 447 /* parameter 1: (input) error number */ 1 448 /* parameter 2: (input) any node pointer */ 1 449 1 450 declare semantic_translator$error entry(fixed bin(15),pointer); 1 451 /* parameter 1: (input) error number */ 1 452 /* parameter 2: (input) any node pointer */ 1 453 1 454 declare share_expression entry(ptr) 1 455 returns(ptr); 1 456 /* parameter 1: (input) usually operator node pointer */ 1 457 /* return: (output) tree pointer or null */ 1 458 1 459 declare token_to_binary entry(ptr) reducible 1 460 returns(fixed bin(31)); 1 461 /* parameter 1: (input) token node pointer */ 1 462 /* return: (output) converted binary value */ 1 463 1 464 /* END INCLUDE FILE ... language_utility.incl.pl1 */ 27 7 1 dcl 1 picture_constant aligned, 7 2 7 3 2 type fixed bin(8) unal, /* 24-charpic,25-realfixpic,26-complexfixpic 7 4* 27-realflopic,28-complexflopic */ 7 5 2 prec fixed bin(8) unal, /* precision or length of associated value */ 7 6 2 scale fixed bin(8) unal, /* for both fixed and float pictures, 7 7* =ndigits after "v" - scale_factor */ 7 8 2 piclength fixed bin(8) unal, /* length of picture_constant.chars, <64 7 9* =length of normalized-picture-string */ 7 10 2 varlength fixed bin(8) unal, /* length of pictured variable in chars, <64 7 11* =length of normalized_picture_string - "k" and "v" */ 7 12 2 scalefactor fixed bin(8) unal, /* value of pict-sc-f, -256<=x<256 */ 7 13 2 explength fixed bin(8) unal, /* length of exp field for float */ 7 14 2 drift_character char(1) unal, 7 15 2 chars char(64) aligned; 28 8 1 /* BEGIN INCLUDE FILE ... picture_image.incl.pl1 8 2* 8 3* James R. Davis 12 Mar 79 8 4**/ 8 5 8 6 dcl 1 picture_image aligned based, 8 7 2 type fixed bin (8) unal, 8 8 2 prec fixed bin (8) unal, /* precision or length of associated value */ 8 9 2 scale fixed bin (8) unal, /* for both fixed and float pictures, 8 10* =ndigits after "v" - scale_factor */ 8 11 2 piclength fixed bin (8) unal, /* length of picture_constant.chars, <64 8 12* =length of normalized-picture-string */ 8 13 2 varlength fixed bin (8) unal, /* length of pictured variable in chars, <64 8 14* =length of normalized_picture_string - "k" and "v" */ 8 15 2 scalefactor fixed bin (8) unal, /* value of pict-sc-f, -256<=x<256 */ 8 16 2 explength fixed bin (8) unal, /* length of exp field for float */ 8 17 2 drift_character char (1) unal, 8 18 2 chars char (0 refer (picture_image.piclength)) aligned; 8 19 8 20 dcl ( 8 21 picture_char_type init (24), 8 22 picture_realfix_type init (25), 8 23 picture_complexfix_type 8 24 init (26), 8 25 picture_realflo_type init (27), 8 26 picture_complexflo_type 8 27 init (28) 8 28 ) fixed bin (8) unal static internal options (constant); 8 29 8 30 /* END INCLUDE FILE ... picture_image.incl.pl1 */ 29 9 1 dcl ( char_picture init(24), 9 2 real_fixed_picture init(25), 9 3 cplx_fixed_picture init(26), 9 4 real_float_picture init(27), 9 5 cplx_float_picture init(28)) fixed bin int static options(constant); 30 10 1 /* BEGIN INCLUDE FILE ... reference.incl.pl1 */ 10 2 10 3 dcl 1 reference based aligned, 10 4 2 node_type bit(9) unaligned, 10 5 2 array_ref bit(1) unaligned, 10 6 2 varying_ref bit(1) unaligned, 10 7 2 shared bit(1) unaligned, 10 8 2 put_data_sw bit(1) unaligned, 10 9 2 processed bit(1) unaligned, 10 10 2 units fixed(3) unaligned, 10 11 2 ref_count fixed(17) unaligned, 10 12 2 c_offset fixed(24), 10 13 2 c_length fixed(24), 10 14 2 symbol ptr unaligned, 10 15 2 qualifier ptr unaligned, 10 16 2 offset ptr unaligned, 10 17 2 length ptr unaligned, 10 18 2 subscript_list ptr unaligned, 10 19 /* these fields are used by the 645 code generator */ 10 20 2 address structure unaligned, 10 21 3 base bit(3), 10 22 3 offset bit(15), 10 23 3 op bit(9), 10 24 3 no_address bit(1), 10 25 3 inhibit bit(1), 10 26 3 ext_base bit(1), 10 27 3 tag bit(6), 10 28 2 info structure unaligned, 10 29 3 address_in structure, 10 30 4 b dimension(0:7) bit(1), 10 31 4 storage bit(1), 10 32 3 value_in structure, 10 33 4 a bit(1), 10 34 4 q bit(1), 10 35 4 aq bit(1), 10 36 4 string_aq bit(1), 10 37 4 complex_aq bit(1), 10 38 4 decimal_aq bit(1), 10 39 4 b dimension(0:7) bit(1), 10 40 4 storage bit(1), 10 41 4 indicators bit(1), 10 42 4 x dimension(0:7) bit(1), 10 43 3 other structure, 10 44 4 big_offset bit(1), 10 45 4 big_length bit(1), 10 46 4 modword_in_offset bit(1), 10 47 2 data_type fixed(5) unaligned, 10 48 2 bits structure unaligned, 10 49 3 padded_ref bit(1), 10 50 3 aligned_ref bit(1), 10 51 3 long_ref bit(1), 10 52 3 forward_ref bit(1), 10 53 3 ic_ref bit(1), 10 54 3 temp_ref bit(1), 10 55 3 defined_ref bit(1), 10 56 3 evaluated bit(1), 10 57 3 allocate bit(1), 10 58 3 allocated bit(1), 10 59 3 aliasable bit(1), 10 60 3 even bit(1), 10 61 3 perm_address bit(1), 10 62 3 aggregate bit(1), 10 63 3 hit_zero bit(1), 10 64 3 dont_save bit(1), 10 65 3 fo_in_qual bit(1), 10 66 3 hard_to_load bit(1), 10 67 2 relocation bit(12) unaligned, 10 68 2 more_bits structure unaligned, 10 69 3 substr bit(1), 10 70 3 padded_for_store_ref bit(1), 10 71 3 aligned_for_store_ref bit(1), 10 72 3 mbz bit(15), 10 73 2 store_ins bit(18) unaligned; 10 74 10 75 /* END INCLUDE FILE ... reference.incl.pl1 */ 31 11 1 /* BEGIN INCLUDE FILE ... symbol.incl.pl1 */ 11 2 11 3 dcl 1 symbol based aligned, 11 4 2 node_type bit(9) unal, 11 5 2 source_id structure unal, 11 6 3 file_number bit(8), 11 7 3 line_number bit(14), 11 8 3 statement_number bit(5), 11 9 2 location fixed(18) unal unsigned, 11 10 2 allocated bit(1) unal, 11 11 2 dcl_type bit(3) unal, 11 12 2 reserved bit(6) unal, 11 13 2 pix unal, 11 14 3 pic_fixed bit(1) unal, 11 15 3 pic_float bit(1) unal, 11 16 3 pic_char bit(1) unal, 11 17 3 pic_scale fixed(7) unal, 11 18 3 pic_size fixed(7) unal, 11 19 2 level fixed(8) unal, 11 20 2 boundary fixed(3) unal, 11 21 2 size_units fixed(3) unal, 11 22 2 scale fixed(7) unal, 11 23 2 runtime bit(18) unal, 11 24 2 runtime_offset bit(18) unal, 11 25 2 block_node ptr unal, 11 26 2 token ptr unal, 11 27 2 next ptr unal, 11 28 2 multi_use ptr unal, 11 29 2 cross_references ptr unal, 11 30 2 initial ptr unal, 11 31 2 array ptr unal, 11 32 2 descriptor ptr unal, 11 33 2 equivalence ptr unal, 11 34 2 reference ptr unal, 11 35 2 general ptr unal, 11 36 2 father ptr unal, 11 37 2 brother ptr unal, 11 38 2 son ptr unal, 11 39 2 word_size ptr unal, 11 40 2 bit_size ptr unal, 11 41 2 dcl_size ptr unal, 11 42 2 symtab_size ptr unal, 11 43 2 c_word_size fixed(24), 11 44 2 c_bit_size fixed(24), 11 45 2 c_dcl_size fixed(24), 11 46 11 47 2 attributes structure aligned, 11 48 3 data_type structure unal, 11 49 4 structure bit(1) , 11 50 4 fixed bit(1), 11 51 4 float bit(1), 11 52 4 bit bit(1), 11 53 4 char bit(1), 11 54 4 ptr bit(1), 11 55 4 offset bit(1), 11 56 4 area bit(1), 11 57 4 label bit(1), 11 58 4 entry bit(1), 11 59 4 file bit(1), 11 60 4 arg_descriptor bit(1), 11 61 4 storage_block bit(1), 11 62 4 explicit_packed bit(1), /* options(packed) */ 11 63 4 condition bit(1), 11 64 4 format bit(1), 11 65 4 builtin bit(1), 11 66 4 generic bit(1), 11 67 4 picture bit(1), 11 68 11 69 3 misc_attributes structure unal, 11 70 4 dimensioned bit(1), 11 71 4 initialed bit(1), 11 72 4 aligned bit(1), 11 73 4 unaligned bit(1), 11 74 4 signed bit(1), 11 75 4 unsigned bit(1), 11 76 4 precision bit(1), 11 77 4 varying bit(1), 11 78 4 local bit(1), 11 79 4 decimal bit(1), 11 80 4 binary bit(1), 11 81 4 real bit(1), 11 82 4 complex bit(1), 11 83 4 variable bit(1), 11 84 4 reducible bit(1), 11 85 4 irreducible bit(1), 11 86 4 returns bit(1), 11 87 4 position bit(1), 11 88 4 internal bit(1), 11 89 4 external bit(1), 11 90 4 like bit(1), 11 91 4 member bit(1), 11 92 4 non_varying bit(1), 11 93 4 options bit(1), 11 94 4 variable_arg_list bit(1), /* options(variable) */ 11 95 4 alloc_in_text bit(1), /* options(constant) */ 11 96 11 97 3 storage_class structure unal, 11 98 4 auto bit(1), 11 99 4 based bit(1), 11 100 4 static bit(1), 11 101 4 controlled bit(1), 11 102 4 defined bit(1), 11 103 4 parameter bit(1), 11 104 4 param_desc bit(1), 11 105 4 constant bit(1), 11 106 4 temporary bit(1), 11 107 4 return_value bit(1), 11 108 11 109 3 file_attributes structure unal, 11 110 4 print bit(1), 11 111 4 input bit(1), 11 112 4 output bit(1), 11 113 4 update bit(1), 11 114 4 stream bit(1), 11 115 4 reserved_1 bit(1), 11 116 4 record bit(1), 11 117 4 sequential bit(1), 11 118 4 direct bit(1), 11 119 4 interactive bit(1), /* env(interactive) */ 11 120 4 reserved_2 bit(1), 11 121 4 reserved_3 bit(1), 11 122 4 stringvalue bit(1), /* env(stringvalue) */ 11 123 4 keyed bit(1), 11 124 4 reserved_4 bit(1), 11 125 4 environment bit(1), 11 126 11 127 3 compiler_developed structure unal, 11 128 4 aliasable bit(1), 11 129 4 packed bit(1), 11 130 4 passed_as_arg bit(1), 11 131 4 allocate bit(1), 11 132 4 set bit(1), 11 133 4 exp_extents bit(1), 11 134 4 refer_extents bit(1), 11 135 4 star_extents bit(1), 11 136 4 isub bit(1), 11 137 4 put_in_symtab bit(1), 11 138 4 contiguous bit(1), 11 139 4 put_data bit(1), 11 140 4 overlayed bit(1), 11 141 4 error bit(1), 11 142 4 symtab_processed bit(1), 11 143 4 overlayed_by_builtin bit(1), 11 144 4 defaulted bit(1), 11 145 4 connected bit(1); 11 146 11 147 /* END INCLUDE FILE ... symbol.incl.pl1 */ 32 12 1 /* BEGIN INCLUDE FILE ... system.incl.pl1 */ 12 2 12 3 /* Modified: 25 Apr 1979 by PCK to implemnt 4-bit decimal */ 12 4 12 5 dcl ( max_p_flt_bin_1 initial(27), 12 6 max_p_flt_bin_2 initial(63), 12 7 max_p_fix_bin_1 initial(35), 12 8 max_p_fix_bin_2 initial(71), 12 9 12 10 max_p_dec initial(59), 12 11 max_p_bin_or_dec initial (71), /* max (max_p_fix_bin_2, max_p_dec) */ 12 12 12 13 min_scale initial(-128), 12 14 max_scale initial(+127), 12 15 max_bit_string initial(9437184), 12 16 max_char_string initial(1048576), 12 17 max_area_size initial(262144), 12 18 min_area_size initial(28), 12 19 12 20 max_bit_string_constant initial (253), /* max length of bit literals */ 12 21 max_char_string_constant initial (254), /* max length of character literals */ 12 22 max_identifier_length initial (256), 12 23 max_number_of_dimensions initial (127), 12 24 12 25 max_length_precision initial(24), 12 26 max_offset_precision initial(24), /* 18 bits for word offset + 6 bits for bit offset */ 12 27 12 28 max_words_per_variable initial (262144), 12 29 12 30 bits_per_word initial(36), 12 31 bits_per_double initial(72), 12 32 packed_digits_per_character initial(2), 12 33 characters_per_half initial(2), 12 34 characters_per_word initial(4), 12 35 characters_per_double initial(8), 12 36 12 37 bits_per_character initial(9), 12 38 bits_per_half initial(18), 12 39 bits_per_decimal_digit initial(9), 12 40 bits_per_binary_exponent initial(8), 12 41 bits_per_packed_ptr initial(36), 12 42 words_per_packed_pointer initial(1), 12 43 12 44 words_per_fix_bin_1 initial(1), 12 45 words_per_fix_bin_2 initial(2), 12 46 words_per_flt_bin_1 initial(1), 12 47 words_per_flt_bin_2 initial(2), 12 48 words_per_varying_string_header initial(1), 12 49 words_per_offset initial(1), 12 50 words_per_pointer initial(2), 12 51 words_per_label_var initial(4), 12 52 words_per_entry_var initial(4), 12 53 words_per_file_var initial(4), 12 54 words_per_format initial(4), 12 55 words_per_condition_var initial(6), 12 56 12 57 max_index_register_value initial(262143), 12 58 max_signed_index_register_value initial(131071), 12 59 12 60 max_signed_xreg_precision initial(17), 12 61 max_uns_xreg_precision initial(18), 12 62 12 63 default_area_size initial(1024), 12 64 default_flt_bin_p initial(27), 12 65 default_fix_bin_p initial(17), 12 66 default_flt_dec_p initial(10), 12 67 default_fix_dec_p initial(7)) fixed bin(31) internal static options(constant); 12 68 12 69 dcl bits_per_digit initial(4.5) fixed bin(31,1) internal static options(constant); 12 70 12 71 dcl ( integer_type initial("010000000000000000000100000001100000"b), 12 72 dec_integer_type initial("010000000000000000000100000010100000"b), 12 73 pointer_type initial("000001000000000000000100000000000000"b), 12 74 real_type initial("001000000000000000000100000001100000"b), 12 75 complex_type initial("001000000000000000000100000001010000"b), 12 76 builtin_type initial("000000000000000010000000000000000000"b), 12 77 storage_block_type initial("000000000000100000000000000000000000"b), 12 78 arg_desc_type initial("000000000001000000000000000000000000"b), 12 79 local_label_var_type initial("000000001000000000000100000100001000"b), 12 80 entry_var_type initial("000000000100000000000000000000001000"b), 12 81 bit_type initial("000100000000000000000000000000000000"b), 12 82 char_type initial("000010000000000000000000000000000000"b)) bit(36) aligned int static 12 83 options(constant); 12 84 12 85 /* END INCLUDE FILE ... system.incl.pl1 */ 33 34 35 call picture_info_(string,addr(picture_constant),error_code); 36 37 if error_code^=0 38 then do; 39 picture_constant.piclength = 64; 40 41 /* following code is inserted only to prevent future faults */ 42 43 symbol_ptr->symbol.pix.pic_fixed = "1"b; 44 symbol_ptr->symbol.pix.pic_size = default_fix_dec_p; 45 goto skip; 46 end; 47 48 symbol_ptr->symbol.pix.pic_size = picture_constant.prec; 49 50 if picture_constant.type = real_fixed_picture 51 then symbol_ptr->symbol.pix.pic_fixed = "1"b; 52 else symbol_ptr->symbol.pix.pic_float = "1"b; 53 54 if symbol_ptr->symbol.pix.pic_fixed 55 then symbol_ptr->symbol.pix.pic_scale = picture_constant.scale-picture_constant.scalefactor; 56 57 if picture_constant.type=char_picture 58 then symbol_ptr->symbol.pix.pic_char = "1"b; 59 60 if symbol_ptr->symbol.complex 61 then do; 62 if picture_constant.type = real_fixed_picture 63 then picture_constant.type = cplx_fixed_picture; 64 else if picture_constant.type = real_float_picture 65 then picture_constant.type = cplx_float_picture; 66 67 symbol_ptr->symbol.reference->reference.c_length, 68 symbol_ptr->symbol.c_dcl_size = 2 * picture_constant.varlength; 69 end; 70 71 else do; 72 symbol_ptr->symbol.reference->reference.c_length , 73 symbol_ptr->symbol.c_dcl_size = picture_constant.varlength; 74 end; 75 76 skip: 77 78 /* Note that we really should use unspec(addr(picture_constant) -> picture_image) */ 79 80 /* We don't want the picture constant to be allocated unless absolutely necessary 81* (e.g., for I/O), but we don't want to turn off allocate bit if it was 82* turned on for a previous picture. Since declare_constant normally turns 83* the bit on, we must go to some trouble to do this right. */ 84 85 n_storage_nodes = pl1_stat_$node_uses(14); 86 symbol_ptr->symbol.general = declare_constant$bit(substr(bit_value,1,72+picture_constant.piclength*9)); 87 if n_storage_nodes ^= pl1_stat_$node_uses(14) 88 then symbol_ptr->symbol.general->reference.symbol->symbol.allocate = "0"b; 89 90 end declare_picture; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 07/31/89 1338.3 declare_picture.pl1 >spec>install>MR12.3-1066>declare_picture.pl1 27 1 07/31/89 1332.6 language_utility.incl.pl1 >spec>install>MR12.3-1066>language_utility.incl.pl1 1-307 2 05/06/74 1746.9 source_id_descriptor.incl.pl1 >ldd>include>source_id_descriptor.incl.pl1 1-325 3 05/06/74 1746.9 source_id_descriptor.incl.pl1 >ldd>include>source_id_descriptor.incl.pl1 1-335 4 05/06/74 1746.9 source_id_descriptor.incl.pl1 >ldd>include>source_id_descriptor.incl.pl1 1-374 5 05/06/74 1746.9 source_id_descriptor.incl.pl1 >ldd>include>source_id_descriptor.incl.pl1 1-386 6 05/06/74 1746.9 source_id_descriptor.incl.pl1 >ldd>include>source_id_descriptor.incl.pl1 28 7 05/06/74 1742.6 picture_constant.incl.pl1 >ldd>include>picture_constant.incl.pl1 29 8 06/28/79 1204.8 picture_image.incl.pl1 >ldd>include>picture_image.incl.pl1 30 9 05/03/76 1320.4 picture_types.incl.pl1 >ldd>include>picture_types.incl.pl1 31 10 07/21/80 1546.3 reference.incl.pl1 >ldd>include>reference.incl.pl1 32 11 12/07/83 1701.7 symbol.incl.pl1 >ldd>include>symbol.incl.pl1 33 12 12/07/83 1701.7 system.incl.pl1 >ldd>include>system.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 23 ref 35 35 86 86 allocate 33(02) based bit(1) level 4 packed packed unaligned dcl 11-3 set ref 87* attributes 31 based structure level 2 dcl 11-3 bit_value based bit(648) dcl 21 ref 86 86 c_dcl_size 30 based fixed bin(24,0) level 2 dcl 11-3 set ref 67* 72* c_length 2 based fixed bin(24,0) level 2 dcl 10-3 set ref 67* 72* char_picture constant fixed bin(17,0) initial dcl 9-1 ref 57 compiler_developed 32(35) based structure level 3 packed packed unaligned dcl 11-3 complex 31(31) based bit(1) level 4 packed packed unaligned dcl 11-3 ref 60 cplx_fixed_picture constant fixed bin(17,0) initial dcl 9-1 ref 62 cplx_float_picture constant fixed bin(17,0) initial dcl 9-1 ref 64 declare_constant$bit 000014 constant entry external dcl 1-219 ref 86 default_fix_dec_p constant fixed bin(31,0) initial dcl 12-5 ref 44 error_code parameter fixed bin(15,0) dcl 15 set ref 11 35* 37 general 16 based pointer level 2 packed packed unaligned dcl 11-3 set ref 86* 87 misc_attributes 31(19) based structure level 3 packed packed unaligned dcl 11-3 n_storage_nodes 000100 automatic fixed bin(17,0) dcl 17 set ref 76* 87 pic_char 1(30) based bit(1) level 3 packed packed unaligned dcl 11-3 set ref 57* pic_fixed 1(28) based bit(1) level 3 packed packed unaligned dcl 11-3 set ref 43* 50* 54 pic_float 1(29) based bit(1) level 3 packed packed unaligned dcl 11-3 set ref 52* pic_scale 1(31) based fixed bin(7,0) level 3 packed packed unaligned dcl 11-3 set ref 54* pic_size 2(03) based fixed bin(7,0) level 3 packed packed unaligned dcl 11-3 set ref 44* 48* piclength 0(27) 000101 automatic fixed bin(8,0) level 2 packed packed unaligned dcl 7-1 set ref 39* 86 86 picture_constant 000101 automatic structure level 1 dcl 7-1 set ref 35 35 86 86 picture_info_ 000012 constant entry external dcl 25 ref 35 pix 1(28) based structure level 2 packed packed unaligned dcl 11-3 pl1_stat_$node_uses 000010 external static fixed bin(17,0) array dcl 19 ref 76 87 prec 0(09) 000101 automatic fixed bin(8,0) level 2 packed packed unaligned dcl 7-1 set ref 48 real_fixed_picture constant fixed bin(17,0) initial dcl 9-1 ref 50 62 real_float_picture constant fixed bin(17,0) initial dcl 9-1 ref 64 reference 15 based pointer level 2 in structure "symbol" packed packed unaligned dcl 11-3 in procedure "declare_picture" ref 67 72 reference based structure level 1 dcl 10-3 in procedure "declare_picture" scale 0(18) 000101 automatic fixed bin(8,0) level 2 packed packed unaligned dcl 7-1 set ref 54 scalefactor 1(09) 000101 automatic fixed bin(8,0) level 2 packed packed unaligned dcl 7-1 set ref 54 string parameter char dcl 13 set ref 11 35* substr builtin function dcl 23 ref 86 86 symbol 3 based pointer level 2 in structure "reference" packed packed unaligned dcl 10-3 in procedure "declare_picture" ref 87 symbol based structure level 1 dcl 11-3 in procedure "declare_picture" symbol_ptr parameter pointer dcl 14 ref 11 43 44 48 50 52 54 54 57 60 67 67 72 72 86 87 type 000101 automatic fixed bin(8,0) level 2 packed packed unaligned dcl 7-1 set ref 50 57 62 62* 64 64* varlength 1 000101 automatic fixed bin(8,0) level 2 packed packed unaligned dcl 7-1 set ref 67 72 NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. adjust_count 000000 constant entry external dcl 1-20 arg_desc_type internal static bit(36) initial dcl 12-71 binary_to_octal_string 000000 constant entry external dcl 1-38 binary_to_octal_var_string 000000 constant entry external dcl 1-43 bindec 000000 constant entry external dcl 1-23 bindec$vs 000000 constant entry external dcl 1-28 binoct 000000 constant entry external dcl 1-33 bit_type internal static bit(36) initial dcl 12-71 bits_per_binary_exponent internal static fixed bin(31,0) initial dcl 12-5 bits_per_character internal static fixed bin(31,0) initial dcl 12-5 bits_per_decimal_digit internal static fixed bin(31,0) initial dcl 12-5 bits_per_digit internal static fixed bin(31,1) initial dcl 12-69 bits_per_double internal static fixed bin(31,0) initial dcl 12-5 bits_per_half internal static fixed bin(31,0) initial dcl 12-5 bits_per_packed_ptr internal static fixed bin(31,0) initial dcl 12-5 bits_per_word internal static fixed bin(31,0) initial dcl 12-5 builtin_type internal static bit(36) initial dcl 12-71 char_type internal static bit(36) initial dcl 12-71 characters_per_double internal static fixed bin(31,0) initial dcl 12-5 characters_per_half internal static fixed bin(31,0) initial dcl 12-5 characters_per_word internal static fixed bin(31,0) initial dcl 12-5 compare_expression 000000 constant entry external dcl 1-48 complex_type internal static bit(36) initial dcl 12-71 constant_length 000000 constant entry external dcl 1-54 convert 000000 constant entry external dcl 1-60 convert$from_builtin 000000 constant entry external dcl 1-72 convert$to_integer 000000 constant entry external dcl 1-66 convert$to_target 000000 constant entry external dcl 1-88 convert$to_target_fb 000000 constant entry external dcl 1-82 convert$validate 000000 constant entry external dcl 1-78 copy_expression 000000 constant entry external dcl 1-94 copy_expression$copy_sons 000000 constant entry external dcl 1-99 copy_unique_expression 000000 constant entry external dcl 1-103 create_array 000000 constant entry external dcl 1-108 create_block 000000 constant entry external dcl 1-112 create_bound 000000 constant entry external dcl 1-118 create_context 000000 constant entry external dcl 1-122 create_cross_reference 000000 constant entry external dcl 1-128 create_default 000000 constant entry external dcl 1-132 create_identifier 000000 constant entry external dcl 1-136 create_label 000000 constant entry external dcl 1-140 create_list 000000 constant entry external dcl 1-147 create_operator 000000 constant entry external dcl 1-152 create_reference 000000 constant entry external dcl 1-158 create_statement 000000 constant entry external dcl 1-163 create_statement$prologue 000000 constant entry external dcl 1-171 create_storage 000000 constant entry external dcl 1-179 create_symbol 000000 constant entry external dcl 1-184 create_token 000000 constant entry external dcl 1-191 create_token$init_hash_table 000000 constant entry external dcl 1-197 create_token$protected 000000 constant entry external dcl 1-199 dec_integer_type internal static bit(36) initial dcl 12-71 decbin 000000 constant entry external dcl 1-206 declare_constant 000000 constant entry external dcl 1-211 declare_constant$char 000000 constant entry external dcl 1-224 declare_constant$desc 000000 constant entry external dcl 1-229 declare_constant$integer 000000 constant entry external dcl 1-234 declare_descriptor 000000 constant entry external dcl 1-239 declare_descriptor$ctl 000000 constant entry external dcl 1-249 declare_descriptor$param 000000 constant entry external dcl 1-259 declare_integer 000000 constant entry external dcl 1-269 declare_picture 000000 constant entry external dcl 1-274 declare_picture_temp 000000 constant entry external dcl 1-279 declare_pointer 000000 constant entry external dcl 1-287 declare_temporary 000000 constant entry external dcl 1-292 decode_node_id 000000 constant entry external dcl 1-300 decode_source_id 000000 constant entry external dcl 1-306 default_area_size internal static fixed bin(31,0) initial dcl 12-5 default_fix_bin_p internal static fixed bin(31,0) initial dcl 12-5 default_flt_bin_p internal static fixed bin(31,0) initial dcl 12-5 default_flt_dec_p internal static fixed bin(31,0) initial dcl 12-5 entry_var_type internal static bit(36) initial dcl 12-71 error 000000 constant entry external dcl 1-314 error$omit_text 000000 constant entry external dcl 1-319 error_ 000000 constant entry external dcl 1-324 error_$finish 000000 constant entry external dcl 1-343 error_$initialize_error 000000 constant entry external dcl 1-341 error_$no_text 000000 constant entry external dcl 1-334 free_node 000000 constant entry external dcl 1-345 get_array_size 000000 constant entry external dcl 1-348 get_size 000000 constant entry external dcl 1-352 integer_type internal static bit(36) initial dcl 12-71 local_label_var_type internal static bit(36) initial dcl 12-71 max_area_size internal static fixed bin(31,0) initial dcl 12-5 max_bit_string internal static fixed bin(31,0) initial dcl 12-5 max_bit_string_constant internal static fixed bin(31,0) initial dcl 12-5 max_char_string internal static fixed bin(31,0) initial dcl 12-5 max_char_string_constant internal static fixed bin(31,0) initial dcl 12-5 max_identifier_length internal static fixed bin(31,0) initial dcl 12-5 max_index_register_value internal static fixed bin(31,0) initial dcl 12-5 max_length_precision internal static fixed bin(31,0) initial dcl 12-5 max_number_of_dimensions internal static fixed bin(31,0) initial dcl 12-5 max_offset_precision internal static fixed bin(31,0) initial dcl 12-5 max_p_bin_or_dec internal static fixed bin(31,0) initial dcl 12-5 max_p_dec internal static fixed bin(31,0) initial dcl 12-5 max_p_fix_bin_1 internal static fixed bin(31,0) initial dcl 12-5 max_p_fix_bin_2 internal static fixed bin(31,0) initial dcl 12-5 max_p_flt_bin_1 internal static fixed bin(31,0) initial dcl 12-5 max_p_flt_bin_2 internal static fixed bin(31,0) initial dcl 12-5 max_scale internal static fixed bin(31,0) initial dcl 12-5 max_signed_index_register_value internal static fixed bin(31,0) initial dcl 12-5 max_signed_xreg_precision internal static fixed bin(31,0) initial dcl 12-5 max_uns_xreg_precision internal static fixed bin(31,0) initial dcl 12-5 max_words_per_variable internal static fixed bin(31,0) initial dcl 12-5 merge_attributes 000000 constant entry external dcl 1-355 min_area_size internal static fixed bin(31,0) initial dcl 12-5 min_scale internal static fixed bin(31,0) initial dcl 12-5 optimizer 000000 constant entry external dcl 1-361 packed_digits_per_character internal static fixed bin(31,0) initial dcl 12-5 parse_error 000000 constant entry external dcl 1-364 parse_error$no_text 000000 constant entry external dcl 1-368 picture_char_type internal static fixed bin(8,0) initial packed unaligned dcl 8-20 picture_complexfix_type internal static fixed bin(8,0) initial packed unaligned dcl 8-20 picture_complexflo_type internal static fixed bin(8,0) initial packed unaligned dcl 8-20 picture_image based structure level 1 dcl 8-6 picture_realfix_type internal static fixed bin(8,0) initial packed unaligned dcl 8-20 picture_realflo_type internal static fixed bin(8,0) initial packed unaligned dcl 8-20 pl1_error_print$listing_segment 000000 constant entry external dcl 1-384 pl1_error_print$write_out 000000 constant entry external dcl 1-372 pl1_print$for_lex 000000 constant entry external dcl 1-418 pl1_print$non_varying 000000 constant entry external dcl 1-398 pl1_print$non_varying_nl 000000 constant entry external dcl 1-402 pl1_print$string_pointer 000000 constant entry external dcl 1-406 pl1_print$string_pointer_nl 000000 constant entry external dcl 1-410 pl1_print$unaligned_nl 000000 constant entry external dcl 1-414 pl1_print$varying 000000 constant entry external dcl 1-392 pl1_print$varying_nl 000000 constant entry external dcl 1-395 pointer_type internal static bit(36) initial dcl 12-71 real_type internal static bit(36) initial dcl 12-71 refer_extent 000000 constant entry external dcl 1-426 reserve$clear 000000 constant entry external dcl 1-430 reserve$declare_lib 000000 constant entry external dcl 1-434 reserve$read_lib 000000 constant entry external dcl 1-439 semantic_translator 000000 constant entry external dcl 1-444 semantic_translator$abort 000000 constant entry external dcl 1-446 semantic_translator$error 000000 constant entry external dcl 1-450 share_expression 000000 constant entry external dcl 1-454 storage_block_type internal static bit(36) initial dcl 12-71 token_to_binary 000000 constant entry external dcl 1-459 words_per_condition_var internal static fixed bin(31,0) initial dcl 12-5 words_per_entry_var internal static fixed bin(31,0) initial dcl 12-5 words_per_file_var internal static fixed bin(31,0) initial dcl 12-5 words_per_fix_bin_1 internal static fixed bin(31,0) initial dcl 12-5 words_per_fix_bin_2 internal static fixed bin(31,0) initial dcl 12-5 words_per_flt_bin_1 internal static fixed bin(31,0) initial dcl 12-5 words_per_flt_bin_2 internal static fixed bin(31,0) initial dcl 12-5 words_per_format internal static fixed bin(31,0) initial dcl 12-5 words_per_label_var internal static fixed bin(31,0) initial dcl 12-5 words_per_offset internal static fixed bin(31,0) initial dcl 12-5 words_per_packed_pointer internal static fixed bin(31,0) initial dcl 12-5 words_per_pointer internal static fixed bin(31,0) initial dcl 12-5 words_per_varying_string_header internal static fixed bin(31,0) initial dcl 12-5 NAMES DECLARED BY EXPLICIT CONTEXT. declare_picture 000015 constant entry external dcl 11 skip 000170 constant label dcl 76 ref 45 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 326 344 250 336 Length 764 250 16 403 56 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME declare_picture 104 external procedure is an external procedure. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME declare_picture 000100 n_storage_nodes declare_picture 000101 picture_constant declare_picture THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. alloc_bit_temp call_ext_out_desc return_mac shorten_stack ext_entry_desc THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. declare_constant$bit picture_info_ THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. pl1_stat_$node_uses LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 11 000011 35 000030 37 000053 39 000056 43 000060 44 000064 45 000070 48 000071 50 000100 52 000110 54 000112 57 000133 60 000140 62 000143 64 000150 67 000154 69 000162 72 000163 76 000170 86 000174 87 000231 90 000243 ----------------------------------------------------------- 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