COMPILATION LISTING OF SEGMENT reserve Compiled by: Multics PL/I Compiler, Release 33e, of October 6, 1992 Compiled at: CGI Compiled on: 2000-04-18_1137.24_Tue_mdt 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 reserve$declare_lib: proc(number) returns(ptr); 12 13 dcl (p,q,s) ptr, 14 (error_number,i,k,m,n,number) fixed bin(15), 15 test_string char(20) varying aligned, 16 17 (declared_array,renamed_array) bit(216) aligned int static, 18 parallel_ptr_number fixed bin(15) int static, 19 parallel_ptr(40) ptr int static, 20 21 pl1_stat_$use_old_area bit(1) aligned ext static, 22 23 pl1_stat_$root ptr ext static; 24 25 dcl (addr,length,null,substr) builtin; 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 /* BEGIN INCLUDE FILE ... boundary.incl.pl1 */ 7 2 7 3 /* Modified: 26 Apr 1979 by PCK to implement 4-bit decimal */ 7 4 7 5 dcl ( bit_ init(1), 7 6 digit_ init(2), 7 7 character_ init(3), 7 8 half_ init(4), 7 9 word_ init(5), 7 10 mod2_ init(6), 7 11 mod4_ init(7)) fixed bin(3) int static options(constant); 7 12 7 13 /* END INCLUDE FILE ... boundary.incl.pl1 */ 28 8 1 /* BEGIN INCLUDE FILE ... declare_type.incl.pl1 */ 8 2 8 3 /* Modified: 25 Apr 1979 by PCK to implement 4-bit decimal */ 8 4 8 5 dcl ( by_declare initial("001"b), 8 6 by_explicit_context initial("010"b), 8 7 by_context initial("011"b), 8 8 by_implication initial("100"b), 8 9 by_compiler initial("101"b)) int static bit(3) aligned options(constant); 8 10 8 11 /* END INCLUDE FILE ... declare_type.incl.pl1 */ 29 9 1 /* BEGIN INCLUDE FILE ... op_codes.incl.pl1 */ 9 2 9 3 /* Modified: 25 Apr 1979 by PCK 4-bit decimal */ 9 4 /* Modified: 6 Jun 1979 by PG to add rank and byte */ 9 5 /* Modified: 26 Dec 1979 by PCK to add assign_by_name */ 9 6 /* Modified: 26 July 82 BIM wordno, segno */ 9 7 9 8 dcl ( add initial("000010001"b), /* opnd(1) <- opnd(2)+opnd(3) */ 9 9 sub initial("000010010"b), /* opnd(1) <- opnd(2)-opnd(3) */ 9 10 mult initial("000010011"b), /* opnd(1) <- opnd(2)*opnd(3) */ 9 11 div initial("000010100"b), /* opnd(1) <- opnd(2)/opnd(3) */ 9 12 negate initial("000010101"b), /* opnd(1) <- -opnd(2) */ 9 13 exp initial("000010110"b), /* opnd(1) <- opnd(2) ** opnd(3) */ 9 14 9 15 and_bits initial("000100001"b), /* opnd(1) <- opnd(2) & opnd(3) */ 9 16 or_bits initial("000100010"b), /* opnd(1) <- opnd(2)|opnd(3) */ 9 17 xor_bits initial("000100011"b), /* opnd(1) <- opnd(2) xor opnd(3) */ 9 18 not_bits initial("000100100"b), /* opnd(1) <- ^opnd(2) */ 9 19 cat_string initial("000100101"b), /* opnd(1) <- opnd(2)||opnd(3) */ 9 20 bool_fun initial("000100110"b), /* opnd(1) <- bool(opnd(2),opnd(3),opnd(4)) */ 9 21 9 22 assign initial("000110001"b), /* opnd(1) <- opnd(2) */ 9 23 assign_size_ck initial("000110010"b), /* opnd(1) <- opnd(2) */ 9 24 assign_zero initial("000110011"b), /* opnd(1) <- 0 */ 9 25 copy_words initial("000110100"b), /* move opnd(2) to opnd(1) by opnd(3) words */ 9 26 copy_string initial("000110101"b), /* move opnd(2) to opnd(1) by opnd(3) units */ 9 27 make_desc initial("000110110"b), /* opnd(1) <- descriptor(opnd(2),opnd(3)) */ 9 28 assign_round initial("000110111"b), /* opnd(1) <- opnd(2) rounded */ 9 29 pack initial("000111000"b), /* opnd(1) <- encode to picture opnd(2) */ 9 30 unpack initial("000111001"b), /* opnd(1) <- decode from picture opnd(2) */ 9 31 9 32 less_than initial("001000100"b), /* opnd(1) <- opnd(2) < opnd(3) */ 9 33 greater_than initial("001000101"b), /* opnd(1) <- opnd(2) > opnd(3) */ 9 34 equal initial("001000110"b), /* opnd(1) <- opnd(2) = opnd(3) */ 9 35 not_equal initial("001000111"b), /* opnd(1) <- opnd(2) ^= opnd(3) */ 9 36 less_or_equal initial("001001000"b), /* opnd(1) <- opnd(2) <= opnd(3) */ 9 37 greater_or_equal initial("001001001"b), /* opnd(1) <- opnd(2) >= opnd(3) */ 9 38 9 39 jump initial("001010001"b), /* go to opnd(1) unconditionally */ 9 40 jump_true initial("001010010"b), /* go to opnd(1) if opnd(2) is not 0 */ 9 41 jump_false initial("001010011"b), /* go to opnd(1) if opnd(2) is all 0 */ 9 42 jump_if_lt initial("001010100"b), /* go to opnd(1) if opnd(2) < opnd(3) */ 9 43 jump_if_gt initial("001010101"b), /* go to opnd(1) if opnd(2) > opnd(3) */ 9 44 jump_if_eq initial("001010110"b), /* go to opnd(1) if opnd(2) = opnd(3) */ 9 45 jump_if_ne initial("001010111"b), /* go to opnd(1) if opnd(2) ^= opnd(3) */ 9 46 jump_if_le initial("001011000"b), /* go to opnd(1) if opnd(2) <= opnd(3) */ 9 47 jump_if_ge initial("001011001"b), /* go to opnd(1) if opnd(2) >= opnd(3) */ 9 48 9 49 std_arg_list initial("001100001"b), /* opnd(1) <- arglist(opnd(2) desclist(opnd(3))) */ 9 50 return_words initial("001100010"b), /* return aggregate opnd(1), opnd(2) is length in words */ 9 51 std_call initial("001100011"b), /* opnd(1) <- call opnd(2) with opnd(3) */ 9 52 return_bits initial("001100100"b), /* return aggregate opnd(1), opnd(2) is length in bits */ 9 53 std_entry initial("001100101"b), /* entry(opnd(1)... opnd(n)) */ 9 54 return_string initial("001100110"b), /* return string opnd(1) */ 9 55 ex_prologue initial("001100111"b), /* execute the prologue -no operands- */ 9 56 allot_auto initial("001101000"b), /* opnd(1) <- addrel(stack,opnd(2)) */ 9 57 param_ptr initial("001101001"b), /* opnd(1) <- ptr to opnd(2) in block opnd(3) */ 9 58 param_desc_ptr initial("001101010"b), /* opnd(1) <- ptr to opnd(2) in block opnd(3) */ 9 59 std_return initial("001101011"b), /* return -no arguments- */ 9 60 allot_ctl initial("001101100"b), /* allocate opnd(1) , length in words is opnd(2) */ 9 61 free_ctl initial("001101101"b), /* free opnd(1) */ 9 62 stop initial("001101110"b), /* stop - terminate run unit */ 9 63 9 64 mod_bit initial("001110000"b), /* opnd(1) <- mod(opnd(3),36), 9 65* opnd(2) <- opnd(3) / 36 */ 9 66 mod_byte initial("001110001"b), /* opnd(1) <- mod(opnd(3),4), 9 67* opnd(2) <- opnd(3) / 4 */ 9 68 mod_half initial("001110010"b), /* opnd(1) <- mod(opnd(3),2), 9 69* opnd(2) <- opnd(3) / 2 */ 9 70 mod_word initial("001110011"b), /* TO BE DEFINED BY BLW */ 9 71 9 72 bit_to_char initial("010000000"b), /* opnd(1) <- (opnd(2)+8)/9 */ 9 73 bit_to_word initial("010000001"b), /* opnd(1) <- (opnd(2)+35)/36 */ 9 74 char_to_word initial("010000010"b), /* opnd(1) <- (opnd(2)+3)/4 */ 9 75 half_to_word initial("010000011"b), /* opnd(1) <- (opnd(2)+1)/2 */ 9 76 word_to_mod2 initial("010000100"b), /* opnd(1) <- (opnd(2)+1)/2*2 */ 9 77 word_to_mod4 initial("010000101"b), /* opnd(1) <- (opnd(2)+3)/4*4 */ 9 78 word_to_mod8 initial("010000110"b), /* opnd(1) <- (opnd(2)+7)/8*8 */ 9 79 rel_fun initial("010000111"b), /* opnd(1) <- rel(opnd(2)) */ 9 80 baseno_fun initial("010001000"b), /* opnd(1) <- baseno(opnd(2)) */ 9 81 desc_size initial("010001001"b), /* opnd(1) <- substr(opnd(2),13,24) */ 9 82 bit_pointer initial("010001010"b), /* opnd(1) <- bit offset of opnd(2) */ 9 83 index_before_fun initial("010001011"b), /* opnd(1) <- length of before(opnd(2),opnd(3)) */ 9 84 index_after_fun initial("010001100"b), /* opnd(1) <- offset of after(opnd(2),opnd(3)) in opnd(2) */ 9 85 verify_ltrim_fun initial("010001101"b), /* opnd(1) <- offset of ltrim(opnd(2),opnd(3)) in opnd(2) */ 9 86 verify_rtrim_fun initial("010001110"b), /* opnd(1) <- length(opnd(2))-length(rtrim(opnd(2),opnd(3))) */ 9 87 digit_to_bit initial("010001111"b), /* opnd(1) <- 9*opnd(2)/2 */ 9 88 9 89 ceil_fun initial("010010000"b), /* opnd(1) <- ceil(opnd(2)) */ 9 90 floor_fun initial("010010001"b), /* opnd(1) <- floor(opnd(2)) */ 9 91 round_fun initial("010010010"b), /* opnd(1) <- round(opnd(2)) */ 9 92 sign_fun initial("010010011"b), /* opnd(1) <- sign(opnd(2)) */ 9 93 abs_fun initial("010010100"b), /* opnd(1) <- abs(opnd(2)) */ 9 94 trunc_fun initial("010010101"b), /* opnd(1) <- trunc(opnd(2)) */ 9 95 byte_fun initial("010010110"b), /* opnd(1) <- byte(opnd(2)) */ 9 96 rank_fun initial("010010111"b), /* opnd(1) <- rank(opnd(2)) */ 9 97 index_rev_fun initial("010011000"b), /* opnd(1) <- index(reverse(opnd(2)),reverse(opnd(3))) */ 9 98 search_rev_fun initial("010011001"b), /* opnd(1) <- search(reverse(opnd(2)),opnd(3)) */ 9 99 verify_rev_fun initial("010011010"b), /* opnd(1) <- verify(reverse(opnd(2)),opnd(3)) */ 9 100 wordno_fun initial("010011011"b), /* opnd(1) <- wordno (opnd(2)) */ 9 101 segno_fun initial("010011100"b), /* opnd(1) <- segno (opnd(2)) */ 9 102 bitno_fun initial("010011101"b), /* opnd(1) <- bitno (opnd(2)) */ 9 103 charno_fun initial("010011110"b), /* opnd(1) <- charno (opnd(2)) */ 9 104 9 105 index_fun initial("010100000"b), /* opnd(1) <- index(opnd(2),opnd(3)) */ 9 106 off_fun initial("010100001"b), /* opnd(1) <- offset(opnd(2),opnd(3)) */ 9 107 complex_fun initial("010100010"b), /* opnd(1) <- complex(opnd(2),opnd(3)) */ 9 108 conjg_fun initial("010100011"b), /* opnd(1) <- conjg(opnd(2),opnd(3)) */ 9 109 mod_fun initial("010100100"b), /* opnd(1) <- mod(opnd(2),opnd(3)) */ 9 110 repeat_fun initial("010100101"b), /* opnd(1) <- repeat(opnd(2),opnd(3)) */ 9 111 verify_fun initial("010100110"b), /* opnd(1) <- verify(opnd(2),opnd(3)) */ 9 112 translate_fun initial("010100111"b), /* opnd(1) <- translate(opnd(2),opnd(3))*/ 9 113 real_fun initial("010101001"b), /* opnd(1) <- real(opnd(2)) */ 9 114 imag_fun initial("010101010"b), /* opnd(1) <- imag(opnd(2)) */ 9 115 length_fun initial("010101011"b), /* opnd(1) <- length(opnd(2)) */ 9 116 pl1_mod_fun initial("010101100"b), /* opnd(1) <- mod(opnd(2)) */ 9 117 search_fun initial("010101101"b), /* opnd(1) <- search(opnd(2),opnd(3)) */ 9 118 allocation_fun initial("010101110"b), /* opnd(1) <- allocation(opnd(2)) */ 9 119 reverse_fun initial("010101111"b), /* opnd(1) <- reverse(opnd(2)) */ 9 120 9 121 addr_fun initial("010110000"b), /* opnd(1) <- addr(opnd(2)) */ 9 122 addr_fun_bits initial("010110001"b), /* opnd(1) <- addr(opnd(2)) */ 9 123 ptr_fun initial("010110010"b), /* opnd(1) <- ptr(opnd(2),opnd(3)) */ 9 124 baseptr_fun initial("010110011"b), /* opnd(1) <- baseptr(opnd(2)) */ 9 125 addrel_fun initial("010110100"b), /* opnd(1) <- addrel(opnd(2),opnd(3)) */ 9 126 codeptr_fun initial("010110101"b), /* opnd(1) <- codeptr(opnd(2)) */ 9 127 environmentptr_fun initial("010110110"b), /* opnd(1) <- environmentptr(opnd(2)) */ 9 128 stackbaseptr_fun initial("010110111"b), /* opnd(1) is ptr to base of current stack */ 9 129 stackframeptr_fun initial("010111000"b), /* opnd(1) is ptr to current block's stack frame */ 9 130 setcharno_fun initial("010111001"b), /* opnd(1) <- opnd(2) with charno opnd(3) */ 9 131 addcharno_fun initial("010111010"b), /* opnd(1) <- opnd(2) with charno = charno + opnd(3) */ 9 132 setbitno_fun initial("010111011"b), /* setcharno for bitsno */ 9 133 addbitno_fun initial("010111100"b), /* addcharno for bitno */ 9 134 9 135 min_fun initial("011000000"b), /* opnd(1) <- min(opnd(1),opnd(2),...) */ 9 136 max_fun initial("011000001"b), /* opnd(1) <- max(opnd(1),opnd(2),...) */ 9 137 9 138 stack_ptr initial("011010001"b), /* opnd(1) <- stack frame ptr */ 9 139 empty_area initial("011010010"b), /* empty opnd(1), length in words is opnd(2) */ 9 140 enable_on initial("011010100"b), /* opnd(1) is the cond name 9 141* opnd(2) is the file name 9 142* opnd(3) is the block */ 9 143 revert_on initial("011010101"b), /* opnd(1) is the cond name, 9 144* opnd(2) is the file name */ 9 145 signal_on initial("011010110"b), /* opnd(1) is the cond name 9 146* opnd(2) is the file name */ 9 147 9 148 lock_fun initial("011010111"b), /* opnd(1) <- stac(opnd(2),opnd(3)) */ 9 149 stacq_fun initial("011011000"b), /* opnd(1) is result, opnd(2) is ptr to lock word, 9 150* opnd(3) is old value, (4) is new value. */ 9 151 clock_fun initial("011011001"b), /* opnd(1) is the clock time */ 9 152 vclock_fun initial("011011010"b), /* opnd(1) is the virtual clock time */ 9 153 9 154 bound_ck initial("011100000"b), /* opnd(1) <- opnd(2) if opnd(3) <= opnd(2) <= opnd(4) */ 9 155 range_ck initial("011100001"b), /* opnd(1) <- opnd(2) if opnd(3) <= opnd(2) <= opnd(4) */ 9 156 loop initial("011100010"b), /* do opnd(1) for opnd(2) from opnd(3) to opnd(4) by 1, 9 157* opnd(5) is the list */ 9 158 join initial("011100011"b), /* do opnd(1), opnd(2) ... opnd(n) */ 9 159 allot_based initial("011100100"b), /* allocate opnd(2) words in opnd(3), set opnd(1) */ 9 160 free_based initial("011100101"b), /* free opnd(1) in opnd(3), length is opnd(2) words */ 9 161 9 162 r_parn initial("011110001"b), /* format op code */ 9 163 l_parn initial("011110010"b), 9 164 r_format initial("011110011"b), 9 165 c_format initial("011110100"b), 9 166 f_format initial("011110101"b), 9 167 e_format initial("011110110"b), 9 168 b_format initial("011110111"b), 9 169 a_format initial("011111000"b), 9 170 x_format initial("011111001"b), 9 171 skip_format initial("011111010"b), 9 172 column_format initial("011111011"b), 9 173 page_format initial("011111100"b), 9 174 line_format initial("011111101"b), 9 175 picture_format initial("011111110"b), 9 176 bn_format initial("011111111"b), /* bit format, length(opnd(2)), radix factor(opnd(3)) */ 9 177 9 178 get_list_trans initial("100000000"b), /* getlist(opnd(2) with desc(opnd(1))) */ 9 179 get_edit_trans initial("100000001"b), /* getedit(opnd(2) with desc(opnd(1))) */ 9 180 get_data_trans initial("100000010"b), /* getdata(opnd(1) to opnd(n)) */ 9 181 put_list_trans initial("100000011"b), /* putlist(opnd(2) with desc(opnd(1))) */ 9 182 put_edit_trans initial("100000100"b), /* putedit(opnd(2) with desc(opnd(1))) */ 9 183 put_data_trans initial("100000101"b), /* putdata(opnd(2)) with subscript-list opnd(1) */ 9 184 terminate_trans initial("100000110"b), /* terminate stream transmission */ 9 185 stream_prep initial("100000111"b), /* initiate stream transmission */ 9 186 record_io initial("100001000"b), /* perform record io operation */ 9 187 fortran_read initial("100001001"b), /* A complete read statement */ 9 188 fortran_write initial("100001010"b), /* A complete write statement */ 9 189 ftn_file_manip initial("100001011"b), /* endfile,backspace,rewind,etc. */ 9 190 ftn_trans_loop initial("100001100"b), /* An implied do in i/o list */ 9 191 put_control initial("100001101"b), /* put control opnd(1) opnd(2) times */ 9 192 put_field initial("100001110"b), /* putlist(opnd(2)) of length(opnd(1)) */ 9 193 put_field_chk initial("100001111"b), /* putlist(op(2)) of len(op(1)) check char index(op(3)) */ 9 194 9 195 /* These operators are produced by the parse but are not used as input to the code generator. */ 9 196 /* They are processed by the semantic translator. */ 9 197 9 198 return_value initial("100010010"b), /* return(opnd(1)) */ 9 199 allot_var initial("100010011"b), /* allot opnd(1) in opnd(2) */ 9 200 free_var initial("100010100"b), /* free opnd(1) out of opnd(2) */ 9 201 get_file initial("100010101"b), /* opnd(1) is filename,opnd(2) is copy */ 9 202 /* opnd(3) is skip, opnd(4) is list */ 9 203 get_string initial("100010110"b), /* opnd(1) is string,opnd(2) is list */ 9 204 put_file initial("100010111"b), /* opnd(1) is filename,opnd(2) is page */ 9 205 /* opnd(3) is skip,opnd(4) is line */ 9 206 put_string initial("100011000"b), /* opnd(1) is string,opnd(2) is list */ 9 207 open_file initial("100011001"b), 9 208 close_file initial("100011010"b), 9 209 read_file initial("100011011"b), 9 210 write_file initial("100011100"b), 9 211 locate_file initial("100011101"b), 9 212 do_fun initial("100011110"b), /* opnd(1) is join of a list */ 9 213 /* opnd(2) is control variable ref */ 9 214 /* opnd(3) is specification operator */ 9 215 do_spec initial("100011111"b), /* opnd(1) to opnd(2) by opnd(3) */ 9 216 /* repeat opnd(4) while opnd(5) */ 9 217 /* opnd(6) is next specification */ 9 218 9 219 rewrite_file initial("100100000"b), 9 220 delete_file initial("100100001"b), 9 221 unlock_file initial("100100010"b), 9 222 lock_file initial("100100011"b), 9 223 refer initial("100100101"b), /* opnd(1) refer(opnd(2)) */ 9 224 prefix_plus initial("100100110"b), /* opnd(1) <- +opnd(2) */ 9 225 nop initial("100100111"b), /* no-op */ 9 226 assign_by_name initial("100101000"b), /* opnd(1) <- opnd(2),by name */ 9 227 9 228 /* These operators are produced by the semantic translator in processing the math 9 229* builtin functions and are used as input to the code generator */ 9 230 9 231 sqrt_fun initial("100110000"b), /* opnd(1) <- sqrt(opnd(2)) */ 9 232 sin_fun initial("100110001"b), /* opnd(1) <- sin(opnd(2)) */ 9 233 sind_fun initial("100110010"b), /* opnd(1) <- sind(opnd(2)) */ 9 234 cos_fun initial("100110011"b), /* opnd(1) <- cos(opnd(2)) */ 9 235 cosd_fun initial("100110100"b), /* opnd(1) <- cosd(opnd(2)) */ 9 236 tan_fun initial("100110101"b), /* opnd(1) <- tan(opnd(2)) */ 9 237 tand_fun initial("100110110"b), /* opnd(1) <- tand(opnd(2)) */ 9 238 asin_fun initial("100110111"b), /* opnd(1) <- asin(opnd(2)) */ 9 239 asind_fun initial("100111000"b), /* opnd(1) <- asind(opnd(2)) */ 9 240 acos_fun initial("100111001"b), /* opnd(1) <- acos(opnd(2)) */ 9 241 acosd_fun initial("100111010"b), /* opnd(1) <- acosd(opnd(2)) */ 9 242 atan_fun initial("100111011"b), /* opnd(1) <- atan(opnd(2)[,opnd(3)]) */ 9 243 atand_fun initial("100111100"b), /* opnd(1) <- atand(opnd(2)[,opnd(3)]) */ 9 244 log2_fun initial("100111101"b), /* opnd(1) <- log2(opnd(2)) */ 9 245 log_fun initial("100111110"b), /* opnd(1) <- log(opnd(2)) */ 9 246 log10_fun initial("100111111"b), /* opnd(1) <- log10(opnd(2)) */ 9 247 9 248 exp_fun initial("101000000"b)) /* opnd(1) <- exp(opnd(2)) */ 9 249 9 250 bit(9) aligned internal static options(constant); 9 251 9 252 /* END INCLUDE FILE ... op_codes.incl.pl1 */ 30 10 1 /* BEGIN INCLUDE FILE ... operator.incl.pl1 */ 10 2 10 3 /* Modified: 2 Apr 1980 by PCK to add max_number_of_operands */ 10 4 10 5 /* format: style3 */ 10 6 dcl 1 operator based aligned, 10 7 2 node_type bit (9) unaligned, 10 8 2 op_code bit (9) unaligned, 10 9 2 shared bit (1) unaligned, 10 10 2 processed bit (1) unaligned, 10 11 2 optimized bit (1) unaligned, 10 12 2 number fixed (14) unaligned, 10 13 2 operand dimension (n refer (operator.number)) ptr unaligned; 10 14 10 15 dcl max_number_of_operands 10 16 fixed bin (15) int static options (constant) initial (32767); 10 17 10 18 /* END INCLUDE FILE ... operator.incl.pl1 */ 31 11 1 dcl 1 parameter aligned based, 11 2 2 node_type bit(9), /* type code is "000001010"b */ 11 3 2 number bit(9); /* 0 refer pointer,1-n reserved */ 32 12 1 /* BEGIN INCLUDE FILE ... reference.incl.pl1 */ 12 2 12 3 dcl 1 reference based aligned, 12 4 2 node_type bit(9) unaligned, 12 5 2 array_ref bit(1) unaligned, 12 6 2 varying_ref bit(1) unaligned, 12 7 2 shared bit(1) unaligned, 12 8 2 put_data_sw bit(1) unaligned, 12 9 2 processed bit(1) unaligned, 12 10 2 units fixed(3) unaligned, 12 11 2 ref_count fixed(17) unaligned, 12 12 2 c_offset fixed(24), 12 13 2 c_length fixed(24), 12 14 2 symbol ptr unaligned, 12 15 2 qualifier ptr unaligned, 12 16 2 offset ptr unaligned, 12 17 2 length ptr unaligned, 12 18 2 subscript_list ptr unaligned, 12 19 /* these fields are used by the 645 code generator */ 12 20 2 address structure unaligned, 12 21 3 base bit(3), 12 22 3 offset bit(15), 12 23 3 op bit(9), 12 24 3 no_address bit(1), 12 25 3 inhibit bit(1), 12 26 3 ext_base bit(1), 12 27 3 tag bit(6), 12 28 2 info structure unaligned, 12 29 3 address_in structure, 12 30 4 b dimension(0:7) bit(1), 12 31 4 storage bit(1), 12 32 3 value_in structure, 12 33 4 a bit(1), 12 34 4 q bit(1), 12 35 4 aq bit(1), 12 36 4 string_aq bit(1), 12 37 4 complex_aq bit(1), 12 38 4 decimal_aq bit(1), 12 39 4 b dimension(0:7) bit(1), 12 40 4 storage bit(1), 12 41 4 indicators bit(1), 12 42 4 x dimension(0:7) bit(1), 12 43 3 other structure, 12 44 4 big_offset bit(1), 12 45 4 big_length bit(1), 12 46 4 modword_in_offset bit(1), 12 47 2 data_type fixed(5) unaligned, 12 48 2 bits structure unaligned, 12 49 3 padded_ref bit(1), 12 50 3 aligned_ref bit(1), 12 51 3 long_ref bit(1), 12 52 3 forward_ref bit(1), 12 53 3 ic_ref bit(1), 12 54 3 temp_ref bit(1), 12 55 3 defined_ref bit(1), 12 56 3 evaluated bit(1), 12 57 3 allocate bit(1), 12 58 3 allocated bit(1), 12 59 3 aliasable bit(1), 12 60 3 even bit(1), 12 61 3 perm_address bit(1), 12 62 3 aggregate bit(1), 12 63 3 hit_zero bit(1), 12 64 3 dont_save bit(1), 12 65 3 fo_in_qual bit(1), 12 66 3 hard_to_load bit(1), 12 67 2 relocation bit(12) unaligned, 12 68 2 more_bits structure unaligned, 12 69 3 substr bit(1), 12 70 3 padded_for_store_ref bit(1), 12 71 3 aligned_for_store_ref bit(1), 12 72 3 mbz bit(15), 12 73 2 store_ins bit(18) unaligned; 12 74 12 75 /* END INCLUDE FILE ... reference.incl.pl1 */ 33 13 1 /* BEGIN INCLUDE FILE ... symbol.incl.pl1 */ 13 2 13 3 dcl 1 symbol based aligned, 13 4 2 node_type bit(9) unal, 13 5 2 source_id structure unal, 13 6 3 file_number bit(8), 13 7 3 line_number bit(14), 13 8 3 statement_number bit(5), 13 9 2 location fixed(18) unal unsigned, 13 10 2 allocated bit(1) unal, 13 11 2 dcl_type bit(3) unal, 13 12 2 reserved bit(6) unal, 13 13 2 pix unal, 13 14 3 pic_fixed bit(1) unal, 13 15 3 pic_float bit(1) unal, 13 16 3 pic_char bit(1) unal, 13 17 3 pic_scale fixed(7) unal, 13 18 3 pic_size fixed(7) unal, 13 19 2 level fixed(8) unal, 13 20 2 boundary fixed(3) unal, 13 21 2 size_units fixed(3) unal, 13 22 2 scale fixed(7) unal, 13 23 2 runtime bit(18) unal, 13 24 2 runtime_offset bit(18) unal, 13 25 2 block_node ptr unal, 13 26 2 token ptr unal, 13 27 2 next ptr unal, 13 28 2 multi_use ptr unal, 13 29 2 cross_references ptr unal, 13 30 2 initial ptr unal, 13 31 2 array ptr unal, 13 32 2 descriptor ptr unal, 13 33 2 equivalence ptr unal, 13 34 2 reference ptr unal, 13 35 2 general ptr unal, 13 36 2 father ptr unal, 13 37 2 brother ptr unal, 13 38 2 son ptr unal, 13 39 2 word_size ptr unal, 13 40 2 bit_size ptr unal, 13 41 2 dcl_size ptr unal, 13 42 2 symtab_size ptr unal, 13 43 2 c_word_size fixed(24), 13 44 2 c_bit_size fixed(24), 13 45 2 c_dcl_size fixed(24), 13 46 13 47 2 attributes structure aligned, 13 48 3 data_type structure unal, 13 49 4 structure bit(1) , 13 50 4 fixed bit(1), 13 51 4 float bit(1), 13 52 4 bit bit(1), 13 53 4 char bit(1), 13 54 4 ptr bit(1), 13 55 4 offset bit(1), 13 56 4 area bit(1), 13 57 4 label bit(1), 13 58 4 entry bit(1), 13 59 4 file bit(1), 13 60 4 arg_descriptor bit(1), 13 61 4 storage_block bit(1), 13 62 4 explicit_packed bit(1), /* options(packed) */ 13 63 4 condition bit(1), 13 64 4 format bit(1), 13 65 4 builtin bit(1), 13 66 4 generic bit(1), 13 67 4 picture bit(1), 13 68 13 69 3 misc_attributes structure unal, 13 70 4 dimensioned bit(1), 13 71 4 initialed bit(1), 13 72 4 aligned bit(1), 13 73 4 unaligned bit(1), 13 74 4 signed bit(1), 13 75 4 unsigned bit(1), 13 76 4 precision bit(1), 13 77 4 varying bit(1), 13 78 4 local bit(1), 13 79 4 decimal bit(1), 13 80 4 binary bit(1), 13 81 4 real bit(1), 13 82 4 complex bit(1), 13 83 4 variable bit(1), 13 84 4 reducible bit(1), 13 85 4 irreducible bit(1), 13 86 4 returns bit(1), 13 87 4 position bit(1), 13 88 4 internal bit(1), 13 89 4 external bit(1), 13 90 4 like bit(1), 13 91 4 member bit(1), 13 92 4 non_varying bit(1), 13 93 4 options bit(1), 13 94 4 variable_arg_list bit(1), /* options(variable) */ 13 95 4 alloc_in_text bit(1), /* options(constant) */ 13 96 13 97 3 storage_class structure unal, 13 98 4 auto bit(1), 13 99 4 based bit(1), 13 100 4 static bit(1), 13 101 4 controlled bit(1), 13 102 4 defined bit(1), 13 103 4 parameter bit(1), 13 104 4 param_desc bit(1), 13 105 4 constant bit(1), 13 106 4 temporary bit(1), 13 107 4 return_value bit(1), 13 108 13 109 3 file_attributes structure unal, 13 110 4 print bit(1), 13 111 4 input bit(1), 13 112 4 output bit(1), 13 113 4 update bit(1), 13 114 4 stream bit(1), 13 115 4 reserved_1 bit(1), 13 116 4 record bit(1), 13 117 4 sequential bit(1), 13 118 4 direct bit(1), 13 119 4 interactive bit(1), /* env(interactive) */ 13 120 4 reserved_2 bit(1), 13 121 4 reserved_3 bit(1), 13 122 4 stringvalue bit(1), /* env(stringvalue) */ 13 123 4 keyed bit(1), 13 124 4 reserved_4 bit(1), 13 125 4 environment bit(1), 13 126 13 127 3 compiler_developed structure unal, 13 128 4 aliasable bit(1), 13 129 4 packed bit(1), 13 130 4 passed_as_arg bit(1), 13 131 4 allocate bit(1), 13 132 4 set bit(1), 13 133 4 exp_extents bit(1), 13 134 4 refer_extents bit(1), 13 135 4 star_extents bit(1), 13 136 4 isub bit(1), 13 137 4 put_in_symtab bit(1), 13 138 4 contiguous bit(1), 13 139 4 put_data bit(1), 13 140 4 overlayed bit(1), 13 141 4 error bit(1), 13 142 4 symtab_processed bit(1), 13 143 4 overlayed_by_builtin bit(1), 13 144 4 defaulted bit(1), 13 145 4 connected bit(1); 13 146 13 147 /* END INCLUDE FILE ... symbol.incl.pl1 */ 34 14 1 /* BEGIN INCLUDE FILE ... system.incl.pl1 */ 14 2 14 3 /* Modified: 25 Apr 1979 by PCK to implemnt 4-bit decimal */ 14 4 14 5 dcl ( max_p_flt_bin_1 initial(27), 14 6 max_p_flt_bin_2 initial(63), 14 7 max_p_fix_bin_1 initial(35), 14 8 max_p_fix_bin_2 initial(71), 14 9 14 10 max_p_dec initial(59), 14 11 max_p_bin_or_dec initial (71), /* max (max_p_fix_bin_2, max_p_dec) */ 14 12 14 13 min_scale initial(-128), 14 14 max_scale initial(+127), 14 15 max_bit_string initial(9437184), 14 16 max_char_string initial(1048576), 14 17 max_area_size initial(262144), 14 18 min_area_size initial(28), 14 19 14 20 max_bit_string_constant initial (253), /* max length of bit literals */ 14 21 max_char_string_constant initial (254), /* max length of character literals */ 14 22 max_identifier_length initial (256), 14 23 max_number_of_dimensions initial (127), 14 24 14 25 max_length_precision initial(24), 14 26 max_offset_precision initial(24), /* 18 bits for word offset + 6 bits for bit offset */ 14 27 14 28 max_words_per_variable initial (262144), 14 29 14 30 bits_per_word initial(36), 14 31 bits_per_double initial(72), 14 32 packed_digits_per_character initial(2), 14 33 characters_per_half initial(2), 14 34 characters_per_word initial(4), 14 35 characters_per_double initial(8), 14 36 14 37 bits_per_character initial(9), 14 38 bits_per_half initial(18), 14 39 bits_per_decimal_digit initial(9), 14 40 bits_per_binary_exponent initial(8), 14 41 bits_per_packed_ptr initial(36), 14 42 words_per_packed_pointer initial(1), 14 43 14 44 words_per_fix_bin_1 initial(1), 14 45 words_per_fix_bin_2 initial(2), 14 46 words_per_flt_bin_1 initial(1), 14 47 words_per_flt_bin_2 initial(2), 14 48 words_per_varying_string_header initial(1), 14 49 words_per_offset initial(1), 14 50 words_per_pointer initial(2), 14 51 words_per_label_var initial(4), 14 52 words_per_entry_var initial(4), 14 53 words_per_file_var initial(4), 14 54 words_per_format initial(4), 14 55 words_per_condition_var initial(6), 14 56 14 57 max_index_register_value initial(262143), 14 58 max_signed_index_register_value initial(131071), 14 59 14 60 max_signed_xreg_precision initial(17), 14 61 max_uns_xreg_precision initial(18), 14 62 14 63 default_area_size initial(1024), 14 64 default_flt_bin_p initial(27), 14 65 default_fix_bin_p initial(17), 14 66 default_flt_dec_p initial(10), 14 67 default_fix_dec_p initial(7)) fixed bin(31) internal static options(constant); 14 68 14 69 dcl bits_per_digit initial(4.5) fixed bin(31,1) internal static options(constant); 14 70 14 71 dcl ( integer_type initial("010000000000000000000100000001100000"b), 14 72 dec_integer_type initial("010000000000000000000100000010100000"b), 14 73 pointer_type initial("000001000000000000000100000000000000"b), 14 74 real_type initial("001000000000000000000100000001100000"b), 14 75 complex_type initial("001000000000000000000100000001010000"b), 14 76 builtin_type initial("000000000000000010000000000000000000"b), 14 77 storage_block_type initial("000000000000100000000000000000000000"b), 14 78 arg_desc_type initial("000000000001000000000000000000000000"b), 14 79 local_label_var_type initial("000000001000000000000100000100001000"b), 14 80 entry_var_type initial("000000000100000000000000000000001000"b), 14 81 bit_type initial("000100000000000000000000000000000000"b), 14 82 char_type initial("000010000000000000000000000000000000"b)) bit(36) aligned int static 14 83 options(constant); 14 84 14 85 /* END INCLUDE FILE ... system.incl.pl1 */ 35 15 1 /* BEGIN INCLUDE FILE ... token.incl.pl1 */ 15 2 15 3 dcl 1 token based aligned, 15 4 2 node_type bit(9) unaligned, 15 5 2 type bit(9) unaligned, 15 6 2 loc bit(18) unaligned, /* symtab offset for identifiers, "p" flag for constants */ 15 7 2 declaration ptr unaligned, 15 8 2 next ptr unaligned, 15 9 2 size fixed(9), 15 10 2 string char(n refer(token.size)); 15 11 15 12 /* END INCLUDE FILE ... token.incl.pl1 */ 36 16 1 dcl pl1_stat_$token_list_ptr ptr external static; /* pointer to token list */ 16 2 dcl token_list(token_list_length) ptr based(token_list_pointer); 16 3 dcl token_list_pointer ptr initial(pl1_stat_$token_list_ptr); /* for efficiency only */ 16 4 dcl token_list_length fixed(15) internal static initial(3000) options(constant); 16 5 16 6 dcl 1 pl1_stat_$statement_id external static, 16 7 2 file_number bit(8), 16 8 2 line_number bit(14), 16 9 2 statement_number bit(5); 16 10 16 11 dcl 1 t_table based(token_list(k)) aligned, 16 12 2 node_type bit(9) unaligned, 16 13 2 type bit(9) unaligned, 16 14 2 loc bit(18) unaligned, 16 15 2 declaration ptr unaligned, 16 16 2 next ptr unaligned, 16 17 2 size fixed(9), 16 18 2 string char(n refer(t_table.size)); 37 17 1 /* BEGIN INCLUDE FILE ... token_types.incl.pl1 */ 17 2 17 3 dcl ( no_token initial("000000000"b), /* token types */ 17 4 identifier initial("100000000"b), 17 5 isub initial("010000000"b), 17 6 plus initial("001000001"b), 17 7 minus initial("001000010"b), 17 8 asterisk initial("001000011"b), 17 9 slash initial("001000100"b), 17 10 expon initial("001000101"b), 17 11 not initial("001000110"b), 17 12 and initial("001000111"b), 17 13 or initial("001001000"b), 17 14 cat initial("001001001"b), 17 15 eq initial("001001010"b), 17 16 ne initial("001001011"b), 17 17 lt initial("001001100"b), 17 18 gt initial("001001101"b), 17 19 le initial("001001110"b), 17 20 ge initial("001001111"b), 17 21 ngt initial("001010000"b), 17 22 nlt initial("001010001"b), 17 23 assignment initial("001010010"b), 17 24 colon initial("001010011"b), 17 25 semi_colon initial("001010100"b), 17 26 comma initial("001010101"b), 17 27 period initial("001010110"b), 17 28 arrow initial("001010111"b), 17 29 left_parn initial("001011000"b), 17 30 right_parn initial("001011001"b), 17 31 percent initial("001011100"b), 17 32 bit_string initial("000100001"b), 17 33 char_string initial("000100010"b), 17 34 bin_integer initial("000110001"b), 17 35 dec_integer initial("000110011"b), 17 36 fixed_bin initial("000110000"b), 17 37 fixed_dec initial("000110010"b), 17 38 float_bin initial("000110100"b), 17 39 float_dec initial("000110110"b), 17 40 i_bin_integer initial("000111001"b), 17 41 i_dec_integer initial("000111011"b), 17 42 i_fixed_bin initial("000111000"b), 17 43 i_fixed_dec initial("000111010"b), 17 44 i_float_bin initial("000111100"b), 17 45 i_float_dec initial("000111110"b)) bit (9) aligned internal static options (constant); 17 46 17 47 dcl ( is_identifier initial ("100000000"b), /* token type masks */ 17 48 is_isub initial ("010000000"b), 17 49 is_delimiter initial ("001000000"b), 17 50 is_constant initial ("000100000"b), 17 51 is_arith_constant initial ("000010000"b), /* N.B. not really a mask...s/b "000110000"b */ 17 52 is_arithmetic_constant initial ("000110000"b), 17 53 is_imaginary_constant initial ("000111000"b), 17 54 is_float_constant initial ("000110100"b), 17 55 is_decimal_constant initial ("000110010"b), 17 56 is_integral_constant initial ("000110001"b) 17 57 ) bit(9) internal static aligned options(constant); 17 58 17 59 /* END INCLUDE FILE ... token_types.incl.pl1 */ 38 39 40 p=reserve$read_lib(number); 41 42 if substr(declared_array,number,1) 43 then do; 44 s=p->token.declaration; 45 do while(s->symbol.block_node^=pl1_stat_$root); 46 s=s->symbol.multi_use; 47 if s=null then goto dcl_entry; 48 end; 49 50 return(s->symbol.reference); 51 end; 52 53 dcl_entry: 54 substr(declared_array,number,1)="1"b; 55 s=create_symbol(pl1_stat_$root,p,by_compiler); 56 s->symbol.boundary=mod2_; 57 s->symbol.allocate , 58 s->symbol.entry , 59 s->symbol.constant , 60 s->symbol.external , 61 s->symbol.irreducible = "1"b; 62 63 return(s->symbol.reference); 64 65 read_lib: entry(number) returns(ptr); 66 67 if substr(renamed_array,number,1) 68 then do; 69 test_string=reserved_name(number); 70 m=length(test_string); 71 do i=1 to 39 by 2; 72 p=parallel_ptr(i); 73 n=p->token.size; 74 if m=n 75 then if p->token.string=test_string 76 then do; 77 p=parallel_ptr(i+1); 78 goto read_lib_ret; 79 end; 80 if n=2*m+1 81 then if p->token.string=substr(test_string,1,m)||"$"||substr(test_string,1,m) 82 then do; 83 p=parallel_ptr(i+1); 84 goto read_lib_ret; 85 end; 86 end; 87 end; 88 else p=create_token((reserved_name(number)),identifier); 89 90 read_lib_ret: 91 return(p); 92 93 reserve$clear: entry returns(ptr); 94 95 parallel_ptr_number=0; 96 declared_array , 97 renamed_array = "0"b; 98 99 return(null); 100 101 dcl number_of_reserved_names fixed bin(15) int static initial(200), 102 reserved_name(200) char(20) varying aligned int static init 103 ( /* 1*/ "free_$free_", 104 /* 2*/ "stat_", 105 /* 3*/ "area_", 106 /* 4*/ "system_condition_", 107 /* 5*/ "alloc_", 108 /* 6*/ "bound_", 109 /* 7*/ "on_data_$get_onloc", 110 /* 8*/ "on_data_$get_onfield", 111 /* 9*/ "on_data_$get_onchar", 112 /* 10*/ "on_data_$get_oncode", 113 /* 11*/ "on_data_$set_onchar", 114 /* 12*/ "on_data_$get_onfile", 115 /* 13*/ "on_data_$get_onkey", 116 /* 14*/ "on_data_$getonsource", 117 /* 15*/ "datmk_", 118 /* 16*/ "snap_", 119 /* 17*/ "xp2_", 120 /* 18*/ "dxp1_", 121 /* 19*/ "cxp1_", 122 /* 20*/ "dcxp1_", 123 /* 21*/ "xp3_", 124 /* 22*/ "dxp2_", 125 /* 23*/ "cxp2_", 126 /* 24*/ "dcxp2_", 127 /* 25*/ "sqrt_", 128 /* 26*/ "dsqrt_", 129 /* 27*/ "csqrt_", 130 /* 28*/ "dcsqrt_", 131 /* 29*/ "exp_", 132 /* 30*/ "dexp_", 133 /* 31*/ "cexp_", 134 /* 32*/ "dcexp_", 135 /* 33*/ "log_", 136 /* 34*/ "dlog_", 137 /* 35*/ "clog_", 138 /* 36*/ "dclog_", 139 /* 37*/ "log_$log2_", 140 /* 38*/ "dlog_$dlog2_", 141 /* 39*/ "clog_$clog2_", 142 /* 40*/ "dclog_$dclog2_", 143 /* 41*/ "log_$log10_", 144 /* 42*/ "dlog_$dlog10_", 145 /* 43*/ "clog_$clog10_", 146 /* 44*/ "dclog_$dclog10_", 147 /* 45*/ "log_$atanh_", 148 /* 46*/ "dlog_$datanh_", 149 /* 47*/ "catan_$catanh_", 150 /* 48*/ "dcatan_$dcatanh_", 151 /* 49*/ "log_$lone_", 152 /* 50*/ "dlog_$dlone_", 153 /* 51*/ "clog_$clone_", 154 /* 52*/ "dclog_$dclone_", 155 /* 53*/ "sin_", 156 /* 54*/ "dsin_", 157 /* 55*/ "csin_", 158 /* 56*/ "dcsin_", 159 /* 57*/ "sin_$sind_", 160 /* 58*/ "dsin_$dsind_", 161 /* 59*/ "csin_$csind_", 162 /* 60*/ "dcsin_$dcsind_", 163 /* 61*/ "sin_$cos_", 164 /* 62*/ "dsin_$dcos_", 165 /* 63*/ "csin_$ccos_", 166 /* 64*/ "dcsin_$dccos_", 167 /* 65*/ "sin_$cosd_", 168 /* 66*/ "dsin_$dcosd_", 169 /* 67*/ "csin_$ccosd_", 170 /* 68*/ "dcsin_$dccosd_", 171 /* 69*/ "tan_", 172 /* 70*/ "dtan_", 173 /* 71*/ "csin_$ctan_", 174 /* 72*/ "dcsin_$dctan_", 175 /* 73*/ "tan_$tand_", 176 /* 74*/ "dtan_$dtand_", 177 /* 75*/ "csin_$ctand_", 178 /* 76*/ "dcsin_$dctand_", 179 /* 77*/ "asin_", 180 /* 78*/ "dasin_", 181 /* 79*/ "casin_", 182 /* 80*/ "dcasin_", 183 /* 81*/ "asin_$asind_", 184 /* 82*/ "dasin_$dasind_", 185 /* 83*/ "casin_$casind_", 186 /* 84*/ "dcasin_$dcasind_", 187 /* 85*/ "asin_$acos_", 188 /* 86*/ "dasin_$dacos_", 189 /* 87*/ "casin_$cacos_", 190 /* 88*/ "dcasin_$dcacos_", 191 /* 89*/ "asin_$acosd_", 192 /* 90*/ "dasin_$dacosd_", 193 /* 91*/ "casin_$cacosd_", 194 /* 92*/ "dcasin_$dcacosd_", 195 /* 93*/ "asin_$atan_", 196 /* 94*/ "dasin_$datan_", 197 /* 95*/ "catan_", 198 /* 96*/ "dcatan_", 199 /* 97*/ "asin_$atand_", 200 /* 98*/ "dasin_$datand_", 201 /* 99*/ "catan_$catand_", 202 /*100*/ "dcatan_$dcatand_", 203 /*101*/ "atan2_", 204 /*102*/ "datan2_", 205 /*103*/ "catan2_", 206 /*104*/ "dcatan2_", 207 /*105*/ "atan2_$atand2_", 208 /*106*/ "datan2_$datand2_", 209 /*107*/ "catan2_$catand2_", 210 /*108*/ "dcatan2_$dcatand2_", 211 /*109*/ "sinh_", 212 /*110*/ "dsinh_", 213 /*111*/ "csin_$csinh_", 214 /*112*/ "dcsin_$dcsinh_", 215 /*113*/ "sinh_$cosh_", 216 /*114*/ "dsinh_$dcosh_", 217 /*115*/ "csin_$ccosh_", 218 /*116*/ "dcsin_$dccosh_", 219 /*117*/ "tanh_", 220 /*118*/ "dtanh_", 221 /*119*/ "csin_$ctanh_", 222 /*120*/ "dcsin_$dctanh_", 223 /*121*/ "asinh_", 224 /*122*/ "dasinh_", 225 /*123*/ "casin_$casinh_", 226 /*124*/ "dcasin_$dcasinh_", 227 /*125*/ "asinh_$acosh_", 228 /*126*/ "dasinh_$dacosh_", 229 /*127*/ "casin_$cacosh_", 230 /*128*/ "dcasin_$dcacosh_", 231 /*129*/ "erf_", 232 /*130*/ "derf_", 233 /*131*/ "cerf_", 234 /*132*/ "dcerf_", 235 /*133*/ "erf_$erfc_", 236 /*134*/ "derf_$derfc_", 237 /*135*/ "cerf_$cerfc_", 238 /*136*/ "dcerf_$dcerfc_", 239 /*137*/ "exerfc_", 240 /*138*/ "dexerfc_", 241 /*139*/ "cexerfc_", 242 /*140*/ "dcexerfc_", 243 /*141*/ "cabs_", 244 /*142*/ "dcabs_", 245 /*143*/ "cfmp_", 246 /*144*/ "dcfmp_", 247 /*145*/ "cfdp_", 248 /*146*/ "dcfdp_", 249 /*147*/ "iexp_", 250 /*148*/ "round_", 251 /*149*/ "round_$expon_", 252 /*150*/ "round_$adexp_", 253 /*151*/ "freen_", 254 /*152*/ "plio_$plio_sw_", 255 /*153*/ "plio_$open1", 256 /*154*/ "plio_$close", 257 /*155*/ "plio_$get_value_data", 258 /*156*/ "plio_$put_value_data", 259 /*157*/ "plio_$get_value_list", 260 /*158*/ "plio_$put_value_list", 261 /*159*/ "plio_$get_value_edit", 262 /*160*/ "plio_$put_value_edit", 263 /*161*/ "area_assign_", 264 /*162*/ "exit_", 265 /*163*/ "stop_", 266 /*164*/ "char_to_arith_", 267 /*165*/ "char_to_bit_", 268 /*166*/ "arith_to_char_", 269 /*167*/ "bit_to_char_", 270 /*168*/ "ftnio_$init", 271 /*169*/ "ftnio_", 272 /*170*/ "ftnio_$finish", 273 /*171*/ "diexp_", 274 /*172*/ "arith_to_arith_", 275 /*173*/ "bit_to_arith_", 276 /*174*/ "arith_to_bit_", 277 /*175*/ "decimal_op_", 278 /*176*/ "multi_decimal_op_", 279 /*177*/ "plio2_$set_pageno", 280 /*178*/ "pl1_before_bit_", 281 /*179*/ "pl1_before_char_", 282 /*180*/ "translate_$trans_2_", 283 /*181*/ "translate_$trans_3_", 284 /*182*/ "complex_decimal_op_", 285 /*183*/ "plio2_$get_lineno", 286 /*184*/ "plio2_$get_pageno", 287 /*185*/ "pl1_valid_picture_", 288 /*186*/ "pl1_date_", 289 /*187*/ "pl1_time_", 290 /*188*/ "pl1_after_bit_", 291 /*189*/ "pl1_after_char_", 292 /*190*/ "pl1_decat_bit_", 293 /*191*/ "pl1_decat_char_", 294 /*192*/ "alloc_$storage_", 295 /*193*/ "complex_binary_op_", 296 /*194*/ "on_data_$setonsource", 297 /*195*/ "decimal_exp_", 298 /*196*/ "decimal_exp2_", 299 /*197*/ "xp22_", 300 /*198*/ "dxp12_", 301 /*199*/ "cxp12_", 302 /*200*/ "dcxp12_" 303 ); 304 305 rename_parse: entry(number,return_bit); 306 307 dcl return_bit bit(1) aligned; 308 309 k=number+1; 310 311 if t_table.type ^= left_parn then go to error1; 312 313 l: k=k+1; 314 if t_table.type ^= left_parn then go to error1; 315 316 k=k+1; 317 if t_table.type ^= identifier then go to error2; 318 319 test_string=t_table.string; 320 do i=1 to number_of_reserved_names; 321 if reserved_name(i)=test_string then goto replace; 322 end; 323 324 go to error3; 325 326 replace: 327 if i = 1 /* free_$free_ */ 328 | i = 3 /* area_ */ 329 | i = 5 /* alloc_ */ 330 | i = 151 /* freen_ */ 331 | i = 192 /* alloc_$storage */ 332 then pl1_stat_$use_old_area = "1"b; 333 334 k=k+1; 335 if t_table.type ^= comma then go to error4; 336 337 k=k+1; 338 if t_table.type ^= identifier then go to error5; 339 340 parallel_ptr_number=parallel_ptr_number+2; 341 if parallel_ptr_number>40 then goto error7; 342 343 substr(renamed_array,i,1)="1"b; 344 parallel_ptr(parallel_ptr_number-1)=token_list(k-2); 345 parallel_ptr(parallel_ptr_number)=token_list(k); 346 347 k=k+1; 348 if t_table.type ^= right_parn then go to error6; 349 350 k=k+1; 351 if t_table.type = comma then go to l; 352 if t_table.type ^= right_parn then go to error6; 353 354 number=k+1; 355 return_bit="1"b; 356 return; 357 358 error1: error_number=161; /* no left parn */ 359 go to error_finish; 360 361 error2: error_number=162; /* Name1 is not an identifier */ 362 go to error_finish; 363 364 error3: error_number=163; /* Name1 could not be matched with a reserved name. */ 365 go to error_finish; 366 367 error4: error_number=164; /* No comma */ 368 go to error_finish; 369 370 error5: error_number=165; /* Name2 is not an identifier. */ 371 go to error_finish; 372 373 error6: error_number=166; /* No matching right parn */ 374 goto error_finish; 375 376 error7: error_number=94; 377 378 error_finish: 379 call parse_error(error_number,token_list(k)); 380 return_bit="0"b; 381 382 end reserve$declare_lib; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 04/18/00 1137.2 reserve.pl1 >udd>sm>ds>w>ml>reserve.pl1 27 1 08/01/89 1339.9 language_utility.incl.pl1 >ldd>incl>language_utility.incl.pl1 1-307 2 05/06/74 1846.9 source_id_descriptor.incl.pl1 >ldd>incl>source_id_descriptor.incl.pl1 1-325 3 05/06/74 1846.9 source_id_descriptor.incl.pl1 >ldd>incl>source_id_descriptor.incl.pl1 1-335 4 05/06/74 1846.9 source_id_descriptor.incl.pl1 >ldd>incl>source_id_descriptor.incl.pl1 1-374 5 05/06/74 1846.9 source_id_descriptor.incl.pl1 >ldd>incl>source_id_descriptor.incl.pl1 1-386 6 05/06/74 1846.9 source_id_descriptor.incl.pl1 >ldd>incl>source_id_descriptor.incl.pl1 28 7 10/25/79 1745.8 boundary.incl.pl1 >ldd>incl>boundary.incl.pl1 29 8 10/25/79 1745.8 declare_type.incl.pl1 >ldd>incl>declare_type.incl.pl1 30 9 04/07/83 1735.0 op_codes.incl.pl1 >ldd>incl>op_codes.incl.pl1 31 10 07/21/80 1646.3 operator.incl.pl1 >ldd>incl>operator.incl.pl1 32 11 05/06/74 1842.6 parameter.incl.pl1 >ldd>incl>parameter.incl.pl1 33 12 07/21/80 1646.3 reference.incl.pl1 >ldd>incl>reference.incl.pl1 34 13 12/07/83 1801.7 symbol.incl.pl1 >ldd>incl>symbol.incl.pl1 35 14 12/07/83 1801.7 system.incl.pl1 >ldd>incl>system.incl.pl1 36 15 09/14/77 1805.7 token.incl.pl1 >ldd>incl>token.incl.pl1 37 16 09/14/77 1805.7 token_list.incl.pl1 >ldd>incl>token_list.incl.pl1 38 17 11/30/78 1327.4 token_types.incl.pl1 >ldd>incl>token_types.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. allocate 33(02) based bit(1) level 4 packed packed unaligned dcl 13-3 set ref 57* attributes 31 based structure level 2 dcl 13-3 block_node 4 based pointer level 2 packed packed unaligned dcl 13-3 ref 45 boundary 2(20) based fixed bin(3,0) level 2 packed packed unaligned dcl 13-3 set ref 56* by_compiler 002260 constant bit(3) initial dcl 8-5 set ref 55* comma constant bit(9) initial dcl 17-3 ref 335 351 compiler_developed 32(35) based structure level 3 packed packed unaligned dcl 13-3 constant 32(16) based bit(1) level 4 packed packed unaligned dcl 13-3 set ref 57* create_symbol 000152 constant entry external dcl 1-184 ref 55 create_token 000154 constant entry external dcl 1-191 ref 88 data_type 31 based structure level 3 packed packed unaligned dcl 13-3 declaration 1 based pointer level 2 packed packed unaligned dcl 15-3 ref 44 declared_array 000010 internal static bit(216) dcl 13 set ref 42 53* 96* entry 31(09) based bit(1) level 4 packed packed unaligned dcl 13-3 set ref 57* error_number 000104 automatic fixed bin(15,0) dcl 13 set ref 358* 361* 364* 367* 370* 373* 376* 378* external 32(02) based bit(1) level 4 packed packed unaligned dcl 13-3 set ref 57* i 000105 automatic fixed bin(15,0) dcl 13 set ref 71* 72 77 83* 320* 321* 326 326 326 326 326 343 identifier 002263 constant bit(9) initial dcl 17-3 set ref 88* 317 338 irreducible 31(34) based bit(1) level 4 packed packed unaligned dcl 13-3 set ref 57* k 000106 automatic fixed bin(15,0) dcl 13 set ref 309* 311 313* 313 314 316* 316 317 319 334* 334 335 337* 337 338 344 345 347* 347 348 350* 350 351 352 354 378 left_parn constant bit(9) initial dcl 17-3 ref 311 314 length builtin function dcl 25 ref 70 m 000107 automatic fixed bin(15,0) dcl 13 set ref 70* 74 80 80 80 misc_attributes 31(19) based structure level 3 packed packed unaligned dcl 13-3 mod2_ constant fixed bin(3,0) initial dcl 7-5 ref 56 multi_use 7 based pointer level 2 packed packed unaligned dcl 13-3 ref 46 n 000110 automatic fixed bin(15,0) dcl 13 set ref 73* 74 80 null builtin function dcl 25 ref 47 99 number parameter fixed bin(15,0) dcl 13 set ref 11 40* 42 53 65 67 69 88 305 309 354* number_of_reserved_names constant fixed bin(15,0) initial dcl 101 ref 320 p 000100 automatic pointer dcl 13 set ref 40* 44 55* 72* 73 74 77* 80 83* 88* 90 parallel_ptr 000026 internal static pointer array dcl 13 set ref 72 77 83 344* 345* parallel_ptr_number 000024 internal static fixed bin(15,0) dcl 13 set ref 95* 340* 340 341 344 345 parse_error 000156 constant entry external dcl 1-364 ref 378 pl1_stat_$root 000150 external static pointer dcl 13 set ref 45 55* pl1_stat_$token_list_ptr 000162 external static pointer dcl 16-1 ref 16-3 pl1_stat_$use_old_area 000146 external static bit(1) dcl 13 set ref 326* reference 15 based pointer level 2 packed packed unaligned dcl 13-3 ref 50 63 renamed_array 000016 internal static bit(216) dcl 13 set ref 67 96* 343* reserve$read_lib 000160 constant entry external dcl 1-439 ref 40 reserved_name 000000 constant varying char(20) initial array dcl 101 ref 69 88 321 return_bit parameter bit(1) dcl 307 set ref 305 355* 380* right_parn constant bit(9) initial dcl 17-3 ref 348 352 s 000102 automatic pointer dcl 13 set ref 44* 45 46* 46 47 50 55* 56 57 57 57 57 57 63 size 3 based fixed bin(9,0) level 2 in structure "token" dcl 15-3 in procedure "reserve$declare_lib" ref 73 74 80 size 3 based fixed bin(9,0) level 2 in structure "t_table" dcl 16-11 in procedure "reserve$declare_lib" ref 319 storage_class 32(09) based structure level 3 packed packed unaligned dcl 13-3 string 4 based char level 2 in structure "t_table" dcl 16-11 in procedure "reserve$declare_lib" ref 319 string 4 based char level 2 in structure "token" dcl 15-3 in procedure "reserve$declare_lib" ref 74 80 substr builtin function dcl 25 set ref 42 53* 67 80 80 343* symbol based structure level 1 dcl 13-3 t_table based structure level 1 dcl 16-11 test_string 000111 automatic varying char(20) dcl 13 set ref 69* 70 74 80 80 319* 321 token based structure level 1 dcl 15-3 token_list based pointer array dcl 16-2 set ref 311 314 317 319 335 338 344 345 348 351 352 378* token_list_pointer 000120 automatic pointer initial dcl 16-3 set ref 311 314 317 319 335 338 344 345 348 351 352 378 16-3* type 0(09) based bit(9) level 2 packed packed unaligned dcl 16-11 ref 311 314 317 335 338 348 351 352 NAMES DECLARED BY DECLARE STATEMENT AND NEVER REFERENCED. a_format internal static bit(9) initial dcl 9-8 abs_fun internal static bit(9) initial dcl 9-8 acos_fun internal static bit(9) initial dcl 9-8 acosd_fun internal static bit(9) initial dcl 9-8 add internal static bit(9) initial dcl 9-8 addbitno_fun internal static bit(9) initial dcl 9-8 addcharno_fun internal static bit(9) initial dcl 9-8 addr builtin function dcl 25 addr_fun internal static bit(9) initial dcl 9-8 addr_fun_bits internal static bit(9) initial dcl 9-8 addrel_fun internal static bit(9) initial dcl 9-8 adjust_count 000000 constant entry external dcl 1-20 allocation_fun internal static bit(9) initial dcl 9-8 allot_auto internal static bit(9) initial dcl 9-8 allot_based internal static bit(9) initial dcl 9-8 allot_ctl internal static bit(9) initial dcl 9-8 allot_var internal static bit(9) initial dcl 9-8 and internal static bit(9) initial dcl 17-3 and_bits internal static bit(9) initial dcl 9-8 arg_desc_type internal static bit(36) initial dcl 14-71 arrow internal static bit(9) initial dcl 17-3 asin_fun internal static bit(9) initial dcl 9-8 asind_fun internal static bit(9) initial dcl 9-8 assign internal static bit(9) initial dcl 9-8 assign_by_name internal static bit(9) initial dcl 9-8 assign_round internal static bit(9) initial dcl 9-8 assign_size_ck internal static bit(9) initial dcl 9-8 assign_zero internal static bit(9) initial dcl 9-8 assignment internal static bit(9) initial dcl 17-3 asterisk internal static bit(9) initial dcl 17-3 atan_fun internal static bit(9) initial dcl 9-8 atand_fun internal static bit(9) initial dcl 9-8 b_format internal static bit(9) initial dcl 9-8 baseno_fun internal static bit(9) initial dcl 9-8 baseptr_fun internal static bit(9) initial dcl 9-8 bin_integer internal static bit(9) initial dcl 17-3 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_ internal static fixed bin(3,0) initial dcl 7-5 bit_pointer internal static bit(9) initial dcl 9-8 bit_string internal static bit(9) initial dcl 17-3 bit_to_char internal static bit(9) initial dcl 9-8 bit_to_word internal static bit(9) initial dcl 9-8 bit_type internal static bit(36) initial dcl 14-71 bitno_fun internal static bit(9) initial dcl 9-8 bits_per_binary_exponent internal static fixed bin(31,0) initial dcl 14-5 bits_per_character internal static fixed bin(31,0) initial dcl 14-5 bits_per_decimal_digit internal static fixed bin(31,0) initial dcl 14-5 bits_per_digit internal static fixed bin(31,1) initial dcl 14-69 bits_per_double internal static fixed bin(31,0) initial dcl 14-5 bits_per_half internal static fixed bin(31,0) initial dcl 14-5 bits_per_packed_ptr internal static fixed bin(31,0) initial dcl 14-5 bits_per_word internal static fixed bin(31,0) initial dcl 14-5 bn_format internal static bit(9) initial dcl 9-8 bool_fun internal static bit(9) initial dcl 9-8 bound_ck internal static bit(9) initial dcl 9-8 builtin_type internal static bit(36) initial dcl 14-71 by_context internal static bit(3) initial dcl 8-5 by_declare internal static bit(3) initial dcl 8-5 by_explicit_context internal static bit(3) initial dcl 8-5 by_implication internal static bit(3) initial dcl 8-5 byte_fun internal static bit(9) initial dcl 9-8 c_format internal static bit(9) initial dcl 9-8 cat internal static bit(9) initial dcl 17-3 cat_string internal static bit(9) initial dcl 9-8 ceil_fun internal static bit(9) initial dcl 9-8 char_string internal static bit(9) initial dcl 17-3 char_to_word internal static bit(9) initial dcl 9-8 char_type internal static bit(36) initial dcl 14-71 character_ internal static fixed bin(3,0) initial dcl 7-5 characters_per_double internal static fixed bin(31,0) initial dcl 14-5 characters_per_half internal static fixed bin(31,0) initial dcl 14-5 characters_per_word internal static fixed bin(31,0) initial dcl 14-5 charno_fun internal static bit(9) initial dcl 9-8 clock_fun internal static bit(9) initial dcl 9-8 close_file internal static bit(9) initial dcl 9-8 codeptr_fun internal static bit(9) initial dcl 9-8 colon internal static bit(9) initial dcl 17-3 column_format internal static bit(9) initial dcl 9-8 compare_expression 000000 constant entry external dcl 1-48 complex_fun internal static bit(9) initial dcl 9-8 complex_type internal static bit(36) initial dcl 14-71 conjg_fun internal static bit(9) initial dcl 9-8 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_string internal static bit(9) initial dcl 9-8 copy_unique_expression 000000 constant entry external dcl 1-103 copy_words internal static bit(9) initial dcl 9-8 cos_fun internal static bit(9) initial dcl 9-8 cosd_fun internal static bit(9) initial dcl 9-8 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_token$init_hash_table 000000 constant entry external dcl 1-197 create_token$protected 000000 constant entry external dcl 1-199 dec_integer internal static bit(9) initial dcl 17-3 dec_integer_type internal static bit(36) initial dcl 14-71 decbin 000000 constant entry external dcl 1-206 declare_constant 000000 constant entry external dcl 1-211 declare_constant$bit 000000 constant entry external dcl 1-219 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 14-5 default_fix_bin_p internal static fixed bin(31,0) initial dcl 14-5 default_fix_dec_p internal static fixed bin(31,0) initial dcl 14-5 default_flt_bin_p internal static fixed bin(31,0) initial dcl 14-5 default_flt_dec_p internal static fixed bin(31,0) initial dcl 14-5 delete_file internal static bit(9) initial dcl 9-8 desc_size internal static bit(9) initial dcl 9-8 digit_ internal static fixed bin(3,0) initial dcl 7-5 digit_to_bit internal static bit(9) initial dcl 9-8 div internal static bit(9) initial dcl 9-8 do_fun internal static bit(9) initial dcl 9-8 do_spec internal static bit(9) initial dcl 9-8 e_format internal static bit(9) initial dcl 9-8 empty_area internal static bit(9) initial dcl 9-8 enable_on internal static bit(9) initial dcl 9-8 entry_var_type internal static bit(36) initial dcl 14-71 environmentptr_fun internal static bit(9) initial dcl 9-8 eq internal static bit(9) initial dcl 17-3 equal internal static bit(9) initial dcl 9-8 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 ex_prologue internal static bit(9) initial dcl 9-8 exp internal static bit(9) initial dcl 9-8 exp_fun internal static bit(9) initial dcl 9-8 expon internal static bit(9) initial dcl 17-3 f_format internal static bit(9) initial dcl 9-8 fixed_bin internal static bit(9) initial dcl 17-3 fixed_dec internal static bit(9) initial dcl 17-3 float_bin internal static bit(9) initial dcl 17-3 float_dec internal static bit(9) initial dcl 17-3 floor_fun internal static bit(9) initial dcl 9-8 fortran_read internal static bit(9) initial dcl 9-8 fortran_write internal static bit(9) initial dcl 9-8 free_based internal static bit(9) initial dcl 9-8 free_ctl internal static bit(9) initial dcl 9-8 free_node 000000 constant entry external dcl 1-345 free_var internal static bit(9) initial dcl 9-8 ftn_file_manip internal static bit(9) initial dcl 9-8 ftn_trans_loop internal static bit(9) initial dcl 9-8 ge internal static bit(9) initial dcl 17-3 get_array_size 000000 constant entry external dcl 1-348 get_data_trans internal static bit(9) initial dcl 9-8 get_edit_trans internal static bit(9) initial dcl 9-8 get_file internal static bit(9) initial dcl 9-8 get_list_trans internal static bit(9) initial dcl 9-8 get_size 000000 constant entry external dcl 1-352 get_string internal static bit(9) initial dcl 9-8 greater_or_equal internal static bit(9) initial dcl 9-8 greater_than internal static bit(9) initial dcl 9-8 gt internal static bit(9) initial dcl 17-3 half_ internal static fixed bin(3,0) initial dcl 7-5 half_to_word internal static bit(9) initial dcl 9-8 i_bin_integer internal static bit(9) initial dcl 17-3 i_dec_integer internal static bit(9) initial dcl 17-3 i_fixed_bin internal static bit(9) initial dcl 17-3 i_fixed_dec internal static bit(9) initial dcl 17-3 i_float_bin internal static bit(9) initial dcl 17-3 i_float_dec internal static bit(9) initial dcl 17-3 imag_fun internal static bit(9) initial dcl 9-8 index_after_fun internal static bit(9) initial dcl 9-8 index_before_fun internal static bit(9) initial dcl 9-8 index_fun internal static bit(9) initial dcl 9-8 index_rev_fun internal static bit(9) initial dcl 9-8 integer_type internal static bit(36) initial dcl 14-71 is_arith_constant internal static bit(9) initial dcl 17-47 is_arithmetic_constant internal static bit(9) initial dcl 17-47 is_constant internal static bit(9) initial dcl 17-47 is_decimal_constant internal static bit(9) initial dcl 17-47 is_delimiter internal static bit(9) initial dcl 17-47 is_float_constant internal static bit(9) initial dcl 17-47 is_identifier internal static bit(9) initial dcl 17-47 is_imaginary_constant internal static bit(9) initial dcl 17-47 is_integral_constant internal static bit(9) initial dcl 17-47 is_isub internal static bit(9) initial dcl 17-47 isub internal static bit(9) initial dcl 17-3 join internal static bit(9) initial dcl 9-8 jump internal static bit(9) initial dcl 9-8 jump_false internal static bit(9) initial dcl 9-8 jump_if_eq internal static bit(9) initial dcl 9-8 jump_if_ge internal static bit(9) initial dcl 9-8 jump_if_gt internal static bit(9) initial dcl 9-8 jump_if_le internal static bit(9) initial dcl 9-8 jump_if_lt internal static bit(9) initial dcl 9-8 jump_if_ne internal static bit(9) initial dcl 9-8 jump_true internal static bit(9) initial dcl 9-8 l_parn internal static bit(9) initial dcl 9-8 le internal static bit(9) initial dcl 17-3 length_fun internal static bit(9) initial dcl 9-8 less_or_equal internal static bit(9) initial dcl 9-8 less_than internal static bit(9) initial dcl 9-8 line_format internal static bit(9) initial dcl 9-8 local_label_var_type internal static bit(36) initial dcl 14-71 locate_file internal static bit(9) initial dcl 9-8 lock_file internal static bit(9) initial dcl 9-8 lock_fun internal static bit(9) initial dcl 9-8 log10_fun internal static bit(9) initial dcl 9-8 log2_fun internal static bit(9) initial dcl 9-8 log_fun internal static bit(9) initial dcl 9-8 loop internal static bit(9) initial dcl 9-8 lt internal static bit(9) initial dcl 17-3 make_desc internal static bit(9) initial dcl 9-8 max_area_size internal static fixed bin(31,0) initial dcl 14-5 max_bit_string internal static fixed bin(31,0) initial dcl 14-5 max_bit_string_constant internal static fixed bin(31,0) initial dcl 14-5 max_char_string internal static fixed bin(31,0) initial dcl 14-5 max_char_string_constant internal static fixed bin(31,0) initial dcl 14-5 max_fun internal static bit(9) initial dcl 9-8 max_identifier_length internal static fixed bin(31,0) initial dcl 14-5 max_index_register_value internal static fixed bin(31,0) initial dcl 14-5 max_length_precision internal static fixed bin(31,0) initial dcl 14-5 max_number_of_dimensions internal static fixed bin(31,0) initial dcl 14-5 max_number_of_operands internal static fixed bin(15,0) initial dcl 10-15 max_offset_precision internal static fixed bin(31,0) initial dcl 14-5 max_p_bin_or_dec internal static fixed bin(31,0) initial dcl 14-5 max_p_dec internal static fixed bin(31,0) initial dcl 14-5 max_p_fix_bin_1 internal static fixed bin(31,0) initial dcl 14-5 max_p_fix_bin_2 internal static fixed bin(31,0) initial dcl 14-5 max_p_flt_bin_1 internal static fixed bin(31,0) initial dcl 14-5 max_p_flt_bin_2 internal static fixed bin(31,0) initial dcl 14-5 max_scale internal static fixed bin(31,0) initial dcl 14-5 max_signed_index_register_value internal static fixed bin(31,0) initial dcl 14-5 max_signed_xreg_precision internal static fixed bin(31,0) initial dcl 14-5 max_uns_xreg_precision internal static fixed bin(31,0) initial dcl 14-5 max_words_per_variable internal static fixed bin(31,0) initial dcl 14-5 merge_attributes 000000 constant entry external dcl 1-355 min_area_size internal static fixed bin(31,0) initial dcl 14-5 min_fun internal static bit(9) initial dcl 9-8 min_scale internal static fixed bin(31,0) initial dcl 14-5 minus internal static bit(9) initial dcl 17-3 mod4_ internal static fixed bin(3,0) initial dcl 7-5 mod_bit internal static bit(9) initial dcl 9-8 mod_byte internal static bit(9) initial dcl 9-8 mod_fun internal static bit(9) initial dcl 9-8 mod_half internal static bit(9) initial dcl 9-8 mod_word internal static bit(9) initial dcl 9-8 mult internal static bit(9) initial dcl 9-8 ne internal static bit(9) initial dcl 17-3 negate internal static bit(9) initial dcl 9-8 ngt internal static bit(9) initial dcl 17-3 nlt internal static bit(9) initial dcl 17-3 no_token internal static bit(9) initial dcl 17-3 nop internal static bit(9) initial dcl 9-8 not internal static bit(9) initial dcl 17-3 not_bits internal static bit(9) initial dcl 9-8 not_equal internal static bit(9) initial dcl 9-8 off_fun internal static bit(9) initial dcl 9-8 open_file internal static bit(9) initial dcl 9-8 operator based structure level 1 dcl 10-6 optimizer 000000 constant entry external dcl 1-361 or internal static bit(9) initial dcl 17-3 or_bits internal static bit(9) initial dcl 9-8 pack internal static bit(9) initial dcl 9-8 packed_digits_per_character internal static fixed bin(31,0) initial dcl 14-5 page_format internal static bit(9) initial dcl 9-8 param_desc_ptr internal static bit(9) initial dcl 9-8 param_ptr internal static bit(9) initial dcl 9-8 parameter based structure level 1 dcl 11-1 parse_error$no_text 000000 constant entry external dcl 1-368 percent internal static bit(9) initial dcl 17-3 period internal static bit(9) initial dcl 17-3 picture_format internal static bit(9) initial dcl 9-8 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_mod_fun internal static bit(9) initial dcl 9-8 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 pl1_stat_$statement_id external static structure level 1 packed packed unaligned dcl 16-6 plus internal static bit(9) initial dcl 17-3 pointer_type internal static bit(36) initial dcl 14-71 prefix_plus internal static bit(9) initial dcl 9-8 ptr_fun internal static bit(9) initial dcl 9-8 put_control internal static bit(9) initial dcl 9-8 put_data_trans internal static bit(9) initial dcl 9-8 put_edit_trans internal static bit(9) initial dcl 9-8 put_field internal static bit(9) initial dcl 9-8 put_field_chk internal static bit(9) initial dcl 9-8 put_file internal static bit(9) initial dcl 9-8 put_list_trans internal static bit(9) initial dcl 9-8 put_string internal static bit(9) initial dcl 9-8 q automatic pointer dcl 13 r_format internal static bit(9) initial dcl 9-8 r_parn internal static bit(9) initial dcl 9-8 range_ck internal static bit(9) initial dcl 9-8 rank_fun internal static bit(9) initial dcl 9-8 read_file internal static bit(9) initial dcl 9-8 real_fun internal static bit(9) initial dcl 9-8 real_type internal static bit(36) initial dcl 14-71 record_io internal static bit(9) initial dcl 9-8 refer internal static bit(9) initial dcl 9-8 refer_extent 000000 constant entry external dcl 1-426 reference based structure level 1 dcl 12-3 rel_fun internal static bit(9) initial dcl 9-8 repeat_fun internal static bit(9) initial dcl 9-8 reserve$clear 000000 constant entry external dcl 1-430 reserve$declare_lib 000000 constant entry external dcl 1-434 return_bits internal static bit(9) initial dcl 9-8 return_string internal static bit(9) initial dcl 9-8 return_value internal static bit(9) initial dcl 9-8 return_words internal static bit(9) initial dcl 9-8 reverse_fun internal static bit(9) initial dcl 9-8 revert_on internal static bit(9) initial dcl 9-8 rewrite_file internal static bit(9) initial dcl 9-8 round_fun internal static bit(9) initial dcl 9-8 search_fun internal static bit(9) initial dcl 9-8 search_rev_fun internal static bit(9) initial dcl 9-8 segno_fun internal static bit(9) initial dcl 9-8 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 semi_colon internal static bit(9) initial dcl 17-3 setbitno_fun internal static bit(9) initial dcl 9-8 setcharno_fun internal static bit(9) initial dcl 9-8 share_expression 000000 constant entry external dcl 1-454 sign_fun internal static bit(9) initial dcl 9-8 signal_on internal static bit(9) initial dcl 9-8 sin_fun internal static bit(9) initial dcl 9-8 sind_fun internal static bit(9) initial dcl 9-8 skip_format internal static bit(9) initial dcl 9-8 slash internal static bit(9) initial dcl 17-3 sqrt_fun internal static bit(9) initial dcl 9-8 stack_ptr internal static bit(9) initial dcl 9-8 stackbaseptr_fun internal static bit(9) initial dcl 9-8 stackframeptr_fun internal static bit(9) initial dcl 9-8 stacq_fun internal static bit(9) initial dcl 9-8 std_arg_list internal static bit(9) initial dcl 9-8 std_call internal static bit(9) initial dcl 9-8 std_entry internal static bit(9) initial dcl 9-8 std_return internal static bit(9) initial dcl 9-8 stop internal static bit(9) initial dcl 9-8 storage_block_type internal static bit(36) initial dcl 14-71 stream_prep internal static bit(9) initial dcl 9-8 sub internal static bit(9) initial dcl 9-8 tan_fun internal static bit(9) initial dcl 9-8 tand_fun internal static bit(9) initial dcl 9-8 terminate_trans internal static bit(9) initial dcl 9-8 token_list_length internal static fixed bin(15,0) initial dcl 16-4 token_to_binary 000000 constant entry external dcl 1-459 translate_fun internal static bit(9) initial dcl 9-8 trunc_fun internal static bit(9) initial dcl 9-8 unlock_file internal static bit(9) initial dcl 9-8 unpack internal static bit(9) initial dcl 9-8 vclock_fun internal static bit(9) initial dcl 9-8 verify_fun internal static bit(9) initial dcl 9-8 verify_ltrim_fun internal static bit(9) initial dcl 9-8 verify_rev_fun internal static bit(9) initial dcl 9-8 verify_rtrim_fun internal static bit(9) initial dcl 9-8 word_ internal static fixed bin(3,0) initial dcl 7-5 word_to_mod2 internal static bit(9) initial dcl 9-8 word_to_mod4 internal static bit(9) initial dcl 9-8 word_to_mod8 internal static bit(9) initial dcl 9-8 wordno_fun internal static bit(9) initial dcl 9-8 words_per_condition_var internal static fixed bin(31,0) initial dcl 14-5 words_per_entry_var internal static fixed bin(31,0) initial dcl 14-5 words_per_file_var internal static fixed bin(31,0) initial dcl 14-5 words_per_fix_bin_1 internal static fixed bin(31,0) initial dcl 14-5 words_per_fix_bin_2 internal static fixed bin(31,0) initial dcl 14-5 words_per_flt_bin_1 internal static fixed bin(31,0) initial dcl 14-5 words_per_flt_bin_2 internal static fixed bin(31,0) initial dcl 14-5 words_per_format internal static fixed bin(31,0) initial dcl 14-5 words_per_label_var internal static fixed bin(31,0) initial dcl 14-5 words_per_offset internal static fixed bin(31,0) initial dcl 14-5 words_per_packed_pointer internal static fixed bin(31,0) initial dcl 14-5 words_per_pointer internal static fixed bin(31,0) initial dcl 14-5 words_per_varying_string_header internal static fixed bin(31,0) initial dcl 14-5 write_file internal static bit(9) initial dcl 9-8 x_format internal static bit(9) initial dcl 9-8 xor_bits internal static bit(9) initial dcl 9-8 NAMES DECLARED BY EXPLICIT CONTEXT. dcl_entry 002404 constant label dcl 53 ref 47 error1 003143 constant label dcl 358 ref 311 314 error2 003146 constant label dcl 361 ref 317 error3 003151 constant label dcl 364 ref 324 error4 003154 constant label dcl 367 ref 335 error5 003157 constant label dcl 370 ref 338 error6 003162 constant label dcl 373 ref 348 352 error7 003165 constant label dcl 376 ref 341 error_finish 003167 constant label dcl 378 ref 359 362 365 368 371 374 l 002744 constant label dcl 313 ref 351 read_lib 002457 constant entry external dcl 65 read_lib_ret 002645 constant label dcl 90 ref 78 84 rename_parse 002722 constant entry external dcl 305 replace 003023 constant label dcl 326 ref 321 reserve$clear 002662 constant entry external dcl 93 reserve$declare_lib 002317 constant entry external dcl 11 THERE WERE NO NAMES DECLARED BY CONTEXT OR IMPLICATION. STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 3360 3544 3214 3370 Length 4252 3214 164 472 144 136 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME reserve$declare_lib 124 external procedure is an external procedure. STORAGE FOR INTERNAL STATIC VARIABLES. LOC IDENTIFIER BLOCK NAME 000010 declared_array reserve$declare_lib 000016 renamed_array reserve$declare_lib 000024 parallel_ptr_number reserve$declare_lib 000026 parallel_ptr reserve$declare_lib STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME reserve$declare_lib 000100 p reserve$declare_lib 000102 s reserve$declare_lib 000104 error_number reserve$declare_lib 000105 i reserve$declare_lib 000106 k reserve$declare_lib 000107 m reserve$declare_lib 000110 n reserve$declare_lib 000111 test_string reserve$declare_lib 000120 token_list_pointer reserve$declare_lib THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. alloc_char_temp unpk_to_pk cat_realloc_chars call_ext_out_desc call_ext_out return_mac signal_op shorten_stack ext_entry THE FOLLOWING EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. create_symbol create_token parse_error reserve$read_lib THE FOLLOWING EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. pl1_stat_$root pl1_stat_$token_list_ptr pl1_stat_$use_old_area LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 16 3 002305 11 002313 40 002332 42 002344 44 002353 45 002356 46 002364 47 002366 48 002372 50 002373 53 002404 55 002411 56 002425 57 002432 63 002444 65 002455 67 002472 69 002501 70 002512 71 002514 72 002521 73 002525 74 002530 77 002537 78 002542 80 002543 83 002600 84 002604 86 002605 87 002610 88 002611 90 002645 93 002657 95 002675 96 002677 99 002705 305 002716 309 002731 311 002735 313 002744 314 002745 316 002755 317 002756 319 002766 320 003000 321 003007 322 003020 324 003022 326 003023 334 003041 335 003042 337 003053 338 003054 340 003064 341 003067 343 003072 344 003076 345 003102 347 003104 348 003105 350 003114 351 003115 352 003125 354 003127 355 003133 356 003135 358 003143 359 003145 361 003146 362 003150 364 003151 365 003153 367 003154 368 003156 370 003157 371 003161 373 003162 374 003164 376 003165 378 003167 380 003203 382 003205 ----------------------------------------------------------- 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