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
|
/*
* Copyright (c) 2017 Lima Project
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sub license,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the
* next paragraph) shall be included in all copies or substantial portions
* of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
*/
#include <string.h>
#include "util/ralloc.h"
#include "gpir.h"
gpir_instr *gpir_instr_create(gpir_block *block)
{
gpir_instr *instr = rzalloc(block, gpir_instr);
if (unlikely(!instr))
return NULL;
instr->index = block->sched.instr_index++;
instr->alu_num_slot_free = 6;
instr->alu_non_cplx_slot_free = 5;
instr->alu_max_allowed_next_max = 5;
list_add(&instr->list, &block->instr_list);
return instr;
}
static gpir_node *gpir_instr_get_the_other_acc_node(gpir_instr *instr, int slot)
{
if (slot == GPIR_INSTR_SLOT_ADD0)
return instr->slots[GPIR_INSTR_SLOT_ADD1];
else if (slot == GPIR_INSTR_SLOT_ADD1)
return instr->slots[GPIR_INSTR_SLOT_ADD0];
return NULL;
}
static bool gpir_instr_check_acc_same_op(gpir_instr *instr, gpir_node *node, int slot)
{
/* two ACC slots must share the same op code */
gpir_node *acc_node = gpir_instr_get_the_other_acc_node(instr, slot);
/* spill move case may get acc_node == node */
if (acc_node && acc_node != node &&
!gpir_codegen_acc_same_op(node->op, acc_node->op))
return false;
return true;
}
static int gpir_instr_get_consume_slot(gpir_instr *instr, gpir_node *node)
{
if (gpir_op_infos[node->op].may_consume_two_slots) {
gpir_node *acc_node = gpir_instr_get_the_other_acc_node(instr, node->sched.pos);
if (acc_node)
/* at this point node must have the same acc op with acc_node,
* so it just consumes the extra slot acc_node consumed */
return 0;
else
return 2;
}
else
return 1;
}
static bool gpir_instr_insert_alu_check(gpir_instr *instr, gpir_node *node)
{
if (!gpir_instr_check_acc_same_op(instr, node, node->sched.pos))
return false;
if (node->sched.next_max_node && !node->sched.complex_allowed &&
node->sched.pos == GPIR_INSTR_SLOT_COMPLEX)
return false;
int consume_slot = gpir_instr_get_consume_slot(instr, node);
int non_cplx_consume_slot =
node->sched.pos == GPIR_INSTR_SLOT_COMPLEX ? 0 : consume_slot;
int store_reduce_slot = 0;
int non_cplx_store_reduce_slot = 0;
int max_reduce_slot = node->sched.max_node ? 1 : 0;
int next_max_reduce_slot = node->sched.next_max_node ? 1 : 0;
int alu_new_max_allowed_next_max =
node->op == gpir_op_complex1 ? 4 : instr->alu_max_allowed_next_max;
/* check if this node is child of one store node.
* complex1 won't be any of this instr's store node's child,
* because it has two instr latency before store can use it.
*/
for (int i = GPIR_INSTR_SLOT_STORE0; i <= GPIR_INSTR_SLOT_STORE3; i++) {
gpir_store_node *s = gpir_node_to_store(instr->slots[i]);
if (s && s->child == node) {
store_reduce_slot = 1;
if (node->sched.next_max_node && !node->sched.complex_allowed)
non_cplx_store_reduce_slot = 1;
break;
}
}
/* Check that the invariants will be maintained after we adjust everything
*/
int slot_difference =
instr->alu_num_slot_needed_by_store - store_reduce_slot +
instr->alu_num_slot_needed_by_max - max_reduce_slot +
MAX2(instr->alu_num_unscheduled_next_max - next_max_reduce_slot -
alu_new_max_allowed_next_max, 0) -
(instr->alu_num_slot_free - consume_slot);
if (slot_difference > 0) {
gpir_debug("failed %d because of alu slot\n", node->index);
instr->slot_difference = slot_difference;
}
int non_cplx_slot_difference =
instr->alu_num_slot_needed_by_max - max_reduce_slot +
instr->alu_num_slot_needed_by_non_cplx_store - non_cplx_store_reduce_slot -
(instr->alu_non_cplx_slot_free - non_cplx_consume_slot);
if (non_cplx_slot_difference > 0) {
gpir_debug("failed %d because of alu slot\n", node->index);
instr->non_cplx_slot_difference = non_cplx_slot_difference;
}
if (slot_difference > 0 || non_cplx_slot_difference > 0)
return false;
instr->alu_num_slot_free -= consume_slot;
instr->alu_non_cplx_slot_free -= non_cplx_consume_slot;
instr->alu_num_slot_needed_by_store -= store_reduce_slot;
instr->alu_num_slot_needed_by_non_cplx_store -= non_cplx_store_reduce_slot;
instr->alu_num_slot_needed_by_max -= max_reduce_slot;
instr->alu_num_unscheduled_next_max -= next_max_reduce_slot;
instr->alu_max_allowed_next_max = alu_new_max_allowed_next_max;
return true;
}
static void gpir_instr_remove_alu(gpir_instr *instr, gpir_node *node)
{
int consume_slot = gpir_instr_get_consume_slot(instr, node);
for (int i = GPIR_INSTR_SLOT_STORE0; i <= GPIR_INSTR_SLOT_STORE3; i++) {
gpir_store_node *s = gpir_node_to_store(instr->slots[i]);
if (s && s->child == node) {
instr->alu_num_slot_needed_by_store++;
if (node->sched.next_max_node && !node->sched.complex_allowed)
instr->alu_num_slot_needed_by_non_cplx_store++;
break;
}
}
instr->alu_num_slot_free += consume_slot;
if (node->sched.pos != GPIR_INSTR_SLOT_COMPLEX)
instr->alu_non_cplx_slot_free += consume_slot;
if (node->sched.max_node)
instr->alu_num_slot_needed_by_max++;
if (node->sched.next_max_node)
instr->alu_num_unscheduled_next_max++;
if (node->op == gpir_op_complex1)
instr->alu_max_allowed_next_max = 5;
}
static bool gpir_instr_insert_reg0_check(gpir_instr *instr, gpir_node *node)
{
gpir_load_node *load = gpir_node_to_load(node);
int i = node->sched.pos - GPIR_INSTR_SLOT_REG0_LOAD0;
if (load->component != i)
return false;
if (instr->reg0_is_attr && node->op != gpir_op_load_attribute)
return false;
if (instr->reg0_use_count) {
if (instr->reg0_index != load->index)
return false;
}
else {
instr->reg0_is_attr = node->op == gpir_op_load_attribute;
instr->reg0_index = load->index;
}
instr->reg0_use_count++;
return true;
}
static void gpir_instr_remove_reg0(gpir_instr *instr, gpir_node *node)
{
instr->reg0_use_count--;
if (!instr->reg0_use_count)
instr->reg0_is_attr = false;
}
static bool gpir_instr_insert_reg1_check(gpir_instr *instr, gpir_node *node)
{
gpir_load_node *load = gpir_node_to_load(node);
int i = node->sched.pos - GPIR_INSTR_SLOT_REG1_LOAD0;
if (load->component != i)
return false;
if (instr->reg1_use_count) {
if (instr->reg1_index != load->index)
return false;
}
else
instr->reg1_index = load->index;
instr->reg1_use_count++;
return true;
}
static void gpir_instr_remove_reg1(gpir_instr *instr, gpir_node *node)
{
instr->reg1_use_count--;
}
static bool gpir_instr_insert_mem_check(gpir_instr *instr, gpir_node *node)
{
gpir_load_node *load = gpir_node_to_load(node);
int i = node->sched.pos - GPIR_INSTR_SLOT_MEM_LOAD0;
if (load->component != i)
return false;
if (instr->mem_is_temp && node->op != gpir_op_load_temp)
return false;
if (instr->mem_use_count) {
if (instr->mem_index != load->index)
return false;
}
else {
instr->mem_is_temp = node->op == gpir_op_load_temp;
instr->mem_index = load->index;
}
instr->mem_use_count++;
return true;
}
static void gpir_instr_remove_mem(gpir_instr *instr, gpir_node *node)
{
instr->mem_use_count--;
if (!instr->mem_use_count)
instr->mem_is_temp = false;
}
static bool gpir_instr_insert_store_check(gpir_instr *instr, gpir_node *node)
{
gpir_store_node *store = gpir_node_to_store(node);
int i = node->sched.pos - GPIR_INSTR_SLOT_STORE0;
if (store->component != i)
return false;
i >>= 1;
switch (instr->store_content[i]) {
case GPIR_INSTR_STORE_NONE:
/* store temp has only one address reg for two store unit */
if (node->op == gpir_op_store_temp &&
instr->store_content[!i] == GPIR_INSTR_STORE_TEMP &&
instr->store_index[!i] != store->index)
return false;
break;
case GPIR_INSTR_STORE_VARYING:
if (node->op != gpir_op_store_varying ||
instr->store_index[i] != store->index)
return false;
break;
case GPIR_INSTR_STORE_REG:
if (node->op != gpir_op_store_reg ||
instr->store_index[i] != store->index)
return false;
break;
case GPIR_INSTR_STORE_TEMP:
if (node->op != gpir_op_store_temp ||
instr->store_index[i] != store->index)
return false;
break;
}
/* check if any store node has the same child as this node */
for (int j = GPIR_INSTR_SLOT_STORE0; j <= GPIR_INSTR_SLOT_STORE3; j++) {
gpir_store_node *s = gpir_node_to_store(instr->slots[j]);
if (s && s->child == store->child)
goto out;
}
/* check if the child is alrady in this instr's alu slot,
* this may happen when store an scheduled alu node to reg
*/
for (int j = GPIR_INSTR_SLOT_ALU_BEGIN; j <= GPIR_INSTR_SLOT_ALU_END; j++) {
if (store->child == instr->slots[j])
goto out;
}
/* Check the invariants documented in gpir.h, similar to the ALU case.
* When the only thing that changes is alu_num_slot_needed_by_store, we
* can get away with just checking the first one.
*/
int slot_difference = instr->alu_num_slot_needed_by_store + 1
+ instr->alu_num_slot_needed_by_max +
MAX2(instr->alu_num_unscheduled_next_max - instr->alu_max_allowed_next_max, 0) -
instr->alu_num_slot_free;
if (slot_difference > 0) {
instr->slot_difference = slot_difference;
return false;
}
if (store->child->sched.next_max_node &&
!store->child->sched.complex_allowed) {
/* The child of the store is already partially ready, and has a use one
* cycle ago that disqualifies it (or a move replacing it) from being
* put in the complex slot. Therefore we have to check the non-complex
* invariant.
*/
int non_cplx_slot_difference =
instr->alu_num_slot_needed_by_max +
instr->alu_num_slot_needed_by_non_cplx_store + 1 -
instr->alu_non_cplx_slot_free;
if (non_cplx_slot_difference > 0) {
instr->non_cplx_slot_difference = non_cplx_slot_difference;
return false;
}
instr->alu_num_slot_needed_by_non_cplx_store++;
}
instr->alu_num_slot_needed_by_store++;
out:
if (instr->store_content[i] == GPIR_INSTR_STORE_NONE) {
if (node->op == gpir_op_store_varying)
instr->store_content[i] = GPIR_INSTR_STORE_VARYING;
else if (node->op == gpir_op_store_reg)
instr->store_content[i] = GPIR_INSTR_STORE_REG;
else
instr->store_content[i] = GPIR_INSTR_STORE_TEMP;
instr->store_index[i] = store->index;
}
return true;
}
static void gpir_instr_remove_store(gpir_instr *instr, gpir_node *node)
{
gpir_store_node *store = gpir_node_to_store(node);
int component = node->sched.pos - GPIR_INSTR_SLOT_STORE0;
int other_slot = GPIR_INSTR_SLOT_STORE0 + (component ^ 1);
for (int j = GPIR_INSTR_SLOT_STORE0; j <= GPIR_INSTR_SLOT_STORE3; j++) {
if (j == node->sched.pos)
continue;
gpir_store_node *s = gpir_node_to_store(instr->slots[j]);
if (s && s->child == store->child)
goto out;
}
for (int j = GPIR_INSTR_SLOT_ALU_BEGIN; j <= GPIR_INSTR_SLOT_ALU_END; j++) {
if (store->child == instr->slots[j])
goto out;
}
instr->alu_num_slot_needed_by_store--;
if (store->child->sched.next_max_node &&
!store->child->sched.complex_allowed) {
instr->alu_num_slot_needed_by_non_cplx_store--;
}
out:
if (!instr->slots[other_slot])
instr->store_content[component >> 1] = GPIR_INSTR_STORE_NONE;
}
static bool gpir_instr_spill_move(gpir_instr *instr, int slot, int spill_to_start)
{
gpir_node *node = instr->slots[slot];
if (!node)
return true;
if (node->op != gpir_op_mov)
return false;
for (int i = spill_to_start; i <= GPIR_INSTR_SLOT_DIST_TWO_END; i++) {
if (i != slot && !instr->slots[i] &&
gpir_instr_check_acc_same_op(instr, node, i)) {
instr->slots[i] = node;
instr->slots[slot] = NULL;
node->sched.pos = i;
gpir_debug("instr %d spill move %d from slot %d to %d\n",
instr->index, node->index, slot, i);
return true;
}
}
return false;
}
static bool gpir_instr_slot_free(gpir_instr *instr, gpir_node *node)
{
if (node->op == gpir_op_mov ||
node->sched.pos > GPIR_INSTR_SLOT_DIST_TWO_END) {
if (instr->slots[node->sched.pos])
return false;
}
else {
/* for node needs dist two slot, if the slot has a move, we can
* spill it to other dist two slot without any side effect */
int spill_to_start = GPIR_INSTR_SLOT_MUL0;
if (node->op == gpir_op_complex1 || node->op == gpir_op_select)
spill_to_start = GPIR_INSTR_SLOT_ADD0;
if (!gpir_instr_spill_move(instr, node->sched.pos, spill_to_start))
return false;
if (node->op == gpir_op_complex1 || node->op == gpir_op_select) {
if (!gpir_instr_spill_move(instr, GPIR_INSTR_SLOT_MUL1, spill_to_start))
return false;
}
}
return true;
}
bool gpir_instr_try_insert_node(gpir_instr *instr, gpir_node *node)
{
instr->slot_difference = 0;
instr->non_cplx_slot_difference = 0;
if (!gpir_instr_slot_free(instr, node))
return false;
if (node->sched.pos >= GPIR_INSTR_SLOT_ALU_BEGIN &&
node->sched.pos <= GPIR_INSTR_SLOT_ALU_END) {
if (!gpir_instr_insert_alu_check(instr, node))
return false;
}
else if (node->sched.pos >= GPIR_INSTR_SLOT_REG0_LOAD0 &&
node->sched.pos <= GPIR_INSTR_SLOT_REG0_LOAD3) {
if (!gpir_instr_insert_reg0_check(instr, node))
return false;
}
else if (node->sched.pos >= GPIR_INSTR_SLOT_REG1_LOAD0 &&
node->sched.pos <= GPIR_INSTR_SLOT_REG1_LOAD3) {
if (!gpir_instr_insert_reg1_check(instr, node))
return false;
}
else if (node->sched.pos >= GPIR_INSTR_SLOT_MEM_LOAD0 &&
node->sched.pos <= GPIR_INSTR_SLOT_MEM_LOAD3) {
if (!gpir_instr_insert_mem_check(instr, node))
return false;
}
else if (node->sched.pos >= GPIR_INSTR_SLOT_STORE0 &&
node->sched.pos <= GPIR_INSTR_SLOT_STORE3) {
if (!gpir_instr_insert_store_check(instr, node))
return false;
}
instr->slots[node->sched.pos] = node;
if (node->op == gpir_op_complex1 || node->op == gpir_op_select)
instr->slots[GPIR_INSTR_SLOT_MUL1] = node;
return true;
}
void gpir_instr_remove_node(gpir_instr *instr, gpir_node *node)
{
assert(node->sched.pos >= 0);
/* This can happen if we merge duplicate loads in the scheduler. */
if (instr->slots[node->sched.pos] != node) {
node->sched.pos = -1;
node->sched.instr = NULL;
return;
}
if (node->sched.pos >= GPIR_INSTR_SLOT_ALU_BEGIN &&
node->sched.pos <= GPIR_INSTR_SLOT_ALU_END)
gpir_instr_remove_alu(instr, node);
else if (node->sched.pos >= GPIR_INSTR_SLOT_REG0_LOAD0 &&
node->sched.pos <= GPIR_INSTR_SLOT_REG0_LOAD3)
gpir_instr_remove_reg0(instr, node);
else if (node->sched.pos >= GPIR_INSTR_SLOT_REG1_LOAD0 &&
node->sched.pos <= GPIR_INSTR_SLOT_REG1_LOAD3)
gpir_instr_remove_reg1(instr, node);
else if (node->sched.pos >= GPIR_INSTR_SLOT_MEM_LOAD0 &&
node->sched.pos <= GPIR_INSTR_SLOT_MEM_LOAD3)
gpir_instr_remove_mem(instr, node);
else if (node->sched.pos >= GPIR_INSTR_SLOT_STORE0 &&
node->sched.pos <= GPIR_INSTR_SLOT_STORE3)
gpir_instr_remove_store(instr, node);
instr->slots[node->sched.pos] = NULL;
if (node->op == gpir_op_complex1 || node->op == gpir_op_select)
instr->slots[GPIR_INSTR_SLOT_MUL1] = NULL;
node->sched.pos = -1;
node->sched.instr = NULL;
}
void gpir_instr_print_prog(gpir_compiler *comp)
{
struct {
int len;
char *name;
} fields[] = {
[GPIR_INSTR_SLOT_MUL0] = { 4, "mul0" },
[GPIR_INSTR_SLOT_MUL1] = { 4, "mul1" },
[GPIR_INSTR_SLOT_ADD0] = { 4, "add0" },
[GPIR_INSTR_SLOT_ADD1] = { 4, "add1" },
[GPIR_INSTR_SLOT_REG0_LOAD3] = { 15, "load0" },
[GPIR_INSTR_SLOT_REG1_LOAD3] = { 15, "load1" },
[GPIR_INSTR_SLOT_MEM_LOAD3] = { 15, "load2" },
[GPIR_INSTR_SLOT_BRANCH] = { 4, "bnch" },
[GPIR_INSTR_SLOT_STORE3] = { 15, "store" },
[GPIR_INSTR_SLOT_COMPLEX] = { 4, "cmpl" },
[GPIR_INSTR_SLOT_PASS] = { 4, "pass" },
};
printf("========prog instr========\n");
printf(" ");
for (int i = 0; i < GPIR_INSTR_SLOT_NUM; i++) {
if (fields[i].len)
printf("%-*s ", fields[i].len, fields[i].name);
}
printf("\n");
int index = 0;
list_for_each_entry(gpir_block, block, &comp->block_list, list) {
list_for_each_entry(gpir_instr, instr, &block->instr_list, list) {
printf("%03d: ", index++);
char buff[16] = "null";
int start = 0;
for (int j = 0; j < GPIR_INSTR_SLOT_NUM; j++) {
gpir_node *node = instr->slots[j];
if (fields[j].len) {
if (node)
snprintf(buff + start, sizeof(buff) - start, "%d", node->index);
printf("%-*s ", fields[j].len, buff);
strcpy(buff, "null");
start = 0;
}
else {
if (node)
start += snprintf(buff + start, sizeof(buff) - start, "%d", node->index);
start += snprintf(buff + start, sizeof(buff) - start, "|");
}
}
printf("\n");
}
printf("-----------------------\n");
}
printf("==========================\n");
}
|