summary refs log tree commit diff
path: root/lisc/ssa.c
blob: 97ba707c036fe1fd413becb0282b698729d08413 (plain) (blame)
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
#include "lisc.h"

static void
addpred(Blk *bp, Blk *bc)
{
	uint i;

	if (!bc->pred) {
		bc->pred = alloc(bc->npred * sizeof bc->pred[0]);
		for (i=0; i<bc->npred; i++)
			bc->pred[i] = 0;
	}
	for (i=0; bc->pred[i]; i++)
		;
	bc->pred[i] = bp;
}

/* fill predecessors information in blocks
 */
void
fillpreds(Fn *f)
{
	Blk *b;

	for (b=f->start; b; b=b->link) {
		b->npred = 0;
		free(b->pred);
		b->pred = 0;
	}
	for (b=f->start; b; b=b->link) {
		if (b->s1)
			b->s1->npred++;
		if (b->s2)
			b->s2->npred++;
	}
	for (b=f->start; b; b=b->link) {
		if (b->s1)
			addpred(b, b->s1);
		if (b->s2)
			addpred(b, b->s2);
	}
}

static int
rporec(Blk *b, int x)
{
	Blk *s1, *s2;

	if (!b || b->id >= 0)
		return x;
	b->id = 1;
	s1 = b->s1;
	s2 = b->s2;
	if (s1 && s2 && s1->loop > s2->loop) {
		s1 = b->s2;
		s2 = b->s1;
	}
	x = rporec(s1, x);
	x = rporec(s2, x);
	b->id = x;
	assert(x >= 0);
	return x - 1;
}

/* fill the rpo information in blocks
 */
void
fillrpo(Fn *f)
{
	int n;
	Blk *b, **p;

	for (b=f->start; b; b=b->link)
		b->id = -1;
	n = 1 + rporec(f->start, f->nblk-1);
	f->nblk -= n;
	free(f->rpo);
	f->rpo = alloc(f->nblk * sizeof f->rpo[0]);
	for (p=&f->start; *p;) {
		b = *p;
		if (b->id == -1) {
			*p = b->link;
			/* todo, free block */
		} else {
			b->id -= n;
			f->rpo[b->id] = b;
			p=&(*p)->link;
		}
	}
}

/* gets the representant for the phi class of t
 */
int
phirepr(Tmp *tmp, int t)
{
	int tp;

	tp = tmp[t].phi;
	if (tp == 0)
		tp = t;
	else if (tp != t) {
		tp = phirepr(tmp, tp);
		tmp[t].phi = tp;
	}
	return tp;
}

/* fill union find data for phi classes
 * requires live
 */
void
fillphi(Fn *fn)
{
	Blk *b;
	Phi *p;
	uint a;
	int t, ta;
	Tmp *tmp;

	tmp = fn->tmp;
	for (t=Tmp0; t<fn->ntmp; t++)
		tmp[t].phi = 0;
	for (b=fn->start; b; b=b->link)
		for (p=b->phi; p; p=p->link) {
			t = p->to.val;
			if (tmp[t].phi == 0)
				tmp[t].phi = t;
			for (a=0; a<p->narg; a++) {
				if (rtype(p->arg[a]) != RTmp)
					continue;
				ta = p->arg[a].val;
				if (BGET(b->in, ta))
					/* do not merge the
					 * classes of phi args
					 * that outlive the phi
					 * node
					 */
					continue;
				ta = phirepr(tmp, ta);
				tmp[ta].phi = t;
			}
		}
}

static Ref *top, *bot;
static Ref topdef(Blk *, Fn *, int);

static Ref
botdef(Blk *b, Fn *f, int w)
{
	Ref r;

	if (!req(bot[b->id], R))
		return bot[b->id];
	r = topdef(b, f, w);
	bot[b->id] = r;
	return r;
}

static Ref
topdef(Blk *b, Fn *f, int w)
{
	uint i;
	int t1;
	Ref r;
	Phi *p;

	if (!req(top[b->id], R))
		return top[b->id];
	assert(b->npred && "invalid ssa program detected");
	if (b->npred == 1) {
		r = botdef(b->pred[0], f, w);
		top[b->id] = r;
		return r;
	}
	/* add a phi node */
	t1 = f->ntmp++;
	r = TMP(t1);
	top[b->id] = r;
	p = alloc(sizeof *p);
	p->link = b->phi;
	b->phi = p;
	p->to = r;
	p->wide = w;
	for (i=0; i<b->npred; i++) {
		p->arg[i] = botdef(b->pred[i], f, w);
		p->blk[i] = b->pred[i];
	}
	p->narg = i;
	return r;
}

/* restore ssa form for a temporary t
 * predecessors must be available
 */
void
ssafix(Fn *f, int t)
{
	uint n;
	int t0, t1, w;
	Ref rt;
	Blk *b;
	Phi *p;
	Ins *i;

	w = 0;
	top = alloc(f->nblk * sizeof top[0]);
	bot = alloc(f->nblk * sizeof bot[0]);
	rt = TMP(t);
	t0 = f->ntmp;
	for (b=f->start; b; b=b->link) {
		t1 = 0;
		/* rename defs and some in-blocks uses */
		for (p=b->phi; p; p=p->link)
			if (req(p->to, rt)) {
				t1 = f->ntmp++;
				p->to = TMP(t1);
				w |= p->wide;
			}
		for (i=b->ins; i-b->ins < b->nins; i++) {
			if (t1) {
				if (req(i->arg[0], rt))
					i->arg[0] = TMP(t1);
				if (req(i->arg[1], rt))
					i->arg[1] = TMP(t1);
			}
			if (req(i->to, rt)) {
				w |= i->wide;
				t1 = f->ntmp++;
				i->to = TMP(t1);
			}
		}
		if (t1 && req(b->jmp.arg, rt))
			b->jmp.arg = TMP(t1);
		top[b->id] = R;
		bot[b->id] = t1 ? TMP(t1) : R;
	}
	for (b=f->start; b; b=b->link) {
		for (p=b->phi; p; p=p->link)
			for (n=0; n<p->narg; n++)
				if (req(p->arg[n], rt))
					p->arg[n] = botdef(p->blk[n], f, w);
		for (i=b->ins; i-b->ins < b->nins; i++) {
			if (req(i->arg[0], rt))
				i->arg[0] = topdef(b, f, w);
			if (req(i->arg[1], rt))
				i->arg[1] = topdef(b, f, w);
		}
		if (req(b->jmp.arg, rt))
			b->jmp.arg = topdef(b, f, w);
	}
	/* add new temporaries */
	f->tmp = realloc(f->tmp, f->ntmp * sizeof f->tmp[0]);
	if (!f->tmp)
		diag("ssafix: out of memory");
	for (t1=t0; t0<f->ntmp; t0++) {
		f->tmp[t0] = f->tmp[t];
		snprintf(f->tmp[t0].name, NString, "%s%d",
			f->tmp[t].name, t0-t1);
	}
	free(top);
	free(bot);
}