1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508
|
/****************************************************************
Copyright 1990, 1991, 1993, 1994, 1996 by AT&T, Lucent Technologies and Bellcore.
Permission to use, copy, modify, and distribute this software
and its documentation for any purpose and without fee is hereby
granted, provided that the above copyright notice appear in all
copies and that both that the copyright notice and this
permission notice and warranty disclaimer appear in supporting
documentation, and that the names of AT&T, Bell Laboratories,
Lucent or Bellcore or any of their entities not be used in
advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
AT&T, Lucent and Bellcore disclaim all warranties with regard to
this software, including all implied warranties of
merchantability and fitness. In no event shall AT&T, Lucent or
Bellcore be liable for any special, indirect or consequential
damages or any damages whatsoever resulting from loss of use,
data or profits, whether in an action of contract, negligence or
other tortious action, arising out of or in connection with the
use or performance of this software.
****************************************************************/
/* Routines to generate code for I/O statements.
Some corrections and improvements due to David Wasley, U. C. Berkeley
*/
/* TEMPORARY */
#define TYIOINT TYLONG
#define SZIOINT SZLONG
#include "defs.h"
#include "names.h"
#include "iob.h"
extern int byterev, inqmask;
static void dofclose Argdcl((void));
static void dofinquire Argdcl((void));
static void dofmove Argdcl((char*));
static void dofopen Argdcl((void));
static void doiolist Argdcl((chainp));
static void ioset Argdcl((int, int, expptr));
static void ioseta Argdcl((int, Addrp));
static void iosetc Argdcl((int, expptr));
static void iosetip Argdcl((int, int));
static void iosetlc Argdcl((int, int, int));
static void putio Argdcl((expptr, expptr));
static void putiocall Argdcl((expptr));
iob_data *iob_list;
Addrp io_structs[9];
LOCAL char ioroutine[12];
LOCAL long ioendlab;
LOCAL long ioerrlab;
LOCAL int endbit;
LOCAL int errbit;
LOCAL long jumplab;
LOCAL long skiplab;
LOCAL int ioformatted;
LOCAL int statstruct = NO;
LOCAL struct Labelblock *skiplabel;
Addrp ioblkp;
#define UNFORMATTED 0
#define FORMATTED 1
#define LISTDIRECTED 2
#define NAMEDIRECTED 3
#define V(z) ioc[z].iocval
#define IOALL 07777
LOCAL struct Ioclist
{
char *iocname;
int iotype;
expptr iocval;
}
ioc[ ] =
{
{ "", 0 },
{ "unit", IOALL },
{ "fmt", M(IOREAD) | M(IOWRITE) },
{ "err", IOALL },
{ "end", M(IOREAD) },
{ "iostat", IOALL },
{ "rec", M(IOREAD) | M(IOWRITE) },
{ "recl", M(IOOPEN) | M(IOINQUIRE) },
{ "file", M(IOOPEN) | M(IOINQUIRE) },
{ "status", M(IOOPEN) | M(IOCLOSE) },
{ "access", M(IOOPEN) | M(IOINQUIRE) },
{ "form", M(IOOPEN) | M(IOINQUIRE) },
{ "blank", M(IOOPEN) | M(IOINQUIRE) },
{ "exist", M(IOINQUIRE) },
{ "opened", M(IOINQUIRE) },
{ "number", M(IOINQUIRE) },
{ "named", M(IOINQUIRE) },
{ "name", M(IOINQUIRE) },
{ "sequential", M(IOINQUIRE) },
{ "direct", M(IOINQUIRE) },
{ "formatted", M(IOINQUIRE) },
{ "unformatted", M(IOINQUIRE) },
{ "nextrec", M(IOINQUIRE) },
{ "nml", M(IOREAD) | M(IOWRITE) }
};
#define NIOS (sizeof(ioc)/sizeof(struct Ioclist) - 1)
/* #define IOSUNIT 1 */
/* #define IOSFMT 2 */
#define IOSERR 3
#define IOSEND 4
#define IOSIOSTAT 5
#define IOSREC 6
#define IOSRECL 7
#define IOSFILE 8
#define IOSSTATUS 9
#define IOSACCESS 10
#define IOSFORM 11
#define IOSBLANK 12
#define IOSEXISTS 13
#define IOSOPENED 14
#define IOSNUMBER 15
#define IOSNAMED 16
#define IOSNAME 17
#define IOSSEQUENTIAL 18
#define IOSDIRECT 19
#define IOSFORMATTED 20
#define IOSUNFORMATTED 21
#define IOSNEXTREC 22
#define IOSNML 23
#define IOSTP V(IOSIOSTAT)
/* offsets in generated structures */
#define SZFLAG SZIOINT
/* offsets for external READ and WRITE statements */
#define XERR 0
#define XUNIT SZFLAG
#define XEND SZFLAG + SZIOINT
#define XFMT 2*SZFLAG + SZIOINT
#define XREC 2*SZFLAG + SZIOINT + SZADDR
/* offsets for internal READ and WRITE statements */
#define XIUNIT SZFLAG
#define XIEND SZFLAG + SZADDR
#define XIFMT 2*SZFLAG + SZADDR
#define XIRLEN 2*SZFLAG + 2*SZADDR
#define XIRNUM 2*SZFLAG + 2*SZADDR + SZIOINT
#define XIREC 2*SZFLAG + 2*SZADDR + 2*SZIOINT
/* offsets for OPEN statements */
#define XFNAME SZFLAG + SZIOINT
#define XFNAMELEN SZFLAG + SZIOINT + SZADDR
#define XSTATUS SZFLAG + 2*SZIOINT + SZADDR
#define XACCESS SZFLAG + 2*SZIOINT + 2*SZADDR
#define XFORMATTED SZFLAG + 2*SZIOINT + 3*SZADDR
#define XRECLEN SZFLAG + 2*SZIOINT + 4*SZADDR
#define XBLANK SZFLAG + 3*SZIOINT + 4*SZADDR
/* offset for CLOSE statement */
#define XCLSTATUS SZFLAG + SZIOINT
/* offsets for INQUIRE statement */
#define XFILE SZFLAG + SZIOINT
#define XFILELEN SZFLAG + SZIOINT + SZADDR
#define XEXISTS SZFLAG + 2*SZIOINT + SZADDR
#define XOPEN SZFLAG + 2*SZIOINT + 2*SZADDR
#define XNUMBER SZFLAG + 2*SZIOINT + 3*SZADDR
#define XNAMED SZFLAG + 2*SZIOINT + 4*SZADDR
#define XNAME SZFLAG + 2*SZIOINT + 5*SZADDR
#define XNAMELEN SZFLAG + 2*SZIOINT + 6*SZADDR
#define XQACCESS SZFLAG + 3*SZIOINT + 6*SZADDR
#define XQACCLEN SZFLAG + 3*SZIOINT + 7*SZADDR
#define XSEQ SZFLAG + 4*SZIOINT + 7*SZADDR
#define XSEQLEN SZFLAG + 4*SZIOINT + 8*SZADDR
#define XDIRECT SZFLAG + 5*SZIOINT + 8*SZADDR
#define XDIRLEN SZFLAG + 5*SZIOINT + 9*SZADDR
#define XFORM SZFLAG + 6*SZIOINT + 9*SZADDR
#define XFORMLEN SZFLAG + 6*SZIOINT + 10*SZADDR
#define XFMTED SZFLAG + 7*SZIOINT + 10*SZADDR
#define XFMTEDLEN SZFLAG + 7*SZIOINT + 11*SZADDR
#define XUNFMT SZFLAG + 8*SZIOINT + 11*SZADDR
#define XUNFMTLEN SZFLAG + 8*SZIOINT + 12*SZADDR
#define XQRECL SZFLAG + 9*SZIOINT + 12*SZADDR
#define XNEXTREC SZFLAG + 9*SZIOINT + 13*SZADDR
#define XQBLANK SZFLAG + 9*SZIOINT + 14*SZADDR
#define XQBLANKLEN SZFLAG + 9*SZIOINT + 15*SZADDR
LOCAL char *cilist_names[] = {
"cilist",
"cierr",
"ciunit",
"ciend",
"cifmt",
"cirec"
};
LOCAL char *icilist_names[] = {
"icilist",
"icierr",
"iciunit",
"iciend",
"icifmt",
"icirlen",
"icirnum"
};
LOCAL char *olist_names[] = {
"olist",
"oerr",
"ounit",
"ofnm",
"ofnmlen",
"osta",
"oacc",
"ofm",
"orl",
"oblnk"
};
LOCAL char *cllist_names[] = {
"cllist",
"cerr",
"cunit",
"csta"
};
LOCAL char *alist_names[] = {
"alist",
"aerr",
"aunit"
};
LOCAL char *inlist_names[] = {
"inlist",
"inerr",
"inunit",
"infile",
"infilen",
"inex",
"inopen",
"innum",
"innamed",
"inname",
"innamlen",
"inacc",
"inacclen",
"inseq",
"inseqlen",
"indir",
"indirlen",
"infmt",
"infmtlen",
"inform",
"informlen",
"inunf",
"inunflen",
"inrecl",
"innrec",
"inblank",
"inblanklen"
};
LOCAL char **io_fields;
#define zork(n,t) n, sizeof(n)/sizeof(char *) - 1, t
LOCAL io_setup io_stuff[] = {
zork(cilist_names, TYCILIST), /* external read/write */
zork(inlist_names, TYINLIST), /* inquire */
zork(olist_names, TYOLIST), /* open */
zork(cllist_names, TYCLLIST), /* close */
zork(alist_names, TYALIST), /* rewind */
zork(alist_names, TYALIST), /* backspace */
zork(alist_names, TYALIST), /* endfile */
zork(icilist_names,TYICILIST), /* internal read */
zork(icilist_names,TYICILIST) /* internal write */
};
#undef zork
int
#ifdef KR_headers
fmtstmt(lp)
register struct Labelblock *lp;
#else
fmtstmt(register struct Labelblock *lp)
#endif
{
if(lp == NULL)
{
execerr("unlabeled format statement" , CNULL);
return(-1);
}
if(lp->labtype == LABUNKNOWN)
{
lp->labtype = LABFORMAT;
lp->labelno = (int)newlabel();
}
else if(lp->labtype != LABFORMAT)
{
execerr("bad format number", CNULL);
return(-1);
}
return(lp->labelno);
}
void
#ifdef KR_headers
setfmt(lp)
struct Labelblock *lp;
#else
setfmt(struct Labelblock *lp)
#endif
{
int n, parity;
char *s0;
register char *s, *se, *t;
register int k;
s0 = s = lexline(&n);
se = t = s + n;
/* warn of trivial errors, e.g. " 11 CONTINUE" (one too few spaces) */
/* following FORMAT... */
if (n <= 0)
warn("No (...) after FORMAT");
else if (*s != '(')
warni("%c rather than ( after FORMAT", *s);
else if (se[-1] != ')') {
*se = 0;
while(--t > s && *t != ')') ;
if (t <= s)
warn("No ) at end of FORMAT statement");
else if (se - t > 30)
warn1("Extraneous text at end of FORMAT: ...%s", se-12);
else
warn1("Extraneous text at end of FORMAT: %s", t+1);
t = se;
}
/* fix MYQUOTES (\002's) and \\'s */
parity = 1;
while(s < se)
switch(*s++) {
case 2:
if ((parity ^= 1) && *s == 2) {
t -= 2;
++s;
}
else
t += 3;
break;
case '"':
case '\\':
t++; break;
}
s = s0;
parity = 1;
if (lp) {
lp->fmtstring = t = mem((int)(t - s + 1), 0);
while(s < se)
switch(k = *s++) {
case 2:
if ((parity ^= 1) && *s == 2)
s++;
else {
t[0] = '\\';
t[1] = '0';
t[2] = '0';
t[3] = '2';
t += 4;
}
break;
case '"':
case '\\':
*t++ = '\\';
/* no break */
default:
*t++ = k;
}
*t = 0;
}
flline();
}
void
#ifdef KR_headers
startioctl()
#else
startioctl()
#endif
{
register int i;
inioctl = YES;
nioctl = 0;
ioformatted = UNFORMATTED;
for(i = 1 ; i<=NIOS ; ++i)
V(i) = NULL;
}
static long
newiolabel(Void) {
long rv;
rv = ++lastiolabno;
skiplabel = mklabel(rv);
skiplabel->labdefined = 1;
return rv;
}
void
endioctl(Void)
{
int i;
expptr p;
struct io_setup *ios;
inioctl = NO;
/* set up for error recovery */
ioerrlab = ioendlab = skiplab = jumplab = 0;
if(p = V(IOSEND))
if(ISICON(p))
execlab(ioendlab = p->constblock.Const.ci);
else
err("bad end= clause");
if(p = V(IOSERR))
if(ISICON(p))
execlab(ioerrlab = p->constblock.Const.ci);
else
err("bad err= clause");
if(IOSTP)
if(IOSTP->tag!=TADDR || ! ISINT(IOSTP->addrblock.vtype) )
{
err("iostat must be an integer variable");
frexpr(IOSTP);
IOSTP = NULL;
}
if(iostmt == IOREAD)
{
if(IOSTP)
{
if(ioerrlab && ioendlab && ioerrlab==ioendlab)
jumplab = ioerrlab;
else
skiplab = jumplab = newiolabel();
}
else {
if(ioerrlab && ioendlab && ioerrlab!=ioendlab)
{
IOSTP = (expptr) mktmp(TYINT, ENULL);
skiplab = jumplab = newiolabel();
}
else
jumplab = (ioerrlab ? ioerrlab : ioendlab);
}
}
else if(iostmt == IOWRITE)
{
if(IOSTP && !ioerrlab)
skiplab = jumplab = newiolabel();
else
jumplab = ioerrlab;
}
else
jumplab = ioerrlab;
endbit = IOSTP!=NULL || ioendlab!=0; /* for use in startrw() */
errbit = IOSTP!=NULL || ioerrlab!=0;
if (jumplab && !IOSTP)
IOSTP = (expptr) mktmp(TYINT, ENULL);
if(iostmt!=IOREAD && iostmt!=IOWRITE)
{
ios = io_stuff + iostmt;
io_fields = ios->fields;
ioblkp = io_structs[iostmt];
if(ioblkp == NULL)
io_structs[iostmt] = ioblkp =
autovar(1, ios->type, ENULL, "");
ioset(TYIOINT, XERR, ICON(errbit));
}
switch(iostmt)
{
case IOOPEN:
dofopen();
break;
case IOCLOSE:
dofclose();
break;
case IOINQUIRE:
dofinquire();
break;
case IOBACKSPACE:
dofmove("f_back");
break;
case IOREWIND:
dofmove("f_rew");
break;
case IOENDFILE:
dofmove("f_end");
break;
case IOREAD:
case IOWRITE:
startrw();
break;
default:
fatali("impossible iostmt %d", iostmt);
}
for(i = 1 ; i<=NIOS ; ++i)
if(i!=IOSIOSTAT && V(i)!=NULL)
frexpr(V(i));
}
int
iocname(Void)
{
register int i;
int found, mask;
found = 0;
mask = M(iostmt);
for(i = 1 ; i <= NIOS ; ++i)
if(!strcmp(ioc[i].iocname, token))
if(ioc[i].iotype & mask)
return(i);
else {
found = i;
break;
}
if(found) {
if (iostmt == IOOPEN && !strcmp(ioc[i].iocname, "name")) {
NOEXT("open with \"name=\" treated as \"file=\"");
for(i = 1; strcmp(ioc[i].iocname, "file"); i++);
return i;
}
errstr("invalid control %s for statement", ioc[found].iocname);
}
else
errstr("unknown iocontrol %s", token);
return(IOSBAD);
}
void
#ifdef KR_headers
ioclause(n, p)
register int n;
register expptr p;
#else
ioclause(register int n, register expptr p)
#endif
{
struct Ioclist *iocp;
++nioctl;
if(n == IOSBAD)
return;
if(n == IOSPOSITIONAL)
{
n = nioctl;
if (n == IOSFMT) {
if (iostmt == IOOPEN) {
n = IOSFILE;
NOEXT("file= specifier omitted from open");
}
else if (iostmt < IOREAD)
goto illegal;
}
else if(n > IOSFMT)
{
illegal:
err("illegal positional iocontrol");
return;
}
}
else if (n == IOSNML)
n = IOSFMT;
if(p == NULL)
{
if(n == IOSUNIT)
p = (expptr) (iostmt==IOREAD ? IOSTDIN : IOSTDOUT);
else if(n != IOSFMT)
{
err("illegal * iocontrol");
return;
}
}
if(n == IOSFMT)
ioformatted = (p==NULL ? LISTDIRECTED : FORMATTED);
iocp = & ioc[n];
if(iocp->iocval == NULL)
{
if(n!=IOSFMT && ( n!=IOSUNIT || (p && p->headblock.vtype!=TYCHAR) ) )
p = fixtype(p);
else if (p && p->tag == TPRIM
&& p->primblock.namep->vclass == CLUNKNOWN) {
/* kludge made necessary by attempt to infer types
* for untyped external parameters: given an error
* in calling sequences, an integer argument might
* tentatively be assumed TYCHAR; this would otherwise
* be corrected too late in startrw after startrw
* had decided this to be an internal file.
*/
vardcl(p->primblock.namep);
p->primblock.vtype = p->primblock.namep->vtype;
}
iocp->iocval = p;
}
else
errstr("iocontrol %s repeated", iocp->iocname);
}
/* io list item */
void
#ifdef KR_headers
doio(list)
chainp list;
#else
doio(chainp list)
#endif
{
if(ioformatted == NAMEDIRECTED)
{
if(list)
err("no I/O list allowed in NAMELIST read/write");
}
else
{
doiolist(list);
ioroutine[0] = 'e';
if (skiplab)
jumplab = 0;
putiocall( call0(TYINT, ioroutine) );
}
}
LOCAL void
#ifdef KR_headers
doiolist(p0)
chainp p0;
#else
doiolist(chainp p0)
#endif
{
chainp p;
register tagptr q;
register expptr qe;
register Namep qn;
Addrp tp;
int range;
extern char *ohalign;
for (p = p0 ; p ; p = p->nextp)
{
q = (tagptr)p->datap;
if(q->tag == TIMPLDO)
{
exdo(range = (int)newlabel(), (Namep)0,
q->impldoblock.impdospec);
doiolist(q->impldoblock.datalist);
enddo(range);
free( (charptr) q);
}
else {
if(q->tag==TPRIM && q->primblock.argsp==NULL
&& q->primblock.namep->vdim!=NULL)
{
vardcl(qn = q->primblock.namep);
if(qn->vdim->nelt) {
putio( fixtype(cpexpr(qn->vdim->nelt)),
(expptr)mkscalar(qn) );
qn->vlastdim = 0;
}
else
err("attempt to i/o array of unknown size");
}
else if(q->tag==TPRIM && q->primblock.argsp==NULL &&
(qe = (expptr) memversion(q->primblock.namep)) )
putio(ICON(1),qe);
else if (ISCONST(q) && q->constblock.vtype == TYCHAR) {
halign = 0;
putio(ICON(1), qe = fixtype(cpexpr(q)));
halign = ohalign;
}
else if(((qe = fixtype(cpexpr(q)))->tag==TADDR &&
(qe->addrblock.uname_tag != UNAM_CONST ||
!ISCOMPLEX(qe -> addrblock.vtype))) ||
(qe -> tag == TCONST && !ISCOMPLEX(qe ->
headblock.vtype))) {
if (qe -> tag == TCONST)
qe = (expptr) putconst((Constp)qe);
putio(ICON(1), qe);
}
else if(qe->headblock.vtype != TYERROR)
{
if(iostmt == IOWRITE)
{
expptr qvl;
qvl = NULL;
if( ISCHAR(qe) )
{
qvl = (expptr)
cpexpr(qe->headblock.vleng);
tp = mktmp(qe->headblock.vtype,
ICON(lencat(qe)));
}
else
tp = mktmp(qe->headblock.vtype,
qe->headblock.vleng);
puteq( cpexpr((expptr)tp), qe);
if(qvl) /* put right length on block */
{
frexpr(tp->vleng);
tp->vleng = qvl;
}
putio(ICON(1), (expptr)tp);
}
else
err("non-left side in READ list");
}
frexpr(q);
}
}
frchain( &p0 );
}
int iocalladdr = TYADDR; /* for fixing TYADDR in saveargtypes */
int typeconv[TYERROR+1] = {
#ifdef TYQUAD
0, 1, 11, 2, 3, 14, 4, 5, 6, 7, 12, 13, 8, 9, 10, 15
#else
0, 1, 11, 2, 3, 4, 5, 6, 7, 12, 13, 8, 9, 10, 14
#endif
};
LOCAL void
#ifdef KR_headers
putio(nelt, addr)
expptr nelt;
register expptr addr;
#else
putio(expptr nelt, register expptr addr)
#endif
{
int type;
register expptr q;
register Addrp c = 0;
type = addr->headblock.vtype;
if(ioformatted!=LISTDIRECTED && ISCOMPLEX(type) )
{
nelt = mkexpr(OPSTAR, ICON(2), nelt);
type -= (TYCOMPLEX-TYREAL);
}
/* pass a length with every item. for noncharacter data, fake one */
if(type != TYCHAR)
{
if( ISCONST(addr) )
addr = (expptr) putconst((Constp)addr);
c = ALLOC(Addrblock);
c->tag = TADDR;
c->vtype = TYLENG;
c->vstg = STGAUTO;
c->ntempelt = 1;
c->isarray = 1;
c->memoffset = ICON(0);
c->uname_tag = UNAM_IDENT;
c->charleng = 1;
sprintf(c->user.ident, "(ftnlen)sizeof(%s)", typename[type]);
addr = mkexpr(OPCHARCAST, addr, ENULL);
}
nelt = fixtype( mkconv(tyioint,nelt) );
if(ioformatted == LISTDIRECTED) {
expptr mc = mkconv(tyioint, ICON(typeconv[type]));
q = c ? call4(TYINT, "do_lio", mc, nelt, addr, (expptr)c)
: call3(TYINT, "do_lio", mc, nelt, addr);
}
else {
char *s = ioformatted==FORMATTED ? "do_fio"
: !byterev ? "do_uio"
: ONEOF(type, M(TYCHAR)|M(TYINT1)|M(TYLOGICAL1))
? "do_ucio" : "do_unio";
q = c ? call3(TYINT, s, nelt, addr, (expptr)c)
: call2(TYINT, s, nelt, addr);
}
iocalladdr = TYCHAR;
putiocall(q);
iocalladdr = TYADDR;
}
void
endio(Void)
{
if(skiplab)
{
if (ioformatted != NAMEDIRECTED)
p1_label((long)(skiplabel - labeltab));
if(ioendlab) {
exif( mkexpr(OPLT, cpexpr(IOSTP), ICON(0)));
exgoto(execlab(ioendlab));
exendif();
}
if(ioerrlab) {
exif( mkexpr(iostmt==IOREAD||iostmt==IOWRITE
? OPGT : OPNE,
cpexpr(IOSTP), ICON(0)));
exgoto(execlab(ioerrlab));
exendif();
}
}
if(IOSTP)
frexpr(IOSTP);
}
LOCAL void
#ifdef KR_headers
putiocall(q)
register expptr q;
#else
putiocall(register expptr q)
#endif
{
int tyintsave;
tyintsave = tyint;
tyint = tyioint; /* for -I2 and -i2 */
if(IOSTP)
{
q->headblock.vtype = TYINT;
q = fixexpr((Exprp)mkexpr(OPASSIGN, cpexpr(IOSTP), q));
}
putexpr(q);
if(jumplab) {
exif(mkexpr(OPNE, cpexpr(IOSTP), ICON(0)));
exgoto(execlab(jumplab));
exendif();
}
tyint = tyintsave;
}
void
#ifdef KR_headers
fmtname(np, q)
Namep np;
register Addrp q;
#else
fmtname(Namep np, register Addrp q)
#endif
{
register int k;
register char *s, *t;
extern chainp assigned_fmts;
if (!np->vfmt_asg) {
np->vfmt_asg = 1;
assigned_fmts = mkchain((char *)np, assigned_fmts);
}
k = strlen(s = np->fvarname);
if (k < IDENT_LEN - 4) {
q->uname_tag = UNAM_IDENT;
t = q->user.ident;
}
else {
q->uname_tag = UNAM_CHARP;
q->user.Charp = t = mem(k + 5,0);
}
sprintf(t, "%s_fmt", s);
}
LOCAL Addrp
#ifdef KR_headers
asg_addr(p)
union Expression *p;
#else
asg_addr(union Expression *p)
#endif
{
register Addrp q;
if (p->tag != TPRIM)
badtag("asg_addr", p->tag);
q = ALLOC(Addrblock);
q->tag = TADDR;
q->vtype = TYCHAR;
q->vstg = STGAUTO;
q->ntempelt = 1;
q->isarray = 0;
q->memoffset = ICON(0);
fmtname(p->primblock.namep, q);
return q;
}
void
startrw(Void)
{
register expptr p;
register Namep np;
register Addrp unitp, fmtp, recp;
register expptr nump;
int iostmt1;
flag intfile, sequential, ok, varfmt;
struct io_setup *ios;
/* First look at all the parameters and determine what is to be done */
ok = YES;
statstruct = YES;
intfile = NO;
if(p = V(IOSUNIT))
{
if( ISINT(p->headblock.vtype) ) {
int_unit:
unitp = (Addrp) cpexpr(p);
}
else if(p->headblock.vtype == TYCHAR)
{
if (nioctl == 1 && iostmt == IOREAD) {
/* kludge to recognize READ(format expr) */
V(IOSFMT) = p;
V(IOSUNIT) = p = (expptr) IOSTDIN;
ioformatted = FORMATTED;
goto int_unit;
}
intfile = YES;
if(p->tag==TPRIM && p->primblock.argsp==NULL &&
(np = p->primblock.namep)->vdim!=NULL)
{
vardcl(np);
if(nump = np->vdim->nelt)
{
nump = fixtype(cpexpr(nump));
if( ! ISCONST(nump) ) {
statstruct = NO;
np->vlastdim = 0;
}
}
else
{
err("attempt to use internal unit array of unknown size");
ok = NO;
nump = ICON(1);
}
unitp = mkscalar(np);
}
else {
nump = ICON(1);
unitp = (Addrp /*pjw */) fixtype(cpexpr(p));
}
if(! isstatic((expptr)unitp) )
statstruct = NO;
}
else {
err("unit specifier not of type integer or character");
ok = NO;
}
}
else
{
err("bad unit specifier");
ok = NO;
}
sequential = YES;
if(p = V(IOSREC))
if( ISINT(p->headblock.vtype) )
{
recp = (Addrp) cpexpr(p);
sequential = NO;
}
else {
err("bad REC= clause");
ok = NO;
}
else
recp = NULL;
varfmt = YES;
fmtp = NULL;
if(p = V(IOSFMT))
{
if(p->tag==TPRIM && p->primblock.argsp==NULL)
{
np = p->primblock.namep;
if(np->vclass == CLNAMELIST)
{
ioformatted = NAMEDIRECTED;
fmtp = (Addrp) fixtype(p);
V(IOSFMT) = (expptr)fmtp;
if (skiplab)
jumplab = 0;
goto endfmt;
}
vardcl(np);
if(np->vdim)
{
if( ! ONEOF(np->vstg, MSKSTATIC) )
statstruct = NO;
fmtp = mkscalar(np);
goto endfmt;
}
if( ISINT(np->vtype) ) /* ASSIGNed label */
{
statstruct = NO;
varfmt = YES;
fmtp = asg_addr(p);
goto endfmt;
}
}
p = V(IOSFMT) = fixtype(p);
if(p->headblock.vtype == TYCHAR
/* Since we allow write(6,n) */
/* we may as well allow write(6,n(2)) */
|| p->tag == TADDR && ISINT(p->addrblock.vtype))
{
if( ! isstatic(p) )
statstruct = NO;
fmtp = (Addrp) cpexpr(p);
}
else if( ISICON(p) )
{
struct Labelblock *lp;
lp = mklabel(p->constblock.Const.ci);
if (fmtstmt(lp) > 0)
{
fmtp = (Addrp)mkaddcon(lp->stateno);
/* lp->stateno for names fmt_nnn */
lp->fmtlabused = 1;
varfmt = NO;
}
else
ioformatted = UNFORMATTED;
}
else {
err("bad format descriptor");
ioformatted = UNFORMATTED;
ok = NO;
}
}
else
fmtp = NULL;
endfmt:
if(intfile) {
if (ioformatted==UNFORMATTED) {
err("unformatted internal I/O not allowed");
ok = NO;
}
if (recp) {
err("direct internal I/O not allowed");
ok = NO;
}
}
if(!sequential && ioformatted==LISTDIRECTED)
{
err("direct list-directed I/O not allowed");
ok = NO;
}
if(!sequential && ioformatted==NAMEDIRECTED)
{
err("direct namelist I/O not allowed");
ok = NO;
}
if( ! ok ) {
statstruct = NO;
return;
}
/*
Now put out the I/O structure, statically if all the clauses
are constants, dynamically otherwise
*/
if (intfile) {
ios = io_stuff + iostmt;
iostmt1 = IOREAD;
}
else {
ios = io_stuff;
iostmt1 = 0;
}
io_fields = ios->fields;
if(statstruct)
{
ioblkp = ALLOC(Addrblock);
ioblkp->tag = TADDR;
ioblkp->vtype = ios->type;
ioblkp->vclass = CLVAR;
ioblkp->vstg = STGINIT;
ioblkp->memno = ++lastvarno;
ioblkp->memoffset = ICON(0);
ioblkp -> uname_tag = UNAM_IDENT;
new_iob_data(ios,
temp_name("io_", lastvarno, ioblkp->user.ident)); }
else if(!(ioblkp = io_structs[iostmt1]))
io_structs[iostmt1] = ioblkp =
autovar(1, ios->type, ENULL, "");
ioset(TYIOINT, XERR, ICON(errbit));
if(iostmt == IOREAD)
ioset(TYIOINT, (intfile ? XIEND : XEND), ICON(endbit) );
if(intfile)
{
ioset(TYIOINT, XIRNUM, nump);
ioset(TYIOINT, XIRLEN, cpexpr(unitp->vleng) );
ioseta(XIUNIT, unitp);
}
else
ioset(TYIOINT, XUNIT, (expptr) unitp);
if(recp)
ioset(TYIOINT, /* intfile ? XIREC : */ XREC, (expptr) recp);
if(varfmt)
ioseta( intfile ? XIFMT : XFMT , fmtp);
else
ioset(TYADDR, intfile ? XIFMT : XFMT, (expptr) fmtp);
ioroutine[0] = 's';
ioroutine[1] = '_';
ioroutine[2] = iostmt==IOREAD ? 'r' : 'w';
ioroutine[3] = "ds"[sequential];
ioroutine[4] = "ufln"[ioformatted];
ioroutine[5] = "ei"[intfile];
ioroutine[6] = '\0';
putiocall( call1(TYINT, ioroutine, cpexpr((expptr)ioblkp) ));
if(statstruct)
{
frexpr((expptr)ioblkp);
statstruct = NO;
ioblkp = 0; /* unnecessary */
}
}
LOCAL void
dofopen(Void)
{
register expptr p;
if( (p = V(IOSUNIT)) && ISINT(p->headblock.vtype) )
ioset(TYIOINT, XUNIT, cpexpr(p) );
else
err("bad unit in open");
if( (p = V(IOSFILE)) )
if(p->headblock.vtype == TYCHAR)
ioset(TYIOINT, XFNAMELEN, cpexpr(p->headblock.vleng) );
else
err("bad file in open");
iosetc(XFNAME, p);
if(p = V(IOSRECL))
if( ISINT(p->headblock.vtype) )
ioset(TYIOINT, XRECLEN, cpexpr(p) );
else
err("bad recl");
else
ioset(TYIOINT, XRECLEN, ICON(0) );
iosetc(XSTATUS, V(IOSSTATUS));
iosetc(XACCESS, V(IOSACCESS));
iosetc(XFORMATTED, V(IOSFORM));
iosetc(XBLANK, V(IOSBLANK));
putiocall( call1(TYINT, "f_open", cpexpr((expptr)ioblkp) ));
}
LOCAL void
dofclose(Void)
{
register expptr p;
if( (p = V(IOSUNIT)) && ISINT(p->headblock.vtype) )
{
ioset(TYIOINT, XUNIT, cpexpr(p) );
iosetc(XCLSTATUS, V(IOSSTATUS));
putiocall( call1(TYINT, "f_clos", cpexpr((expptr)ioblkp)) );
}
else
err("bad unit in close statement");
}
LOCAL void
dofinquire(Void)
{
register expptr p;
if(p = V(IOSUNIT))
{
if( V(IOSFILE) )
err("inquire by unit or by file, not both");
ioset(TYIOINT, XUNIT, cpexpr(p) );
}
else if( ! V(IOSFILE) )
err("must inquire by unit or by file");
iosetlc(IOSFILE, XFILE, XFILELEN);
iosetip(IOSEXISTS, XEXISTS);
iosetip(IOSOPENED, XOPEN);
iosetip(IOSNUMBER, XNUMBER);
iosetip(IOSNAMED, XNAMED);
iosetlc(IOSNAME, XNAME, XNAMELEN);
iosetlc(IOSACCESS, XQACCESS, XQACCLEN);
iosetlc(IOSSEQUENTIAL, XSEQ, XSEQLEN);
iosetlc(IOSDIRECT, XDIRECT, XDIRLEN);
iosetlc(IOSFORM, XFORM, XFORMLEN);
iosetlc(IOSFORMATTED, XFMTED, XFMTEDLEN);
iosetlc(IOSUNFORMATTED, XUNFMT, XUNFMTLEN);
iosetip(IOSRECL, XQRECL);
iosetip(IOSNEXTREC, XNEXTREC);
iosetlc(IOSBLANK, XQBLANK, XQBLANKLEN);
putiocall( call1(TYINT, "f_inqu", cpexpr((expptr)ioblkp) ));
}
LOCAL void
#ifdef KR_headers
dofmove(subname)
char *subname;
#else
dofmove(char *subname)
#endif
{
register expptr p;
if( (p = V(IOSUNIT)) && ISINT(p->headblock.vtype) )
{
ioset(TYIOINT, XUNIT, cpexpr(p) );
putiocall( call1(TYINT, subname, cpexpr((expptr)ioblkp) ));
}
else
err("bad unit in I/O motion statement");
}
static int ioset_assign = OPASSIGN;
LOCAL void
#ifdef KR_headers
ioset(type, offset, p)
int type;
int offset;
register expptr p;
#else
ioset(int type, int offset, register expptr p)
#endif
{
offset /= SZLONG;
if(statstruct && ISCONST(p)) {
register char *s;
switch(type) {
case TYADDR: /* stmt label */
s = "fmt_";
break;
case TYIOINT:
s = "";
break;
default:
badtype("ioset", type);
}
iob_list->fields[offset] =
string_num(s, p->constblock.Const.ci);
frexpr(p);
}
else {
register Addrp q;
q = ALLOC(Addrblock);
q->tag = TADDR;
q->vtype = type;
q->vstg = STGAUTO;
q->ntempelt = 1;
q->isarray = 0;
q->memoffset = ICON(0);
q->uname_tag = UNAM_IDENT;
sprintf(q->user.ident, "%s.%s",
statstruct ? iob_list->name : ioblkp->user.ident,
io_fields[offset + 1]);
if (type == TYADDR && p->tag == TCONST
&& p->constblock.vtype == TYADDR) {
/* kludge */
register Addrp p1;
p1 = ALLOC(Addrblock);
p1->tag = TADDR;
p1->vtype = type;
p1->vstg = STGAUTO; /* wrong, but who cares? */
p1->ntempelt = 1;
p1->isarray = 0;
p1->memoffset = ICON(0);
p1->uname_tag = UNAM_IDENT;
sprintf(p1->user.ident, "fmt_%ld",
p->constblock.Const.ci);
frexpr(p);
p = (expptr)p1;
}
if (type == TYADDR && p->headblock.vtype == TYCHAR)
q->vtype = TYCHAR;
putexpr(mkexpr(ioset_assign, (expptr)q, p));
}
}
LOCAL void
#ifdef KR_headers
iosetc(offset, p)
int offset;
register expptr p;
#else
iosetc(int offset, register expptr p)
#endif
{
if(p == NULL)
ioset(TYADDR, offset, ICON(0) );
else if(p->headblock.vtype == TYCHAR) {
p = putx(fixtype((expptr)putchop(cpexpr(p))));
ioset(TYADDR, offset, addrof(p));
}
else
err("non-character control clause");
}
LOCAL void
#ifdef KR_headers
ioseta(offset, p)
int offset;
register Addrp p;
#else
ioseta(int offset, register Addrp p)
#endif
{
char *s, *s1;
static char who[] = "ioseta";
expptr e, mo;
Namep np;
ftnint ci;
int k;
char buf[24], buf1[24];
Extsym *comm;
extern int usedefsforcommon;
if(statstruct)
{
if (!p)
return;
if (p->tag != TADDR)
badtag(who, p->tag);
offset /= SZLONG;
switch(p->uname_tag) {
case UNAM_NAME:
mo = p->memoffset;
if (mo->tag != TCONST)
badtag("ioseta/memoffset", mo->tag);
np = p->user.name;
np->visused = 1;
ci = mo->constblock.Const.ci - np->voffset;
if (np->vstg == STGCOMMON
&& !np->vcommequiv
&& !usedefsforcommon) {
comm = &extsymtab[np->vardesc.varno];
sprintf(buf, "%d.", comm->curno);
k = strlen(buf) + strlen(comm->cextname)
+ strlen(np->cvarname);
if (ci) {
sprintf(buf1, "+%ld", ci);
k += strlen(buf1);
}
else
buf1[0] = 0;
s = mem(k + 1, 0);
sprintf(s, "%s%s%s%s", comm->cextname, buf,
np->cvarname, buf1);
}
else if (ci) {
sprintf(buf,"%ld", ci);
s1 = p->user.name->cvarname;
k = strlen(buf) + strlen(s1);
sprintf(s = mem(k+2,0), "%s+%s", s1, buf);
}
else
s = cpstring(np->cvarname);
break;
case UNAM_CONST:
s = tostring(p->user.Const.ccp1.ccp0,
(int)p->vleng->constblock.Const.ci);
break;
default:
badthing("uname_tag", who, p->uname_tag);
}
/* kludge for Hollerith */
if (p->vtype != TYCHAR) {
s1 = mem(strlen(s)+10,0);
sprintf(s1, "(char *)%s%s", p->isarray ? "" : "&", s);
s = s1;
}
iob_list->fields[offset] = s;
}
else {
if (!p)
e = ICON(0);
else if (p->vtype != TYCHAR) {
NOEXT("non-character variable as format or internal unit");
e = mkexpr(OPCHARCAST, (expptr)p, ENULL);
}
else
e = addrof((expptr)p);
ioset(TYADDR, offset, e);
}
}
LOCAL void
#ifdef KR_headers
iosetip(i, offset)
int i;
int offset;
#else
iosetip(int i, int offset)
#endif
{
register expptr p;
if(p = V(i))
if(p->tag==TADDR &&
ONEOF(p->addrblock.vtype, inqmask) ) {
ioset_assign = OPASSIGNI;
ioset(TYADDR, offset, addrof(cpexpr(p)) );
ioset_assign = OPASSIGN;
}
else
errstr("impossible inquire parameter %s", ioc[i].iocname);
else
ioset(TYADDR, offset, ICON(0) );
}
LOCAL void
#ifdef KR_headers
iosetlc(i, offp, offl)
int i;
int offp;
int offl;
#else
iosetlc(int i, int offp, int offl)
#endif
{
register expptr p;
if( (p = V(i)) && p->headblock.vtype==TYCHAR)
ioset(TYIOINT, offl, cpexpr(p->headblock.vleng) );
iosetc(offp, p);
}
|