-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstat.c
752 lines (712 loc) · 16.9 KB
/
stat.c
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
/* -*- mode: c; tabs: 8; hard-tabs: yes; -*- */
/*-
* Copyright (c) 1980, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#if !defined(lint) && defined(sccs)
static char sccsid[] = "@(#)stat.c 8.1 (Berkeley) 6/6/93";
#endif /* not lint */
#include "whoami.h"
#include "0.h"
#include "tree.h"
#include "objfmt.h"
#ifdef PC
# include <pcc.h>
# include "pc.h"
#endif /*PC*/
#ifdef OBJ
# include "align.h"
#endif
#include "tmps.h"
#include "pmon.h"
int cntstat = 0;
short cnts = 3; /*(sizeof(struct pmon_header)/sizeof(long))-1*/
#include "opcode.h"
#include "tree_ty.h"
/*
* Statement list
*/
void
statlist(r)
struct tnode *r;
{
register struct tnode *sl;
for (sl=r; sl != TR_NIL; sl=sl->list_node.next)
statement(sl->list_node.list);
}
/*
* Statement
*/
void
statement(r)
struct tnode *r;
{
register struct tnode *tree_node;
register struct nl *snlp;
struct tmps soffset;
tree_node = r;
snlp = nlp;
soffset = sizes[cbn].curtmps;
top:
if (cntstat) {
cntstat = 0;
putcnt();
}
if (tree_node == TR_NIL)
return;
line = tree_node->lined.line_no;
if (tree_node->tag == T_LABEL) {
labeled(tree_node->label_node.lbl_ptr);
tree_node = tree_node->label_node.stmnt;
noreach = FALSE;
cntstat = 1;
goto top;
}
if (noreach) {
noreach = FALSE;
warning();
error("Unreachable statement");
}
switch (tree_node->tag) {
case T_PCALL:
putline();
#ifdef OBJ
proc(tree_node);
#endif /*OBJ*/
#ifdef PC
pcproc( tree_node );
#endif /*PC*/
break;
case T_ASGN:
putline();
asgnop(&(tree_node->asg_node));
break;
case T_GOTO:
putline();
gotoop(tree_node->goto_node.lbl_ptr);
noreach = TRUE;
cntstat = 1;
break;
default:
level++;
switch (tree_node->tag) {
default:
panic("stat");
case T_IF:
case T_IFEL:
ifop(&(tree_node->if_node));
break;
case T_WHILE:
whilop(&(tree_node->whi_cas));
noreach = FALSE;
break;
case T_REPEAT:
repop(&(tree_node->repeat));
break;
case T_FORU:
case T_FORD:
forop(tree_node);
noreach = FALSE;
break;
case T_BLOCK:
statlist(tree_node->stmnt_blck.stmnt_list);
break;
case T_CASE:
putline();
#ifdef OBJ
caseop(&(tree_node->whi_cas));
#endif /*OBJ*/
#ifdef PC
pccaseop(&(tree_node->whi_cas));
#endif /*PC*/
break;
case T_WITH:
withop(&(tree_node->with_node));
break;
}
--level;
if (gotos[cbn])
ungoto();
break;
}
/*
* Free the temporary name list entries defined in
* expressions, e.g. STRs, and WITHPTRs from withs.
*/
nlfree(snlp);
/*
* free any temporaries allocated for this statement
* these come from strings and sets.
*/
tmpfree(&soffset);
}
void
ungoto()
{
register struct nl *p;
for (p = gotos[cbn]; p != NLNIL; p = p->chain)
if ((p->nl_flags & NFORWD) != 0) {
if (p->value[NL_GOLEV] != NOTYET)
if (p->value[NL_GOLEV] > level)
p->value[NL_GOLEV] = level;
} else
if (p->value[NL_GOLEV] != DEAD)
if (p->value[NL_GOLEV] > level)
p->value[NL_GOLEV] = DEAD;
}
void
putcnt()
{
if (monflg == FALSE) {
return;
}
inccnt( getcnt() );
}
int
getcnt()
{
return ++cnts;
}
void
inccnt( counter )
int counter;
{
#ifdef OBJ
(void) put(2, O_COUNT, counter );
#endif /*OBJ*/
#ifdef PC
putRV( PCPCOUNT , 0 , counter * sizeof (long) , NGLOBAL , PCCT_INT );
putleaf( PCC_ICON , 1 , 0 , PCCT_INT , (char *) 0 );
putop( PCCOM_ASG PCC_PLUS , PCCT_INT );
putdot( filename , line );
#endif /*PC*/
}
void
putline()
{
#ifdef OBJ
if (opt('p') != 0)
(void) put(2, O_LINO, line);
/*
* put out line number information for pdx
*/
lineno(line);
#endif /*OBJ*/
#ifdef PC
static lastline;
if ( line != lastline ) {
stabline( line );
lastline = line;
}
if ( opt( 'p' ) ) {
if ( opt('t') ) {
putleaf( PCC_ICON , 0 , 0 , PCCM_ADDTYPE( PCCTM_FTN | PCCT_INT , PCCTM_PTR )
, "_LINO" );
putop( PCCOM_UNARY PCC_CALL , PCCT_INT );
putdot( filename , line );
} else {
putRV( STMTCOUNT , 0 , 0 , NGLOBAL , PCCT_INT );
putleaf( PCC_ICON , 1 , 0 , PCCT_INT , (char *) 0 );
putop( PCCOM_ASG PCC_PLUS , PCCT_INT );
putdot( filename , line );
}
}
#endif /*PC*/
}
/*
* With varlist do stat
*
* With statement requires an extra word in automatic storage for eachi
* level of withing. These indirect pointers are initialized here, and
* the scoping effect of the with statement occurs because lookup examines
* the field names of the records associated with the WITHPTRs oni
* the withlist.
*/
void
withop(s)
WITH_NODE *s;
{
register struct tnode *p;
register struct nl *r;
struct nl *tempnlp;
struct nl *swl;
putline();
swl = withlist;
for (p = s->var_list; p != TR_NIL; p = p->list_node.next) {
tempnlp = tmpalloc((long) (sizeof(int *)), nl+TPTR, REGOK);
/*
* no one uses the allocated temporary namelist entry,
* since we have to use it before we know its type;
* but we use its runtime location for the with pointer.
*/
#ifdef OBJ
(void) put(2, O_LV | cbn <<8+INDX, tempnlp -> value[ NL_OFFS ] );
#endif /*OBJ*/
#ifdef PC
putRV( (char *) 0 , cbn , tempnlp -> value[ NL_OFFS ] ,
tempnlp -> extra_flags , PCCTM_PTR|PCCT_STRTY );
#endif /*PC*/
r = lvalue(p->list_node.list, MOD , LREQ );
if (r == NLNIL)
continue;
if (r->class != RECORD) {
error("Variable in with statement refers to %s, not to a record", nameof(r));
continue;
}
r = defnl((char *) 0, WITHPTR, r, tempnlp -> value[ NL_OFFS ] );
#ifdef PC
r -> extra_flags |= tempnlp -> extra_flags;
#endif /*PC*/
r->nl_next = withlist;
withlist = r;
#ifdef OBJ
(void) put(1, PTR_AS);
#endif /*OBJ*/
#ifdef PC
putop( PCC_ASSIGN , PCCTM_PTR|PCCT_STRTY );
putdot( filename , line );
#endif /*PC*/
}
statement(s->stmnt);
withlist = swl;
}
extern int flagwas;
/*
* var := expr
*/
void
asgnop(r)
ASG_NODE *r;
{
register struct nl *p;
register struct tnode *av;
/*
* Asgnop's only function is
* to handle function variable
* assignments. All other assignment
* stuff is handled by asgnop1.
* the if below checks for unqualified lefthandside:
* necessary for fvars.
*/
av = r->lhs_var;
if (av != TR_NIL && av->tag == T_VAR && av->var_node.qual == TR_NIL) {
p = lookup1(av->var_node.cptr);
if (p != NLNIL)
p->nl_flags = flagwas;
if (p != NLNIL && p->class == FVAR) {
/*
* Give asgnop1 the func
* which is the chain of
* the FVAR.
*/
p->nl_flags |= NUSED|NMOD;
p = p->chain;
if (p == NLNIL) {
p = rvalue(r->rhs_expr, NLNIL , RREQ );
return;
}
#ifdef OBJ
(void) put(2, O_LV | bn << 8+INDX, (int)p->value[NL_OFFS]);
if (isa(p->type, "i") && width(p->type) == 1)
(void) asgnop1(r, nl+T2INT);
else
(void) asgnop1(r, p->type);
#endif /*OBJ*/
#ifdef PC
/*
* this should be the lvalue of the fvar,
* but since the second pass knows to use
* the address of the left operand of an
* assignment, what i want here is an rvalue.
* see note in funchdr about fvar allocation.
*/
p = p -> ptr[ NL_FVAR ];
putRV( p -> symbol , bn , p -> value[ NL_OFFS ] ,
p -> extra_flags , p2type( p -> type ) );
(void) asgnop1( r , p -> type );
#endif /*PC*/
return;
}
}
(void) asgnop1(r, NLNIL);
}
/*
* Asgnop1 handles all assignments.
* If p is not nil then we are assigning to a function variable, otherwise
* we look the variable up ourselves.
*/
struct nl *
asgnop1(r, p)
ASG_NODE *r;
register struct nl *p;
{
register struct nl *p1;
int clas;
#ifdef OBJ
int w;
#endif /*OBJ*/
#ifdef OBJ
if (p == NLNIL) {
p = lvalue( r->lhs_var, MOD|ASGN|NOUSE, LREQ );
if ( p == NLNIL ) {
(void) rvalue( r->rhs_expr, NLNIL ,RREQ );
return NLNIL;
}
w = width(p);
} else {
/*
* assigning to the return value, which is at least
* of width two since it resides on the stack
*/
w = width(p);
if (w < 2)
w = 2;
}
clas = classify(p);
if ((clas == TARY || clas == TSTR) && p->chain->class == CRANGE) {
p1 = lvalue(r->rhs_expr, TNONE, LREQ);
#ifdef XXX
WAS p1 = lvalue(r->rhs_expr, p, LREQ); /* SHOULD THIS BE rvalue? */
#endif
} else {
p1 = rvalue(r->rhs_expr, p, RREQ);
}
#endif /*OBJ*/
#ifdef PC
if (p == NLNIL) {
/* check for conformant array type */
codeoff();
p = rvalue(r->lhs_var, MOD|ASGN|NOUSE, LREQ);
codeon();
if (p == NLNIL) {
(void) rvalue(r->rhs_expr, NLNIL, RREQ);
return NLNIL;
}
clas = classify(p);
if ((clas == TARY || clas == TSTR) && p->chain->class == CRANGE) {
return pcasgconf(r, p);
} else {
/*
* since the second pass knows that it should reference
* the lefthandside of asignments, what i need here is
* an rvalue.
*/
p = lvalue( r->lhs_var, MOD|ASGN|NOUSE, RREQ );
}
if ( p == NLNIL ) {
(void) rvalue( r->rhs_expr , NLNIL , RREQ );
return NLNIL;
}
}
/*
* if this is a scalar assignment,
* then i want to rvalue the righthandside.
* if this is a structure assignment,
* then i want an lvalue to the righthandside.
* that's what the intermediate form sez.
*/
switch ( classify( p ) ) {
case TINT:
case TCHAR:
case TBOOL:
case TSCAL:
precheck( p , "_RANG4" , "_RSNG4" );
/* and fall through */
case TDOUBLE:
case TPTR:
p1 = rvalue( r->rhs_expr , p , RREQ );
break;
default:
p1 = rvalue( r->rhs_expr , p , LREQ );
break;
}
#endif /*PC*/
if (p1 == NLNIL)
return (NLNIL);
if (incompat(p1, p, r->rhs_expr)) {
cerror("Type of expression clashed with type of variable in assignment");
return (NLNIL);
}
#ifdef OBJ
switch (classify(p)) {
case TINT:
case TBOOL:
case TCHAR:
case TSCAL:
rangechk(p, p1);
(void) gen(O_AS2, O_AS2, w, width(p1));
break;
case TDOUBLE:
case TPTR:
(void) gen(O_AS2, O_AS2, w, width(p1));
break;
case TARY:
case TSTR:
if (p->chain->class == CRANGE) {
/* conformant array assignment */
p1 = p->chain;
w = width(p1->type);
putcbnds(p1, 1);
putcbnds(p1, 0);
gen(TNONE, T_SUB, w, w);
put(2, w > 2? O_CON24: O_CON2, 1);
gen(TNONE, T_ADD, w, w);
putcbnds(p1, 2);
gen(TNONE, T_MULT, w, w);
put(1, O_VAS);
break;
}
/* else fall through */
default:
(void) put(2, O_AS, w);
break;
}
#endif /*OBJ*/
#ifdef PC
switch (classify(p)) {
case TINT:
case TBOOL:
case TCHAR:
case TSCAL:
postcheck(p, p1);
sconv(p2type(p1), p2type(p));
putop( PCC_ASSIGN , p2type( p ) );
putdot( filename , line );
break;
case TPTR:
putop( PCC_ASSIGN , p2type( p ) );
putdot( filename , line );
break;
case TDOUBLE:
sconv(p2type(p1), p2type(p));
putop( PCC_ASSIGN , p2type( p ) );
putdot( filename , line );
break;
default:
putstrop(PCC_STASG, PCCM_ADDTYPE(p2type(p), PCCTM_PTR),
(int) lwidth(p), align(p));
putdot( filename , line );
break;
}
#endif /*PC*/
return (p); /* Used by for statement */
}
#ifdef PC
/*
* assignment to conformant arrays. Since these are variable length,
* we use blkcpy() to perform the assignment.
* blkcpy(rhs, lhs, (upper - lower + 1) * width)
*/
struct nl *
pcasgconf(r, p)
register ASG_NODE *r;
struct nl *p;
{
struct nl *p1;
if (r == (ASG_NODE *) TR_NIL || p == NLNIL)
return NLNIL;
putleaf( PCC_ICON , 0 , 0 , PCCM_ADDTYPE( PCCTM_FTN | PCCT_INT , PCCTM_PTR) , "_blkcpy" );
p1 = rvalue( r->rhs_expr , p , LREQ );
if (p1 == NLNIL)
return NLNIL;
p = lvalue( r->lhs_var , MOD|ASGN|NOUSE , LREQ );
if (p == NLNIL)
return NLNIL;
putop(PCC_CM, PCCT_INT);
/* upper bound */
p1 = p->chain->nptr[1];
putRV(p1->symbol, (p1->nl_block & 037), p1->value[0],
p1->extra_flags, p2type( p1 ) );
/* minus lower bound */
p1 = p->chain->nptr[0];
putRV(p1->symbol, (p1->nl_block & 037), p1->value[0],
p1->extra_flags, p2type( p1 ) );
putop( PCC_MINUS, PCCT_INT );
/* add one */
putleaf(PCC_ICON, 1, 0, PCCT_INT, 0);
putop( PCC_PLUS, PCCT_INT );
/* and multiply by the width */
p1 = p->chain->nptr[2];
putRV(p1->symbol, (p1->nl_block & 037), p1->value[0],
p1->extra_flags, p2type( p1 ) );
putop( PCC_MUL , PCCT_INT );
putop(PCC_CM, PCCT_INT);
putop(PCC_CALL, PCCT_INT);
putdot( filename , line);
return p;
}
#endif /*PC*/
/*
* if expr then stat [ else stat ]
*/
void
ifop(if_n)
IF_NODE *if_n;
{
register struct nl *p;
register int l1, l2; /* l1 is start of else, l2 is end of else */
int goc;
bool nr;
goc = gocnt;
putline();
p = rvalue(if_n->cond_expr, NLNIL , RREQ );
if (p == NIL) {
statement(if_n->then_stmnt);
noreach = FALSE;
statement(if_n->else_stmnt);
noreach = FALSE;
return;
}
if (isnta(p, "b")) {
error("Type of expression in if statement must be Boolean, not %s", nameof(p));
statement(if_n->then_stmnt);
noreach = FALSE;
statement(if_n->else_stmnt);
noreach = FALSE;
return;
}
#ifdef OBJ
l1 = put(2, O_IF, getlab());
#endif /*OBJ*/
#ifdef PC
l1 = (int) getlab();
putleaf( PCC_ICON , l1 , 0 , PCCT_INT , (char *) 0 );
putop( PCC_CBRANCH , PCCT_INT );
putdot( filename , line );
#endif /*PC*/
putcnt();
statement(if_n->then_stmnt);
nr = noreach;
if (if_n->else_stmnt != TR_NIL) {
/*
* else stat
*/
--level;
ungoto();
++level;
#ifdef OBJ
l2 = put(2, O_TRA, getlab());
#endif /*OBJ*/
#ifdef PC
l2 = (int) getlab();
putjbr( (long) l2 );
#endif /*PC*/
patch((PTR_DCL)l1);
noreach = FALSE;
statement(if_n->else_stmnt);
noreach = (noreach && nr)?TRUE:FALSE;
l1 = l2;
} else
noreach = FALSE;
patch((PTR_DCL)l1);
if (goc != gocnt)
putcnt();
}
/*
* while expr do stat
*/
void
whilop(w_node)
WHI_CAS *w_node;
{
register struct nl *p;
register char *l1, *l2;
int goc;
goc = gocnt;
l1 = getlab();
(void) putlab(l1);
putline();
p = rvalue(w_node->expr, NLNIL , RREQ );
if (p == NLNIL) {
statement(w_node->stmnt_list);
noreach = FALSE;
return;
}
if (isnta(p, "b")) {
error("Type of expression in while statement must be Boolean, not %s", nameof(p));
statement(w_node->stmnt_list);
noreach = FALSE;
return;
}
l2 = getlab();
#ifdef OBJ
(void) put(2, O_IF, l2);
#endif /*OBJ*/
#ifdef PC
putleaf( PCC_ICON , (int) l2 , 0 , PCCT_INT , (char *) 0 );
putop( PCC_CBRANCH , PCCT_INT );
putdot( filename , line );
#endif /*PC*/
putcnt();
statement(w_node->stmnt_list);
#ifdef OBJ
(void) put(2, O_TRA, l1);
#endif /*OBJ*/
#ifdef PC
putjbr( (long) l1 );
#endif /*PC*/
patch((PTR_DCL) l2);
if (goc != gocnt)
putcnt();
}
/*
* repeat stat* until expr
*/
void
repop(r)
REPEAT *r;
{
register struct nl *p;
register int l;
int goc;
goc = gocnt;
l = (int) putlab(getlab());
putcnt();
statlist(r->stmnt_list);
line = r->line_no;
p = rvalue(r->term_expr, NLNIL , RREQ );
if (p == NLNIL)
return;
if (isnta(p,"b")) {
error("Until expression type must be Boolean, not %s, in repeat statement", nameof(p));
return;
}
#ifdef OBJ
(void) put(2, O_IF, l);
#endif /*OBJ*/
#ifdef PC
putleaf( PCC_ICON , l , 0 , PCCT_INT , (char *) 0 );
putop( PCC_CBRANCH , PCCT_INT );
putdot( filename , line );
#endif /*PC*/
if (goc != gocnt)
putcnt();
}