Merge remote-tracking branch 'mesa-public/master' into vulkan
[mesa.git] / src / gallium / drivers / nouveau / codegen / nv50_ir.cpp
1 /*
2 * Copyright 2011 Christoph Bumiller
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 */
22
23 #include "codegen/nv50_ir.h"
24 #include "codegen/nv50_ir_target.h"
25 #include "codegen/nv50_ir_driver.h"
26
27 extern "C" {
28 #include "nouveau_debug.h"
29 #include "nv50/nv50_program.h"
30 }
31
32 namespace nv50_ir {
33
34 Modifier::Modifier(operation op)
35 {
36 switch (op) {
37 case OP_NEG: bits = NV50_IR_MOD_NEG; break;
38 case OP_ABS: bits = NV50_IR_MOD_ABS; break;
39 case OP_SAT: bits = NV50_IR_MOD_SAT; break;
40 case OP_NOT: bits = NV50_IR_MOD_NOT; break;
41 default:
42 bits = 0;
43 break;
44 }
45 }
46
47 Modifier Modifier::operator*(const Modifier m) const
48 {
49 unsigned int a, b, c;
50
51 b = m.bits;
52 if (this->bits & NV50_IR_MOD_ABS)
53 b &= ~NV50_IR_MOD_NEG;
54
55 a = (this->bits ^ b) & (NV50_IR_MOD_NOT | NV50_IR_MOD_NEG);
56 c = (this->bits | m.bits) & (NV50_IR_MOD_ABS | NV50_IR_MOD_SAT);
57
58 return Modifier(a | c);
59 }
60
61 ValueRef::ValueRef(Value *v) : value(NULL), insn(NULL)
62 {
63 indirect[0] = -1;
64 indirect[1] = -1;
65 usedAsPtr = false;
66 set(v);
67 }
68
69 ValueRef::ValueRef(const ValueRef& ref) : value(NULL), insn(ref.insn)
70 {
71 set(ref);
72 usedAsPtr = ref.usedAsPtr;
73 }
74
75 ValueRef::~ValueRef()
76 {
77 this->set(NULL);
78 }
79
80 bool ValueRef::getImmediate(ImmediateValue &imm) const
81 {
82 const ValueRef *src = this;
83 Modifier m;
84 DataType type = src->insn->sType;
85
86 while (src) {
87 if (src->mod) {
88 if (src->insn->sType != type)
89 break;
90 m *= src->mod;
91 }
92 if (src->getFile() == FILE_IMMEDIATE) {
93 imm = *(src->value->asImm());
94 // The immediate's type isn't required to match its use, it's
95 // more of a hint; applying a modifier makes use of that hint.
96 imm.reg.type = type;
97 m.applyTo(imm);
98 return true;
99 }
100
101 Instruction *insn = src->value->getUniqueInsn();
102
103 if (insn && insn->op == OP_MOV) {
104 src = &insn->src(0);
105 if (src->mod)
106 WARN("OP_MOV with modifier encountered !\n");
107 } else {
108 src = NULL;
109 }
110 }
111 return false;
112 }
113
114 ValueDef::ValueDef(Value *v) : value(NULL), insn(NULL)
115 {
116 set(v);
117 }
118
119 ValueDef::ValueDef(const ValueDef& def) : value(NULL), insn(NULL)
120 {
121 set(def.get());
122 }
123
124 ValueDef::~ValueDef()
125 {
126 this->set(NULL);
127 }
128
129 void
130 ValueRef::set(const ValueRef &ref)
131 {
132 this->set(ref.get());
133 mod = ref.mod;
134 indirect[0] = ref.indirect[0];
135 indirect[1] = ref.indirect[1];
136 }
137
138 void
139 ValueRef::set(Value *refVal)
140 {
141 if (value == refVal)
142 return;
143 if (value)
144 value->uses.erase(this);
145 if (refVal)
146 refVal->uses.insert(this);
147
148 value = refVal;
149 }
150
151 void
152 ValueDef::set(Value *defVal)
153 {
154 if (value == defVal)
155 return;
156 if (value)
157 value->defs.remove(this);
158 if (defVal)
159 defVal->defs.push_back(this);
160
161 value = defVal;
162 }
163
164 // Check if we can replace this definition's value by the value in @rep,
165 // including the source modifiers, i.e. make sure that all uses support
166 // @rep.mod.
167 bool
168 ValueDef::mayReplace(const ValueRef &rep)
169 {
170 if (!rep.mod)
171 return true;
172
173 if (!insn || !insn->bb) // Unbound instruction ?
174 return false;
175
176 const Target *target = insn->bb->getProgram()->getTarget();
177
178 for (Value::UseIterator it = value->uses.begin(); it != value->uses.end();
179 ++it) {
180 Instruction *insn = (*it)->getInsn();
181 int s = -1;
182
183 for (int i = 0; insn->srcExists(i); ++i) {
184 if (insn->src(i).get() == value) {
185 // If there are multiple references to us we'd have to check if the
186 // combination of mods is still supported, but just bail for now.
187 if (&insn->src(i) != (*it))
188 return false;
189 s = i;
190 }
191 }
192 assert(s >= 0); // integrity of uses list
193
194 if (!target->isModSupported(insn, s, rep.mod))
195 return false;
196 }
197 return true;
198 }
199
200 void
201 ValueDef::replace(const ValueRef &repVal, bool doSet)
202 {
203 assert(mayReplace(repVal));
204
205 if (value == repVal.get())
206 return;
207
208 while (!value->uses.empty()) {
209 ValueRef *ref = *value->uses.begin();
210 ref->set(repVal.get());
211 ref->mod *= repVal.mod;
212 }
213
214 if (doSet)
215 set(repVal.get());
216 }
217
218 Value::Value()
219 {
220 join = this;
221 memset(&reg, 0, sizeof(reg));
222 reg.size = 4;
223 }
224
225 LValue::LValue(Function *fn, DataFile file)
226 {
227 reg.file = file;
228 reg.size = (file != FILE_PREDICATE) ? 4 : 1;
229 reg.data.id = -1;
230
231 compMask = 0;
232 compound = 0;
233 ssa = 0;
234 fixedReg = 0;
235 noSpill = 0;
236
237 fn->add(this, this->id);
238 }
239
240 LValue::LValue(Function *fn, LValue *lval)
241 {
242 assert(lval);
243
244 reg.file = lval->reg.file;
245 reg.size = lval->reg.size;
246 reg.data.id = -1;
247
248 compMask = 0;
249 compound = 0;
250 ssa = 0;
251 fixedReg = 0;
252 noSpill = 0;
253
254 fn->add(this, this->id);
255 }
256
257 LValue *
258 LValue::clone(ClonePolicy<Function>& pol) const
259 {
260 LValue *that = new_LValue(pol.context(), reg.file);
261
262 pol.set<Value>(this, that);
263
264 that->reg.size = this->reg.size;
265 that->reg.type = this->reg.type;
266 that->reg.data = this->reg.data;
267
268 return that;
269 }
270
271 bool
272 LValue::isUniform() const
273 {
274 if (defs.size() > 1)
275 return false;
276 Instruction *insn = getInsn();
277 // let's not try too hard here for now ...
278 return !insn->srcExists(1) && insn->getSrc(0)->isUniform();
279 }
280
281 Symbol::Symbol(Program *prog, DataFile f, ubyte fidx)
282 {
283 baseSym = NULL;
284
285 reg.file = f;
286 reg.fileIndex = fidx;
287 reg.data.offset = 0;
288
289 prog->add(this, this->id);
290 }
291
292 Symbol *
293 Symbol::clone(ClonePolicy<Function>& pol) const
294 {
295 Program *prog = pol.context()->getProgram();
296
297 Symbol *that = new_Symbol(prog, reg.file, reg.fileIndex);
298
299 pol.set<Value>(this, that);
300
301 that->reg.size = this->reg.size;
302 that->reg.type = this->reg.type;
303 that->reg.data = this->reg.data;
304
305 that->baseSym = this->baseSym;
306
307 return that;
308 }
309
310 bool
311 Symbol::isUniform() const
312 {
313 return
314 reg.file != FILE_SYSTEM_VALUE &&
315 reg.file != FILE_MEMORY_LOCAL &&
316 reg.file != FILE_SHADER_INPUT;
317 }
318
319 ImmediateValue::ImmediateValue(Program *prog, uint32_t uval)
320 {
321 memset(&reg, 0, sizeof(reg));
322
323 reg.file = FILE_IMMEDIATE;
324 reg.size = 4;
325 reg.type = TYPE_U32;
326
327 reg.data.u32 = uval;
328
329 prog->add(this, this->id);
330 }
331
332 ImmediateValue::ImmediateValue(Program *prog, float fval)
333 {
334 memset(&reg, 0, sizeof(reg));
335
336 reg.file = FILE_IMMEDIATE;
337 reg.size = 4;
338 reg.type = TYPE_F32;
339
340 reg.data.f32 = fval;
341
342 prog->add(this, this->id);
343 }
344
345 ImmediateValue::ImmediateValue(Program *prog, double dval)
346 {
347 memset(&reg, 0, sizeof(reg));
348
349 reg.file = FILE_IMMEDIATE;
350 reg.size = 8;
351 reg.type = TYPE_F64;
352
353 reg.data.f64 = dval;
354
355 prog->add(this, this->id);
356 }
357
358 ImmediateValue::ImmediateValue(const ImmediateValue *proto, DataType ty)
359 {
360 reg = proto->reg;
361
362 reg.type = ty;
363 reg.size = typeSizeof(ty);
364 }
365
366 ImmediateValue *
367 ImmediateValue::clone(ClonePolicy<Function>& pol) const
368 {
369 Program *prog = pol.context()->getProgram();
370 ImmediateValue *that = new_ImmediateValue(prog, 0u);
371
372 pol.set<Value>(this, that);
373
374 that->reg.size = this->reg.size;
375 that->reg.type = this->reg.type;
376 that->reg.data = this->reg.data;
377
378 return that;
379 }
380
381 bool
382 ImmediateValue::isInteger(const int i) const
383 {
384 switch (reg.type) {
385 case TYPE_S8:
386 return reg.data.s8 == i;
387 case TYPE_U8:
388 return reg.data.u8 == i;
389 case TYPE_S16:
390 return reg.data.s16 == i;
391 case TYPE_U16:
392 return reg.data.u16 == i;
393 case TYPE_S32:
394 case TYPE_U32:
395 return reg.data.s32 == i; // as if ...
396 case TYPE_S64:
397 case TYPE_U64:
398 return reg.data.s64 == i; // as if ...
399 case TYPE_F32:
400 return reg.data.f32 == static_cast<float>(i);
401 case TYPE_F64:
402 return reg.data.f64 == static_cast<double>(i);
403 default:
404 return false;
405 }
406 }
407
408 bool
409 ImmediateValue::isNegative() const
410 {
411 switch (reg.type) {
412 case TYPE_S8: return reg.data.s8 < 0;
413 case TYPE_S16: return reg.data.s16 < 0;
414 case TYPE_S32:
415 case TYPE_U32: return reg.data.s32 < 0;
416 case TYPE_F32: return reg.data.u32 & (1 << 31);
417 case TYPE_F64: return reg.data.u64 & (1ULL << 63);
418 default:
419 return false;
420 }
421 }
422
423 bool
424 ImmediateValue::isPow2() const
425 {
426 switch (reg.type) {
427 case TYPE_U8:
428 case TYPE_U16:
429 case TYPE_U32: return util_is_power_of_two(reg.data.u32);
430 default:
431 return false;
432 }
433 }
434
435 void
436 ImmediateValue::applyLog2()
437 {
438 switch (reg.type) {
439 case TYPE_S8:
440 case TYPE_S16:
441 case TYPE_S32:
442 assert(!this->isNegative());
443 // fall through
444 case TYPE_U8:
445 case TYPE_U16:
446 case TYPE_U32:
447 reg.data.u32 = util_logbase2(reg.data.u32);
448 break;
449 case TYPE_F32:
450 reg.data.f32 = log2f(reg.data.f32);
451 break;
452 case TYPE_F64:
453 reg.data.f64 = log2(reg.data.f64);
454 break;
455 default:
456 assert(0);
457 break;
458 }
459 }
460
461 bool
462 ImmediateValue::compare(CondCode cc, float fval) const
463 {
464 if (reg.type != TYPE_F32)
465 ERROR("immediate value is not of type f32");
466
467 switch (static_cast<CondCode>(cc & 7)) {
468 case CC_TR: return true;
469 case CC_FL: return false;
470 case CC_LT: return reg.data.f32 < fval;
471 case CC_LE: return reg.data.f32 <= fval;
472 case CC_GT: return reg.data.f32 > fval;
473 case CC_GE: return reg.data.f32 >= fval;
474 case CC_EQ: return reg.data.f32 == fval;
475 case CC_NE: return reg.data.f32 != fval;
476 default:
477 assert(0);
478 return false;
479 }
480 }
481
482 ImmediateValue&
483 ImmediateValue::operator=(const ImmediateValue &that)
484 {
485 this->reg = that.reg;
486 return (*this);
487 }
488
489 bool
490 Value::interfers(const Value *that) const
491 {
492 uint32_t idA, idB;
493
494 if (that->reg.file != reg.file || that->reg.fileIndex != reg.fileIndex)
495 return false;
496 if (this->asImm())
497 return false;
498
499 if (this->asSym()) {
500 idA = this->join->reg.data.offset;
501 idB = that->join->reg.data.offset;
502 } else {
503 idA = this->join->reg.data.id * MIN2(this->reg.size, 4);
504 idB = that->join->reg.data.id * MIN2(that->reg.size, 4);
505 }
506
507 if (idA < idB)
508 return (idA + this->reg.size > idB);
509 else
510 if (idA > idB)
511 return (idB + that->reg.size > idA);
512 else
513 return (idA == idB);
514 }
515
516 bool
517 Value::equals(const Value *that, bool strict) const
518 {
519 if (strict)
520 return this == that;
521
522 if (that->reg.file != reg.file || that->reg.fileIndex != reg.fileIndex)
523 return false;
524 if (that->reg.size != this->reg.size)
525 return false;
526
527 if (that->reg.data.id != this->reg.data.id)
528 return false;
529
530 return true;
531 }
532
533 bool
534 ImmediateValue::equals(const Value *that, bool strict) const
535 {
536 const ImmediateValue *imm = that->asImm();
537 if (!imm)
538 return false;
539 return reg.data.u64 == imm->reg.data.u64;
540 }
541
542 bool
543 Symbol::equals(const Value *that, bool strict) const
544 {
545 if (reg.file != that->reg.file || reg.fileIndex != that->reg.fileIndex)
546 return false;
547 assert(that->asSym());
548
549 if (this->baseSym != that->asSym()->baseSym)
550 return false;
551
552 if (reg.file == FILE_SYSTEM_VALUE)
553 return (this->reg.data.sv.sv == that->reg.data.sv.sv &&
554 this->reg.data.sv.index == that->reg.data.sv.index);
555 return this->reg.data.offset == that->reg.data.offset;
556 }
557
558 void Instruction::init()
559 {
560 next = prev = 0;
561
562 cc = CC_ALWAYS;
563 rnd = ROUND_N;
564 cache = CACHE_CA;
565 subOp = 0;
566
567 saturate = 0;
568 join = 0;
569 exit = 0;
570 terminator = 0;
571 ftz = 0;
572 dnz = 0;
573 perPatch = 0;
574 fixed = 0;
575 encSize = 0;
576 ipa = 0;
577 mask = 0;
578
579 lanes = 0xf;
580
581 postFactor = 0;
582
583 predSrc = -1;
584 flagsDef = -1;
585 flagsSrc = -1;
586 }
587
588 Instruction::Instruction()
589 {
590 init();
591
592 op = OP_NOP;
593 dType = sType = TYPE_F32;
594
595 id = -1;
596 bb = 0;
597 }
598
599 Instruction::Instruction(Function *fn, operation opr, DataType ty)
600 {
601 init();
602
603 op = opr;
604 dType = sType = ty;
605
606 fn->add(this, id);
607 }
608
609 Instruction::~Instruction()
610 {
611 if (bb) {
612 Function *fn = bb->getFunction();
613 bb->remove(this);
614 fn->allInsns.remove(id);
615 }
616
617 for (int s = 0; srcExists(s); ++s)
618 setSrc(s, NULL);
619 // must unlink defs too since the list pointers will get deallocated
620 for (int d = 0; defExists(d); ++d)
621 setDef(d, NULL);
622 }
623
624 void
625 Instruction::setDef(int i, Value *val)
626 {
627 int size = defs.size();
628 if (i >= size) {
629 defs.resize(i + 1);
630 while (size <= i)
631 defs[size++].setInsn(this);
632 }
633 defs[i].set(val);
634 }
635
636 void
637 Instruction::setSrc(int s, Value *val)
638 {
639 int size = srcs.size();
640 if (s >= size) {
641 srcs.resize(s + 1);
642 while (size <= s)
643 srcs[size++].setInsn(this);
644 }
645 srcs[s].set(val);
646 }
647
648 void
649 Instruction::setSrc(int s, const ValueRef& ref)
650 {
651 setSrc(s, ref.get());
652 srcs[s].mod = ref.mod;
653 }
654
655 void
656 Instruction::swapSources(int a, int b)
657 {
658 Value *value = srcs[a].get();
659 Modifier m = srcs[a].mod;
660
661 setSrc(a, srcs[b]);
662
663 srcs[b].set(value);
664 srcs[b].mod = m;
665 }
666
667 static inline void moveSourcesAdjustIndex(int8_t &index, int s, int delta)
668 {
669 if (index >= s)
670 index += delta;
671 else
672 if ((delta < 0) && (index >= (s + delta)))
673 index = -1;
674 }
675
676 // Moves sources [@s,last_source] by @delta.
677 // If @delta < 0, sources [@s - abs(@delta), @s) are erased.
678 void
679 Instruction::moveSources(const int s, const int delta)
680 {
681 if (delta == 0)
682 return;
683 assert(s + delta >= 0);
684
685 int k;
686
687 for (k = 0; srcExists(k); ++k) {
688 for (int i = 0; i < 2; ++i)
689 moveSourcesAdjustIndex(src(k).indirect[i], s, delta);
690 }
691 moveSourcesAdjustIndex(predSrc, s, delta);
692 moveSourcesAdjustIndex(flagsSrc, s, delta);
693 if (asTex()) {
694 TexInstruction *tex = asTex();
695 moveSourcesAdjustIndex(tex->tex.rIndirectSrc, s, delta);
696 moveSourcesAdjustIndex(tex->tex.sIndirectSrc, s, delta);
697 }
698
699 if (delta > 0) {
700 --k;
701 for (int p = k + delta; k >= s; --k, --p)
702 setSrc(p, src(k));
703 } else {
704 int p;
705 for (p = s; p < k; ++p)
706 setSrc(p + delta, src(p));
707 for (; (p + delta) < k; ++p)
708 setSrc(p + delta, NULL);
709 }
710 }
711
712 void
713 Instruction::takeExtraSources(int s, Value *values[3])
714 {
715 values[0] = getIndirect(s, 0);
716 if (values[0])
717 setIndirect(s, 0, NULL);
718
719 values[1] = getIndirect(s, 1);
720 if (values[1])
721 setIndirect(s, 1, NULL);
722
723 values[2] = getPredicate();
724 if (values[2])
725 setPredicate(cc, NULL);
726 }
727
728 void
729 Instruction::putExtraSources(int s, Value *values[3])
730 {
731 if (values[0])
732 setIndirect(s, 0, values[0]);
733 if (values[1])
734 setIndirect(s, 1, values[1]);
735 if (values[2])
736 setPredicate(cc, values[2]);
737 }
738
739 Instruction *
740 Instruction::clone(ClonePolicy<Function>& pol, Instruction *i) const
741 {
742 if (!i)
743 i = new_Instruction(pol.context(), op, dType);
744 #ifndef NDEBUG // non-conformant assert, so this is required
745 assert(typeid(*i) == typeid(*this));
746 #endif
747
748 pol.set<Instruction>(this, i);
749
750 i->sType = sType;
751
752 i->rnd = rnd;
753 i->cache = cache;
754 i->subOp = subOp;
755
756 i->saturate = saturate;
757 i->join = join;
758 i->exit = exit;
759 i->mask = mask;
760 i->ftz = ftz;
761 i->dnz = dnz;
762 i->ipa = ipa;
763 i->lanes = lanes;
764 i->perPatch = perPatch;
765
766 i->postFactor = postFactor;
767
768 for (int d = 0; defExists(d); ++d)
769 i->setDef(d, pol.get(getDef(d)));
770
771 for (int s = 0; srcExists(s); ++s) {
772 i->setSrc(s, pol.get(getSrc(s)));
773 i->src(s).mod = src(s).mod;
774 }
775
776 i->cc = cc;
777 i->predSrc = predSrc;
778 i->flagsDef = flagsDef;
779 i->flagsSrc = flagsSrc;
780
781 return i;
782 }
783
784 unsigned int
785 Instruction::defCount(unsigned int mask, bool singleFile) const
786 {
787 unsigned int i, n;
788
789 if (singleFile) {
790 unsigned int d = ffs(mask);
791 if (!d)
792 return 0;
793 for (i = d--; defExists(i); ++i)
794 if (getDef(i)->reg.file != getDef(d)->reg.file)
795 mask &= ~(1 << i);
796 }
797
798 for (n = 0, i = 0; this->defExists(i); ++i, mask >>= 1)
799 n += mask & 1;
800 return n;
801 }
802
803 unsigned int
804 Instruction::srcCount(unsigned int mask, bool singleFile) const
805 {
806 unsigned int i, n;
807
808 if (singleFile) {
809 unsigned int s = ffs(mask);
810 if (!s)
811 return 0;
812 for (i = s--; srcExists(i); ++i)
813 if (getSrc(i)->reg.file != getSrc(s)->reg.file)
814 mask &= ~(1 << i);
815 }
816
817 for (n = 0, i = 0; this->srcExists(i); ++i, mask >>= 1)
818 n += mask & 1;
819 return n;
820 }
821
822 bool
823 Instruction::setIndirect(int s, int dim, Value *value)
824 {
825 assert(this->srcExists(s));
826
827 int p = srcs[s].indirect[dim];
828 if (p < 0) {
829 if (!value)
830 return true;
831 p = srcs.size();
832 while (p > 0 && !srcExists(p - 1))
833 --p;
834 }
835 setSrc(p, value);
836 srcs[p].usedAsPtr = (value != 0);
837 srcs[s].indirect[dim] = value ? p : -1;
838 return true;
839 }
840
841 bool
842 Instruction::setPredicate(CondCode ccode, Value *value)
843 {
844 cc = ccode;
845
846 if (!value) {
847 if (predSrc >= 0) {
848 srcs[predSrc].set(NULL);
849 predSrc = -1;
850 }
851 return true;
852 }
853
854 if (predSrc < 0) {
855 predSrc = srcs.size();
856 while (predSrc > 0 && !srcExists(predSrc - 1))
857 --predSrc;
858 }
859
860 setSrc(predSrc, value);
861 return true;
862 }
863
864 bool
865 Instruction::writesPredicate() const
866 {
867 for (int d = 0; defExists(d); ++d)
868 if (getDef(d)->inFile(FILE_PREDICATE) || getDef(d)->inFile(FILE_FLAGS))
869 return true;
870 return false;
871 }
872
873 static bool
874 insnCheckCommutationDefSrc(const Instruction *a, const Instruction *b)
875 {
876 for (int d = 0; a->defExists(d); ++d)
877 for (int s = 0; b->srcExists(s); ++s)
878 if (a->getDef(d)->interfers(b->getSrc(s)))
879 return false;
880 return true;
881 }
882
883 static bool
884 insnCheckCommutationDefDef(const Instruction *a, const Instruction *b)
885 {
886 for (int d = 0; a->defExists(d); ++d)
887 for (int c = 0; b->defExists(c); ++c)
888 if (a->getDef(d)->interfers(b->getDef(c)))
889 return false;
890 return true;
891 }
892
893 bool
894 Instruction::isCommutationLegal(const Instruction *i) const
895 {
896 bool ret = insnCheckCommutationDefDef(this, i);
897 ret = ret && insnCheckCommutationDefSrc(this, i);
898 ret = ret && insnCheckCommutationDefSrc(i, this);
899 return ret;
900 }
901
902 TexInstruction::TexInstruction(Function *fn, operation op)
903 : Instruction(fn, op, TYPE_F32)
904 {
905 memset(&tex, 0, sizeof(tex));
906
907 tex.rIndirectSrc = -1;
908 tex.sIndirectSrc = -1;
909 }
910
911 TexInstruction::~TexInstruction()
912 {
913 for (int c = 0; c < 3; ++c) {
914 dPdx[c].set(NULL);
915 dPdy[c].set(NULL);
916 }
917 for (int n = 0; n < 4; ++n)
918 for (int c = 0; c < 3; ++c)
919 offset[n][c].set(NULL);
920 }
921
922 TexInstruction *
923 TexInstruction::clone(ClonePolicy<Function>& pol, Instruction *i) const
924 {
925 TexInstruction *tex = (i ? static_cast<TexInstruction *>(i) :
926 new_TexInstruction(pol.context(), op));
927
928 Instruction::clone(pol, tex);
929
930 tex->tex = this->tex;
931
932 if (op == OP_TXD) {
933 for (unsigned int c = 0; c < tex->tex.target.getDim(); ++c) {
934 tex->dPdx[c].set(dPdx[c]);
935 tex->dPdy[c].set(dPdy[c]);
936 }
937 }
938
939 for (int n = 0; n < tex->tex.useOffsets; ++n)
940 for (int c = 0; c < 3; ++c)
941 tex->offset[n][c].set(offset[n][c]);
942
943 return tex;
944 }
945
946 const struct TexInstruction::Target::Desc TexInstruction::Target::descTable[] =
947 {
948 { "1D", 1, 1, false, false, false },
949 { "2D", 2, 2, false, false, false },
950 { "2D_MS", 2, 3, false, false, false },
951 { "3D", 3, 3, false, false, false },
952 { "CUBE", 2, 3, false, true, false },
953 { "1D_SHADOW", 1, 1, false, false, true },
954 { "2D_SHADOW", 2, 2, false, false, true },
955 { "CUBE_SHADOW", 2, 3, false, true, true },
956 { "1D_ARRAY", 1, 2, true, false, false },
957 { "2D_ARRAY", 2, 3, true, false, false },
958 { "2D_MS_ARRAY", 2, 4, true, false, false },
959 { "CUBE_ARRAY", 2, 4, true, true, false },
960 { "1D_ARRAY_SHADOW", 1, 2, true, false, true },
961 { "2D_ARRAY_SHADOW", 2, 3, true, false, true },
962 { "RECT", 2, 2, false, false, false },
963 { "RECT_SHADOW", 2, 2, false, false, true },
964 { "CUBE_ARRAY_SHADOW", 2, 4, true, true, true },
965 { "BUFFER", 1, 1, false, false, false },
966 };
967
968 void
969 TexInstruction::setIndirectR(Value *v)
970 {
971 int p = ((tex.rIndirectSrc < 0) && v) ? srcs.size() : tex.rIndirectSrc;
972 if (p >= 0) {
973 tex.rIndirectSrc = p;
974 setSrc(p, v);
975 srcs[p].usedAsPtr = !!v;
976 }
977 }
978
979 void
980 TexInstruction::setIndirectS(Value *v)
981 {
982 int p = ((tex.sIndirectSrc < 0) && v) ? srcs.size() : tex.sIndirectSrc;
983 if (p >= 0) {
984 tex.sIndirectSrc = p;
985 setSrc(p, v);
986 srcs[p].usedAsPtr = !!v;
987 }
988 }
989
990 CmpInstruction::CmpInstruction(Function *fn, operation op)
991 : Instruction(fn, op, TYPE_F32)
992 {
993 setCond = CC_ALWAYS;
994 }
995
996 CmpInstruction *
997 CmpInstruction::clone(ClonePolicy<Function>& pol, Instruction *i) const
998 {
999 CmpInstruction *cmp = (i ? static_cast<CmpInstruction *>(i) :
1000 new_CmpInstruction(pol.context(), op));
1001 cmp->dType = dType;
1002 Instruction::clone(pol, cmp);
1003 cmp->setCond = setCond;
1004 return cmp;
1005 }
1006
1007 FlowInstruction::FlowInstruction(Function *fn, operation op, void *targ)
1008 : Instruction(fn, op, TYPE_NONE)
1009 {
1010 if (op == OP_CALL)
1011 target.fn = reinterpret_cast<Function *>(targ);
1012 else
1013 target.bb = reinterpret_cast<BasicBlock *>(targ);
1014
1015 if (op == OP_BRA ||
1016 op == OP_CONT || op == OP_BREAK ||
1017 op == OP_RET || op == OP_EXIT)
1018 terminator = 1;
1019 else
1020 if (op == OP_JOIN)
1021 terminator = targ ? 1 : 0;
1022
1023 allWarp = absolute = limit = builtin = indirect = 0;
1024 }
1025
1026 FlowInstruction *
1027 FlowInstruction::clone(ClonePolicy<Function>& pol, Instruction *i) const
1028 {
1029 FlowInstruction *flow = (i ? static_cast<FlowInstruction *>(i) :
1030 new_FlowInstruction(pol.context(), op, NULL));
1031
1032 Instruction::clone(pol, flow);
1033 flow->allWarp = allWarp;
1034 flow->absolute = absolute;
1035 flow->limit = limit;
1036 flow->builtin = builtin;
1037
1038 if (builtin)
1039 flow->target.builtin = target.builtin;
1040 else
1041 if (op == OP_CALL)
1042 flow->target.fn = target.fn;
1043 else
1044 if (target.bb)
1045 flow->target.bb = pol.get<BasicBlock>(target.bb);
1046
1047 return flow;
1048 }
1049
1050 Program::Program(Type type, Target *arch)
1051 : progType(type),
1052 target(arch),
1053 mem_Instruction(sizeof(Instruction), 6),
1054 mem_CmpInstruction(sizeof(CmpInstruction), 4),
1055 mem_TexInstruction(sizeof(TexInstruction), 4),
1056 mem_FlowInstruction(sizeof(FlowInstruction), 4),
1057 mem_LValue(sizeof(LValue), 8),
1058 mem_Symbol(sizeof(Symbol), 7),
1059 mem_ImmediateValue(sizeof(ImmediateValue), 7)
1060 {
1061 code = NULL;
1062 binSize = 0;
1063
1064 maxGPR = -1;
1065
1066 main = new Function(this, "MAIN", ~0);
1067 calls.insert(&main->call);
1068
1069 dbgFlags = 0;
1070 optLevel = 0;
1071
1072 targetPriv = NULL;
1073 }
1074
1075 Program::~Program()
1076 {
1077 for (ArrayList::Iterator it = allFuncs.iterator(); !it.end(); it.next())
1078 delete reinterpret_cast<Function *>(it.get());
1079
1080 for (ArrayList::Iterator it = allRValues.iterator(); !it.end(); it.next())
1081 releaseValue(reinterpret_cast<Value *>(it.get()));
1082 }
1083
1084 void Program::releaseInstruction(Instruction *insn)
1085 {
1086 // TODO: make this not suck so much
1087
1088 insn->~Instruction();
1089
1090 if (insn->asCmp())
1091 mem_CmpInstruction.release(insn);
1092 else
1093 if (insn->asTex())
1094 mem_TexInstruction.release(insn);
1095 else
1096 if (insn->asFlow())
1097 mem_FlowInstruction.release(insn);
1098 else
1099 mem_Instruction.release(insn);
1100 }
1101
1102 void Program::releaseValue(Value *value)
1103 {
1104 value->~Value();
1105
1106 if (value->asLValue())
1107 mem_LValue.release(value);
1108 else
1109 if (value->asImm())
1110 mem_ImmediateValue.release(value);
1111 else
1112 if (value->asSym())
1113 mem_Symbol.release(value);
1114 }
1115
1116
1117 } // namespace nv50_ir
1118
1119 extern "C" {
1120
1121 static void
1122 nv50_ir_init_prog_info(struct nv50_ir_prog_info *info)
1123 {
1124 #if defined(PIPE_SHADER_HULL) && defined(PIPE_SHADER_DOMAIN)
1125 if (info->type == PIPE_SHADER_HULL || info->type == PIPE_SHADER_DOMAIN) {
1126 info->prop.tp.domain = PIPE_PRIM_MAX;
1127 info->prop.tp.outputPrim = PIPE_PRIM_MAX;
1128 }
1129 #endif
1130 if (info->type == PIPE_SHADER_GEOMETRY) {
1131 info->prop.gp.instanceCount = 1;
1132 info->prop.gp.maxVertices = 1;
1133 }
1134 info->io.pointSize = 0xff;
1135 info->io.instanceId = 0xff;
1136 info->io.vertexId = 0xff;
1137 info->io.edgeFlagIn = 0xff;
1138 info->io.edgeFlagOut = 0xff;
1139 info->io.fragDepth = 0xff;
1140 info->io.sampleMask = 0xff;
1141 info->io.backFaceColor[0] = info->io.backFaceColor[1] = 0xff;
1142 }
1143
1144 int
1145 nv50_ir_generate_code(struct nv50_ir_prog_info *info)
1146 {
1147 int ret = 0;
1148
1149 nv50_ir::Program::Type type;
1150
1151 nv50_ir_init_prog_info(info);
1152
1153 #define PROG_TYPE_CASE(a, b) \
1154 case PIPE_SHADER_##a: type = nv50_ir::Program::TYPE_##b; break
1155
1156 switch (info->type) {
1157 PROG_TYPE_CASE(VERTEX, VERTEX);
1158 PROG_TYPE_CASE(TESS_CTRL, TESSELLATION_CONTROL);
1159 PROG_TYPE_CASE(TESS_EVAL, TESSELLATION_EVAL);
1160 PROG_TYPE_CASE(GEOMETRY, GEOMETRY);
1161 PROG_TYPE_CASE(FRAGMENT, FRAGMENT);
1162 PROG_TYPE_CASE(COMPUTE, COMPUTE);
1163 default:
1164 type = nv50_ir::Program::TYPE_COMPUTE;
1165 break;
1166 }
1167 INFO_DBG(info->dbgFlags, VERBOSE, "translating program of type %u\n", type);
1168
1169 nv50_ir::Target *targ = nv50_ir::Target::create(info->target);
1170 if (!targ)
1171 return -1;
1172
1173 nv50_ir::Program *prog = new nv50_ir::Program(type, targ);
1174 if (!prog)
1175 return -1;
1176 prog->driver = info;
1177 prog->dbgFlags = info->dbgFlags;
1178 prog->optLevel = info->optLevel;
1179
1180 switch (info->bin.sourceRep) {
1181 #if 0
1182 case PIPE_IR_LLVM:
1183 case PIPE_IR_GLSL:
1184 return -1;
1185 case PIPE_IR_SM4:
1186 ret = prog->makeFromSM4(info) ? 0 : -2;
1187 break;
1188 case PIPE_IR_TGSI:
1189 #endif
1190 default:
1191 ret = prog->makeFromTGSI(info) ? 0 : -2;
1192 break;
1193 }
1194 if (ret < 0)
1195 goto out;
1196 if (prog->dbgFlags & NV50_IR_DEBUG_VERBOSE)
1197 prog->print();
1198
1199 targ->parseDriverInfo(info);
1200 prog->getTarget()->runLegalizePass(prog, nv50_ir::CG_STAGE_PRE_SSA);
1201
1202 prog->convertToSSA();
1203
1204 if (prog->dbgFlags & NV50_IR_DEBUG_VERBOSE)
1205 prog->print();
1206
1207 prog->optimizeSSA(info->optLevel);
1208 prog->getTarget()->runLegalizePass(prog, nv50_ir::CG_STAGE_SSA);
1209
1210 if (prog->dbgFlags & NV50_IR_DEBUG_BASIC)
1211 prog->print();
1212
1213 if (!prog->registerAllocation()) {
1214 ret = -4;
1215 goto out;
1216 }
1217 prog->getTarget()->runLegalizePass(prog, nv50_ir::CG_STAGE_POST_RA);
1218
1219 prog->optimizePostRA(info->optLevel);
1220
1221 if (!prog->emitBinary(info)) {
1222 ret = -5;
1223 goto out;
1224 }
1225
1226 out:
1227 INFO_DBG(prog->dbgFlags, VERBOSE, "nv50_ir_generate_code: ret = %i\n", ret);
1228
1229 info->bin.maxGPR = prog->maxGPR;
1230 info->bin.code = prog->code;
1231 info->bin.codeSize = prog->binSize;
1232 info->bin.tlsSpace = prog->tlsSize;
1233
1234 delete prog;
1235 nv50_ir::Target::destroy(targ);
1236
1237 return ret;
1238 }
1239
1240 } // extern "C"