nvc0: replace immd 0 with $rLASTGPR for emit/restart opcodes
[mesa.git] / src / gallium / drivers / nouveau / codegen / nv50_ir_lowering_nvc0.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_build_util.h"
25
26 #include "codegen/nv50_ir_target_nvc0.h"
27 #include "codegen/nv50_ir_lowering_nvc0.h"
28
29 #include <limits>
30
31 namespace nv50_ir {
32
33 #define QOP_ADD 0
34 #define QOP_SUBR 1
35 #define QOP_SUB 2
36 #define QOP_MOV2 3
37
38 // UL UR LL LR
39 #define QUADOP(q, r, s, t) \
40 ((QOP_##q << 6) | (QOP_##r << 4) | \
41 (QOP_##s << 2) | (QOP_##t << 0))
42
43 void
44 NVC0LegalizeSSA::handleDIV(Instruction *i)
45 {
46 FlowInstruction *call;
47 int builtin;
48 Value *def[2];
49
50 bld.setPosition(i, false);
51 def[0] = bld.mkMovToReg(0, i->getSrc(0))->getDef(0);
52 def[1] = bld.mkMovToReg(1, i->getSrc(1))->getDef(0);
53 switch (i->dType) {
54 case TYPE_U32: builtin = NVC0_BUILTIN_DIV_U32; break;
55 case TYPE_S32: builtin = NVC0_BUILTIN_DIV_S32; break;
56 default:
57 return;
58 }
59 call = bld.mkFlow(OP_CALL, NULL, CC_ALWAYS, NULL);
60 bld.mkMov(i->getDef(0), def[(i->op == OP_DIV) ? 0 : 1]);
61 bld.mkClobber(FILE_GPR, (i->op == OP_DIV) ? 0xe : 0xd, 2);
62 bld.mkClobber(FILE_PREDICATE, (i->dType == TYPE_S32) ? 0xf : 0x3, 0);
63
64 call->fixed = 1;
65 call->absolute = call->builtin = 1;
66 call->target.builtin = builtin;
67 delete_Instruction(prog, i);
68 }
69
70 void
71 NVC0LegalizeSSA::handleRCPRSQ(Instruction *i)
72 {
73 // TODO
74 }
75
76 bool
77 NVC0LegalizeSSA::visit(Function *fn)
78 {
79 bld.setProgram(fn->getProgram());
80 return true;
81 }
82
83 bool
84 NVC0LegalizeSSA::visit(BasicBlock *bb)
85 {
86 Instruction *next;
87 for (Instruction *i = bb->getEntry(); i; i = next) {
88 next = i->next;
89 if (i->dType == TYPE_F32)
90 continue;
91 switch (i->op) {
92 case OP_DIV:
93 case OP_MOD:
94 handleDIV(i);
95 break;
96 case OP_RCP:
97 case OP_RSQ:
98 if (i->dType == TYPE_F64)
99 handleRCPRSQ(i);
100 break;
101 default:
102 break;
103 }
104 }
105 return true;
106 }
107
108 NVC0LegalizePostRA::NVC0LegalizePostRA(const Program *prog)
109 : rZero(NULL),
110 carry(NULL),
111 needTexBar(prog->getTarget()->getChipset() >= 0xe0)
112 {
113 }
114
115 bool
116 NVC0LegalizePostRA::insnDominatedBy(const Instruction *later,
117 const Instruction *early) const
118 {
119 if (early->bb == later->bb)
120 return early->serial < later->serial;
121 return later->bb->dominatedBy(early->bb);
122 }
123
124 void
125 NVC0LegalizePostRA::addTexUse(std::list<TexUse> &uses,
126 Instruction *usei, const Instruction *insn)
127 {
128 bool add = true;
129 for (std::list<TexUse>::iterator it = uses.begin();
130 it != uses.end();) {
131 if (insnDominatedBy(usei, it->insn)) {
132 add = false;
133 break;
134 }
135 if (insnDominatedBy(it->insn, usei))
136 it = uses.erase(it);
137 else
138 ++it;
139 }
140 if (add)
141 uses.push_back(TexUse(usei, insn));
142 }
143
144 void
145 NVC0LegalizePostRA::findOverwritingDefs(const Instruction *texi,
146 Instruction *insn,
147 const BasicBlock *term,
148 std::list<TexUse> &uses)
149 {
150 while (insn->op == OP_MOV && insn->getDef(0)->equals(insn->getSrc(0)))
151 insn = insn->getSrc(0)->getUniqueInsn();
152
153 if (!insn || !insn->bb->reachableBy(texi->bb, term))
154 return;
155
156 switch (insn->op) {
157 /* Values not connected to the tex's definition through any of these should
158 * not be conflicting.
159 */
160 case OP_SPLIT:
161 case OP_MERGE:
162 case OP_PHI:
163 case OP_UNION:
164 /* recurse again */
165 for (int s = 0; insn->srcExists(s); ++s)
166 findOverwritingDefs(texi, insn->getSrc(s)->getUniqueInsn(), term,
167 uses);
168 break;
169 default:
170 // if (!isTextureOp(insn->op)) // TODO: are TEXes always ordered ?
171 addTexUse(uses, insn, texi);
172 break;
173 }
174 }
175
176 void
177 NVC0LegalizePostRA::findFirstUses(const Instruction *texi,
178 const Instruction *insn,
179 std::list<TexUse> &uses)
180 {
181 for (int d = 0; insn->defExists(d); ++d) {
182 Value *v = insn->getDef(d);
183 for (Value::UseIterator u = v->uses.begin(); u != v->uses.end(); ++u) {
184 Instruction *usei = (*u)->getInsn();
185
186 if (usei->op == OP_PHI || usei->op == OP_UNION) {
187 // need a barrier before WAW cases
188 for (int s = 0; usei->srcExists(s); ++s) {
189 Instruction *defi = usei->getSrc(s)->getUniqueInsn();
190 if (defi && &usei->src(s) != *u)
191 findOverwritingDefs(texi, defi, usei->bb, uses);
192 }
193 }
194
195 if (usei->op == OP_SPLIT ||
196 usei->op == OP_MERGE ||
197 usei->op == OP_PHI ||
198 usei->op == OP_UNION) {
199 // these uses don't manifest in the machine code
200 findFirstUses(texi, usei, uses);
201 } else
202 if (usei->op == OP_MOV && usei->getDef(0)->equals(usei->getSrc(0)) &&
203 usei->subOp != NV50_IR_SUBOP_MOV_FINAL) {
204 findFirstUses(texi, usei, uses);
205 } else {
206 addTexUse(uses, usei, insn);
207 }
208 }
209 }
210 }
211
212 // Texture barriers:
213 // This pass is a bit long and ugly and can probably be optimized.
214 //
215 // 1. obtain a list of TEXes and their outputs' first use(s)
216 // 2. calculate the barrier level of each first use (minimal number of TEXes,
217 // over all paths, between the TEX and the use in question)
218 // 3. for each barrier, if all paths from the source TEX to that barrier
219 // contain a barrier of lesser level, it can be culled
220 bool
221 NVC0LegalizePostRA::insertTextureBarriers(Function *fn)
222 {
223 std::list<TexUse> *uses;
224 std::vector<Instruction *> texes;
225 std::vector<int> bbFirstTex;
226 std::vector<int> bbFirstUse;
227 std::vector<int> texCounts;
228 std::vector<TexUse> useVec;
229 ArrayList insns;
230
231 fn->orderInstructions(insns);
232
233 texCounts.resize(fn->allBBlocks.getSize(), 0);
234 bbFirstTex.resize(fn->allBBlocks.getSize(), insns.getSize());
235 bbFirstUse.resize(fn->allBBlocks.getSize(), insns.getSize());
236
237 // tag BB CFG nodes by their id for later
238 for (ArrayList::Iterator i = fn->allBBlocks.iterator(); !i.end(); i.next()) {
239 BasicBlock *bb = reinterpret_cast<BasicBlock *>(i.get());
240 if (bb)
241 bb->cfg.tag = bb->getId();
242 }
243
244 // gather the first uses for each TEX
245 for (int i = 0; i < insns.getSize(); ++i) {
246 Instruction *tex = reinterpret_cast<Instruction *>(insns.get(i));
247 if (isTextureOp(tex->op)) {
248 texes.push_back(tex);
249 if (!texCounts.at(tex->bb->getId()))
250 bbFirstTex[tex->bb->getId()] = texes.size() - 1;
251 texCounts[tex->bb->getId()]++;
252 }
253 }
254 insns.clear();
255 if (texes.empty())
256 return false;
257 uses = new std::list<TexUse>[texes.size()];
258 if (!uses)
259 return false;
260 for (size_t i = 0; i < texes.size(); ++i)
261 findFirstUses(texes[i], texes[i], uses[i]);
262
263 // determine the barrier level at each use
264 for (size_t i = 0; i < texes.size(); ++i) {
265 for (std::list<TexUse>::iterator u = uses[i].begin(); u != uses[i].end();
266 ++u) {
267 BasicBlock *tb = texes[i]->bb;
268 BasicBlock *ub = u->insn->bb;
269 if (tb == ub) {
270 u->level = 0;
271 for (size_t j = i + 1; j < texes.size() &&
272 texes[j]->bb == tb && texes[j]->serial < u->insn->serial;
273 ++j)
274 u->level++;
275 } else {
276 u->level = fn->cfg.findLightestPathWeight(&tb->cfg,
277 &ub->cfg, texCounts);
278 if (u->level < 0) {
279 WARN("Failed to find path TEX -> TEXBAR\n");
280 u->level = 0;
281 continue;
282 }
283 // this counted all TEXes in the origin block, correct that
284 u->level -= i - bbFirstTex.at(tb->getId()) + 1 /* this TEX */;
285 // and did not count the TEXes in the destination block, add those
286 for (size_t j = bbFirstTex.at(ub->getId()); j < texes.size() &&
287 texes[j]->bb == ub && texes[j]->serial < u->insn->serial;
288 ++j)
289 u->level++;
290 }
291 assert(u->level >= 0);
292 useVec.push_back(*u);
293 }
294 }
295 delete[] uses;
296 uses = NULL;
297
298 // insert the barriers
299 for (size_t i = 0; i < useVec.size(); ++i) {
300 Instruction *prev = useVec[i].insn->prev;
301 if (useVec[i].level < 0)
302 continue;
303 if (prev && prev->op == OP_TEXBAR) {
304 if (prev->subOp > useVec[i].level)
305 prev->subOp = useVec[i].level;
306 prev->setSrc(prev->srcCount(), useVec[i].tex->getDef(0));
307 } else {
308 Instruction *bar = new_Instruction(func, OP_TEXBAR, TYPE_NONE);
309 bar->fixed = 1;
310 bar->subOp = useVec[i].level;
311 // make use explicit to ease latency calculation
312 bar->setSrc(bar->srcCount(), useVec[i].tex->getDef(0));
313 useVec[i].insn->bb->insertBefore(useVec[i].insn, bar);
314 }
315 }
316
317 if (fn->getProgram()->optLevel < 3) {
318 if (uses)
319 delete[] uses;
320 return true;
321 }
322
323 std::vector<Limits> limitT, limitB, limitS; // entry, exit, single
324
325 limitT.resize(fn->allBBlocks.getSize(), Limits(0, 0));
326 limitB.resize(fn->allBBlocks.getSize(), Limits(0, 0));
327 limitS.resize(fn->allBBlocks.getSize());
328
329 // cull unneeded barriers (should do that earlier, but for simplicity)
330 IteratorRef bi = fn->cfg.iteratorCFG();
331 // first calculate min/max outstanding TEXes for each BB
332 for (bi->reset(); !bi->end(); bi->next()) {
333 Graph::Node *n = reinterpret_cast<Graph::Node *>(bi->get());
334 BasicBlock *bb = BasicBlock::get(n);
335 int min = 0;
336 int max = std::numeric_limits<int>::max();
337 for (Instruction *i = bb->getFirst(); i; i = i->next) {
338 if (isTextureOp(i->op)) {
339 min++;
340 if (max < std::numeric_limits<int>::max())
341 max++;
342 } else
343 if (i->op == OP_TEXBAR) {
344 min = MIN2(min, i->subOp);
345 max = MIN2(max, i->subOp);
346 }
347 }
348 // limits when looking at an isolated block
349 limitS[bb->getId()].min = min;
350 limitS[bb->getId()].max = max;
351 }
352 // propagate the min/max values
353 for (unsigned int l = 0; l <= fn->loopNestingBound; ++l) {
354 for (bi->reset(); !bi->end(); bi->next()) {
355 Graph::Node *n = reinterpret_cast<Graph::Node *>(bi->get());
356 BasicBlock *bb = BasicBlock::get(n);
357 const int bbId = bb->getId();
358 for (Graph::EdgeIterator ei = n->incident(); !ei.end(); ei.next()) {
359 BasicBlock *in = BasicBlock::get(ei.getNode());
360 const int inId = in->getId();
361 limitT[bbId].min = MAX2(limitT[bbId].min, limitB[inId].min);
362 limitT[bbId].max = MAX2(limitT[bbId].max, limitB[inId].max);
363 }
364 // I just hope this is correct ...
365 if (limitS[bbId].max == std::numeric_limits<int>::max()) {
366 // no barrier
367 limitB[bbId].min = limitT[bbId].min + limitS[bbId].min;
368 limitB[bbId].max = limitT[bbId].max + limitS[bbId].min;
369 } else {
370 // block contained a barrier
371 limitB[bbId].min = MIN2(limitS[bbId].max,
372 limitT[bbId].min + limitS[bbId].min);
373 limitB[bbId].max = MIN2(limitS[bbId].max,
374 limitT[bbId].max + limitS[bbId].min);
375 }
376 }
377 }
378 // finally delete unnecessary barriers
379 for (bi->reset(); !bi->end(); bi->next()) {
380 Graph::Node *n = reinterpret_cast<Graph::Node *>(bi->get());
381 BasicBlock *bb = BasicBlock::get(n);
382 Instruction *prev = NULL;
383 Instruction *next;
384 int max = limitT[bb->getId()].max;
385 for (Instruction *i = bb->getFirst(); i; i = next) {
386 next = i->next;
387 if (i->op == OP_TEXBAR) {
388 if (i->subOp >= max) {
389 delete_Instruction(prog, i);
390 i = NULL;
391 } else {
392 max = i->subOp;
393 if (prev && prev->op == OP_TEXBAR && prev->subOp >= max) {
394 delete_Instruction(prog, prev);
395 prev = NULL;
396 }
397 }
398 } else
399 if (isTextureOp(i->op)) {
400 max++;
401 }
402 if (i && !i->isNop())
403 prev = i;
404 }
405 }
406 if (uses)
407 delete[] uses;
408 return true;
409 }
410
411 bool
412 NVC0LegalizePostRA::visit(Function *fn)
413 {
414 if (needTexBar)
415 insertTextureBarriers(fn);
416
417 rZero = new_LValue(fn, FILE_GPR);
418 carry = new_LValue(fn, FILE_FLAGS);
419
420 rZero->reg.data.id = prog->getTarget()->getFileSize(FILE_GPR);
421 carry->reg.data.id = 0;
422
423 return true;
424 }
425
426 void
427 NVC0LegalizePostRA::replaceZero(Instruction *i)
428 {
429 for (int s = 0; i->srcExists(s); ++s) {
430 if (s == 2 && i->op == OP_SUCLAMP)
431 continue;
432 ImmediateValue *imm = i->getSrc(s)->asImm();
433 if (imm && imm->reg.data.u64 == 0)
434 i->setSrc(s, rZero);
435 }
436 }
437
438 // replace CONT with BRA for single unconditional continue
439 bool
440 NVC0LegalizePostRA::tryReplaceContWithBra(BasicBlock *bb)
441 {
442 if (bb->cfg.incidentCount() != 2 || bb->getEntry()->op != OP_PRECONT)
443 return false;
444 Graph::EdgeIterator ei = bb->cfg.incident();
445 if (ei.getType() != Graph::Edge::BACK)
446 ei.next();
447 if (ei.getType() != Graph::Edge::BACK)
448 return false;
449 BasicBlock *contBB = BasicBlock::get(ei.getNode());
450
451 if (!contBB->getExit() || contBB->getExit()->op != OP_CONT ||
452 contBB->getExit()->getPredicate())
453 return false;
454 contBB->getExit()->op = OP_BRA;
455 bb->remove(bb->getEntry()); // delete PRECONT
456
457 ei.next();
458 assert(ei.end() || ei.getType() != Graph::Edge::BACK);
459 return true;
460 }
461
462 // replace branches to join blocks with join ops
463 void
464 NVC0LegalizePostRA::propagateJoin(BasicBlock *bb)
465 {
466 if (bb->getEntry()->op != OP_JOIN || bb->getEntry()->asFlow()->limit)
467 return;
468 for (Graph::EdgeIterator ei = bb->cfg.incident(); !ei.end(); ei.next()) {
469 BasicBlock *in = BasicBlock::get(ei.getNode());
470 Instruction *exit = in->getExit();
471 if (!exit) {
472 in->insertTail(new FlowInstruction(func, OP_JOIN, bb));
473 // there should always be a terminator instruction
474 WARN("inserted missing terminator in BB:%i\n", in->getId());
475 } else
476 if (exit->op == OP_BRA) {
477 exit->op = OP_JOIN;
478 exit->asFlow()->limit = 1; // must-not-propagate marker
479 }
480 }
481 bb->remove(bb->getEntry());
482 }
483
484 bool
485 NVC0LegalizePostRA::visit(BasicBlock *bb)
486 {
487 Instruction *i, *next;
488
489 // remove pseudo operations and non-fixed no-ops, split 64 bit operations
490 for (i = bb->getFirst(); i; i = next) {
491 next = i->next;
492 if (i->op == OP_EMIT || i->op == OP_RESTART) {
493 if (!i->getDef(0)->refCount())
494 i->setDef(0, NULL);
495 if (i->src(0).getFile() == FILE_IMMEDIATE)
496 i->setSrc(0, rZero); // initial value must be 0
497 replaceZero(i);
498 } else
499 if (i->isNop()) {
500 bb->remove(i);
501 } else {
502 // TODO: Move this to before register allocation for operations that
503 // need the $c register !
504 if (typeSizeof(i->dType) == 8) {
505 Instruction *hi;
506 hi = BuildUtil::split64BitOpPostRA(func, i, rZero, carry);
507 if (hi)
508 next = hi;
509 }
510
511 if (i->op != OP_MOV && i->op != OP_PFETCH)
512 replaceZero(i);
513 }
514 }
515 if (!bb->getEntry())
516 return true;
517
518 if (!tryReplaceContWithBra(bb))
519 propagateJoin(bb);
520
521 return true;
522 }
523
524 NVC0LoweringPass::NVC0LoweringPass(Program *prog) : targ(prog->getTarget())
525 {
526 bld.setProgram(prog);
527 gMemBase = NULL;
528 }
529
530 bool
531 NVC0LoweringPass::visit(Function *fn)
532 {
533 if (prog->getType() == Program::TYPE_GEOMETRY) {
534 assert(!strncmp(fn->getName(), "MAIN", 4));
535 // TODO: when we generate actual functions pass this value along somehow
536 bld.setPosition(BasicBlock::get(fn->cfg.getRoot()), false);
537 gpEmitAddress = bld.loadImm(NULL, 0)->asLValue();
538 if (fn->cfgExit) {
539 bld.setPosition(BasicBlock::get(fn->cfgExit)->getExit(), false);
540 bld.mkMovToReg(0, gpEmitAddress);
541 }
542 }
543 return true;
544 }
545
546 bool
547 NVC0LoweringPass::visit(BasicBlock *bb)
548 {
549 return true;
550 }
551
552 inline Value *
553 NVC0LoweringPass::loadTexHandle(Value *ptr, unsigned int slot)
554 {
555 uint8_t b = prog->driver->io.resInfoCBSlot;
556 uint32_t off = prog->driver->io.texBindBase + slot * 4;
557 return bld.
558 mkLoadv(TYPE_U32, bld.mkSymbol(FILE_MEMORY_CONST, b, TYPE_U32, off), ptr);
559 }
560
561 // move array source to first slot, convert to u16, add indirections
562 bool
563 NVC0LoweringPass::handleTEX(TexInstruction *i)
564 {
565 const int dim = i->tex.target.getDim() + i->tex.target.isCube();
566 const int arg = i->tex.target.getArgCount();
567 const int lyr = arg - (i->tex.target.isMS() ? 2 : 1);
568 const int chipset = prog->getTarget()->getChipset();
569
570 if (chipset >= NVISA_GK104_CHIPSET) {
571 if (i->tex.rIndirectSrc >= 0 || i->tex.sIndirectSrc >= 0) {
572 WARN("indirect TEX not implemented\n");
573 }
574 if (i->tex.r == i->tex.s) {
575 i->tex.r += prog->driver->io.texBindBase / 4;
576 i->tex.s = 0; // only a single cX[] value possible here
577 } else {
578 Value *hnd = bld.getScratch();
579 Value *rHnd = loadTexHandle(NULL, i->tex.r);
580 Value *sHnd = loadTexHandle(NULL, i->tex.s);
581
582 bld.mkOp3(OP_INSBF, TYPE_U32, hnd, rHnd, bld.mkImm(0x1400), sHnd);
583
584 i->tex.r = 0; // not used for indirect tex
585 i->tex.s = 0;
586 i->setIndirectR(hnd);
587 }
588 if (i->tex.target.isArray()) {
589 LValue *layer = new_LValue(func, FILE_GPR);
590 Value *src = i->getSrc(lyr);
591 const int sat = (i->op == OP_TXF) ? 1 : 0;
592 DataType sTy = (i->op == OP_TXF) ? TYPE_U32 : TYPE_F32;
593 bld.mkCvt(OP_CVT, TYPE_U16, layer, sTy, src)->saturate = sat;
594 for (int s = dim; s >= 1; --s)
595 i->setSrc(s, i->getSrc(s - 1));
596 i->setSrc(0, layer);
597 }
598 } else
599 // (nvc0) generate and move the tsc/tic/array source to the front
600 if (i->tex.target.isArray() || i->tex.rIndirectSrc >= 0 || i->tex.sIndirectSrc >= 0) {
601 LValue *src = new_LValue(func, FILE_GPR); // 0xttxsaaaa
602
603 Value *arrayIndex = i->tex.target.isArray() ? i->getSrc(lyr) : NULL;
604 for (int s = dim; s >= 1; --s)
605 i->setSrc(s, i->getSrc(s - 1));
606 i->setSrc(0, arrayIndex);
607
608 Value *ticRel = i->getIndirectR();
609 Value *tscRel = i->getIndirectS();
610
611 if (arrayIndex) {
612 int sat = (i->op == OP_TXF) ? 1 : 0;
613 DataType sTy = (i->op == OP_TXF) ? TYPE_U32 : TYPE_F32;
614 bld.mkCvt(OP_CVT, TYPE_U16, src, sTy, arrayIndex)->saturate = sat;
615 } else {
616 bld.loadImm(src, 0);
617 }
618
619 if (ticRel) {
620 i->setSrc(i->tex.rIndirectSrc, NULL);
621 bld.mkOp3(OP_INSBF, TYPE_U32, src, ticRel, bld.mkImm(0x0917), src);
622 }
623 if (tscRel) {
624 i->setSrc(i->tex.sIndirectSrc, NULL);
625 bld.mkOp3(OP_INSBF, TYPE_U32, src, tscRel, bld.mkImm(0x0710), src);
626 }
627
628 i->setSrc(0, src);
629 }
630
631 // For nvc0, the sample id has to be in the second operand, as the offset
632 // does. Right now we don't know how to pass both in, and this case can't
633 // happen with OpenGL. On nve0, the sample id is part of the texture
634 // coordinate argument.
635 assert(chipset >= NVISA_GK104_CHIPSET ||
636 !i->tex.useOffsets || !i->tex.target.isMS());
637
638 // offset is between lod and dc
639 if (i->tex.useOffsets) {
640 int n, c;
641 int s = i->srcCount(0xff, true);
642 if (i->tex.target.isShadow())
643 s--;
644 if (i->srcExists(s)) // move potential predicate out of the way
645 i->moveSources(s, 1);
646 if (i->tex.useOffsets == 4 && i->srcExists(s + 1))
647 i->moveSources(s + 1, 1);
648 if (i->op == OP_TXG) {
649 // Either there is 1 offset, which goes into the 2 low bytes of the
650 // first source, or there are 4 offsets, which go into 2 sources (8
651 // values, 1 byte each).
652 Value *offs[2] = {NULL, NULL};
653 for (n = 0; n < i->tex.useOffsets; n++) {
654 for (c = 0; c < 2; ++c) {
655 if ((n % 2) == 0 && c == 0)
656 offs[n / 2] = i->offset[n][c].get();
657 else
658 bld.mkOp3(OP_INSBF, TYPE_U32,
659 offs[n / 2],
660 i->offset[n][c].get(),
661 bld.mkImm(0x800 | ((n * 16 + c * 8) % 32)),
662 offs[n / 2]);
663 }
664 }
665 i->setSrc(s, offs[0]);
666 if (offs[1])
667 i->setSrc(s + 1, offs[1]);
668 } else {
669 unsigned imm = 0;
670 assert(i->tex.useOffsets == 1);
671 for (c = 0; c < 3; ++c) {
672 ImmediateValue val;
673 assert(i->offset[0][c].getImmediate(val));
674 imm |= (val.reg.data.u32 & 0xf) << (c * 4);
675 }
676 i->setSrc(s, bld.loadImm(NULL, imm));
677 }
678 }
679
680 if (chipset >= NVISA_GK104_CHIPSET) {
681 //
682 // If TEX requires more than 4 sources, the 2nd register tuple must be
683 // aligned to 4, even if it consists of just a single 4-byte register.
684 //
685 // XXX HACK: We insert 0 sources to avoid the 5 or 6 regs case.
686 //
687 int s = i->srcCount(0xff, true);
688 if (s > 4 && s < 7) {
689 if (i->srcExists(s)) // move potential predicate out of the way
690 i->moveSources(s, 7 - s);
691 while (s < 7)
692 i->setSrc(s++, bld.loadImm(NULL, 0));
693 }
694 }
695
696 return true;
697 }
698
699 bool
700 NVC0LoweringPass::handleManualTXD(TexInstruction *i)
701 {
702 static const uint8_t qOps[4][2] =
703 {
704 { QUADOP(MOV2, ADD, MOV2, ADD), QUADOP(MOV2, MOV2, ADD, ADD) }, // l0
705 { QUADOP(SUBR, MOV2, SUBR, MOV2), QUADOP(MOV2, MOV2, ADD, ADD) }, // l1
706 { QUADOP(MOV2, ADD, MOV2, ADD), QUADOP(SUBR, SUBR, MOV2, MOV2) }, // l2
707 { QUADOP(SUBR, MOV2, SUBR, MOV2), QUADOP(SUBR, SUBR, MOV2, MOV2) }, // l3
708 };
709 Value *def[4][4];
710 Value *crd[3];
711 Instruction *tex;
712 Value *zero = bld.loadImm(bld.getSSA(), 0);
713 int l, c;
714 const int dim = i->tex.target.getDim();
715
716 i->op = OP_TEX; // no need to clone dPdx/dPdy later
717
718 for (c = 0; c < dim; ++c)
719 crd[c] = bld.getScratch();
720
721 bld.mkOp(OP_QUADON, TYPE_NONE, NULL);
722 for (l = 0; l < 4; ++l) {
723 // mov coordinates from lane l to all lanes
724 for (c = 0; c < dim; ++c)
725 bld.mkQuadop(0x00, crd[c], l, i->getSrc(c), zero);
726 // add dPdx from lane l to lanes dx
727 for (c = 0; c < dim; ++c)
728 bld.mkQuadop(qOps[l][0], crd[c], l, i->dPdx[c].get(), crd[c]);
729 // add dPdy from lane l to lanes dy
730 for (c = 0; c < dim; ++c)
731 bld.mkQuadop(qOps[l][1], crd[c], l, i->dPdy[c].get(), crd[c]);
732 // texture
733 bld.insert(tex = cloneForward(func, i));
734 for (c = 0; c < dim; ++c)
735 tex->setSrc(c, crd[c]);
736 // save results
737 for (c = 0; i->defExists(c); ++c) {
738 Instruction *mov;
739 def[c][l] = bld.getSSA();
740 mov = bld.mkMov(def[c][l], tex->getDef(c));
741 mov->fixed = 1;
742 mov->lanes = 1 << l;
743 }
744 }
745 bld.mkOp(OP_QUADPOP, TYPE_NONE, NULL);
746
747 for (c = 0; i->defExists(c); ++c) {
748 Instruction *u = bld.mkOp(OP_UNION, TYPE_U32, i->getDef(c));
749 for (l = 0; l < 4; ++l)
750 u->setSrc(l, def[c][l]);
751 }
752
753 i->bb->remove(i);
754 return true;
755 }
756
757 bool
758 NVC0LoweringPass::handleTXD(TexInstruction *txd)
759 {
760 int dim = txd->tex.target.getDim();
761 int arg = txd->tex.target.getArgCount();
762
763 handleTEX(txd);
764 while (txd->srcExists(arg))
765 ++arg;
766
767 txd->tex.derivAll = true;
768 if (dim > 2 ||
769 txd->tex.target.isCube() ||
770 arg > 4 ||
771 txd->tex.target.isShadow())
772 return handleManualTXD(txd);
773
774 for (int c = 0; c < dim; ++c) {
775 txd->setSrc(arg + c * 2 + 0, txd->dPdx[c]);
776 txd->setSrc(arg + c * 2 + 1, txd->dPdy[c]);
777 txd->dPdx[c].set(NULL);
778 txd->dPdy[c].set(NULL);
779 }
780 return true;
781 }
782
783 bool
784 NVC0LoweringPass::handleTXQ(TexInstruction *txq)
785 {
786 // TODO: indirect resource/sampler index
787 return true;
788 }
789
790 bool
791 NVC0LoweringPass::handleTXLQ(TexInstruction *i)
792 {
793 /* The outputs are inverted compared to what the TGSI instruction
794 * expects. Take that into account in the mask.
795 */
796 assert((i->tex.mask & ~3) == 0);
797 if (i->tex.mask == 1)
798 i->tex.mask = 2;
799 else if (i->tex.mask == 2)
800 i->tex.mask = 1;
801 handleTEX(i);
802 bld.setPosition(i, true);
803
804 /* The returned values are not quite what we want:
805 * (a) convert from s16/u16 to f32
806 * (b) multiply by 1/256
807 */
808 for (int def = 0; def < 2; ++def) {
809 if (!i->defExists(def))
810 continue;
811 enum DataType type = TYPE_S16;
812 if (i->tex.mask == 2 || def > 0)
813 type = TYPE_U16;
814 bld.mkCvt(OP_CVT, TYPE_F32, i->getDef(def), type, i->getDef(def));
815 bld.mkOp2(OP_MUL, TYPE_F32, i->getDef(def),
816 i->getDef(def), bld.loadImm(NULL, 1.0f / 256));
817 }
818 if (i->tex.mask == 3) {
819 LValue *t = new_LValue(func, FILE_GPR);
820 bld.mkMov(t, i->getDef(0));
821 bld.mkMov(i->getDef(0), i->getDef(1));
822 bld.mkMov(i->getDef(1), t);
823 }
824 return true;
825 }
826
827
828 bool
829 NVC0LoweringPass::handleATOM(Instruction *atom)
830 {
831 SVSemantic sv;
832
833 switch (atom->src(0).getFile()) {
834 case FILE_MEMORY_LOCAL:
835 sv = SV_LBASE;
836 break;
837 case FILE_MEMORY_SHARED:
838 sv = SV_SBASE;
839 break;
840 default:
841 assert(atom->src(0).getFile() == FILE_MEMORY_GLOBAL);
842 return true;
843 }
844 Value *base =
845 bld.mkOp1v(OP_RDSV, TYPE_U32, bld.getScratch(), bld.mkSysVal(sv, 0));
846 Value *ptr = atom->getIndirect(0, 0);
847
848 atom->setSrc(0, cloneShallow(func, atom->getSrc(0)));
849 atom->getSrc(0)->reg.file = FILE_MEMORY_GLOBAL;
850 if (ptr)
851 base = bld.mkOp2v(OP_ADD, TYPE_U32, base, base, ptr);
852 atom->setIndirect(0, 0, base);
853
854 return true;
855 }
856
857 bool
858 NVC0LoweringPass::handleCasExch(Instruction *cas, bool needCctl)
859 {
860 if (cas->subOp != NV50_IR_SUBOP_ATOM_CAS &&
861 cas->subOp != NV50_IR_SUBOP_ATOM_EXCH)
862 return false;
863 bld.setPosition(cas, true);
864
865 if (needCctl) {
866 Instruction *cctl = bld.mkOp1(OP_CCTL, TYPE_NONE, NULL, cas->getSrc(0));
867 cctl->setIndirect(0, 0, cas->getIndirect(0, 0));
868 cctl->fixed = 1;
869 cctl->subOp = NV50_IR_SUBOP_CCTL_IV;
870 if (cas->isPredicated())
871 cctl->setPredicate(cas->cc, cas->getPredicate());
872 }
873
874 if (cas->defExists(0) && cas->subOp == NV50_IR_SUBOP_ATOM_CAS) {
875 // CAS is crazy. It's 2nd source is a double reg, and the 3rd source
876 // should be set to the high part of the double reg or bad things will
877 // happen elsewhere in the universe.
878 // Also, it sometimes returns the new value instead of the old one
879 // under mysterious circumstances.
880 Value *dreg = bld.getSSA(8);
881 bld.setPosition(cas, false);
882 bld.mkOp2(OP_MERGE, TYPE_U64, dreg, cas->getSrc(1), cas->getSrc(2));
883 cas->setSrc(1, dreg);
884 }
885
886 return true;
887 }
888
889 inline Value *
890 NVC0LoweringPass::loadResInfo32(Value *ptr, uint32_t off)
891 {
892 uint8_t b = prog->driver->io.resInfoCBSlot;
893 off += prog->driver->io.suInfoBase;
894 return bld.
895 mkLoadv(TYPE_U32, bld.mkSymbol(FILE_MEMORY_CONST, b, TYPE_U32, off), ptr);
896 }
897
898 inline Value *
899 NVC0LoweringPass::loadMsInfo32(Value *ptr, uint32_t off)
900 {
901 uint8_t b = prog->driver->io.msInfoCBSlot;
902 off += prog->driver->io.msInfoBase;
903 return bld.
904 mkLoadv(TYPE_U32, bld.mkSymbol(FILE_MEMORY_CONST, b, TYPE_U32, off), ptr);
905 }
906
907 /* On nvc0, surface info is obtained via the surface binding points passed
908 * to the SULD/SUST instructions.
909 * On nve4, surface info is stored in c[] and is used by various special
910 * instructions, e.g. for clamping coordiantes or generating an address.
911 * They couldn't just have added an equivalent to TIC now, couldn't they ?
912 */
913 #define NVE4_SU_INFO_ADDR 0x00
914 #define NVE4_SU_INFO_FMT 0x04
915 #define NVE4_SU_INFO_DIM_X 0x08
916 #define NVE4_SU_INFO_PITCH 0x0c
917 #define NVE4_SU_INFO_DIM_Y 0x10
918 #define NVE4_SU_INFO_ARRAY 0x14
919 #define NVE4_SU_INFO_DIM_Z 0x18
920 #define NVE4_SU_INFO_UNK1C 0x1c
921 #define NVE4_SU_INFO_WIDTH 0x20
922 #define NVE4_SU_INFO_HEIGHT 0x24
923 #define NVE4_SU_INFO_DEPTH 0x28
924 #define NVE4_SU_INFO_TARGET 0x2c
925 #define NVE4_SU_INFO_CALL 0x30
926 #define NVE4_SU_INFO_RAW_X 0x34
927 #define NVE4_SU_INFO_MS_X 0x38
928 #define NVE4_SU_INFO_MS_Y 0x3c
929
930 #define NVE4_SU_INFO__STRIDE 0x40
931
932 #define NVE4_SU_INFO_DIM(i) (0x08 + (i) * 8)
933 #define NVE4_SU_INFO_SIZE(i) (0x20 + (i) * 4)
934 #define NVE4_SU_INFO_MS(i) (0x38 + (i) * 4)
935
936 static inline uint16_t getSuClampSubOp(const TexInstruction *su, int c)
937 {
938 switch (su->tex.target.getEnum()) {
939 case TEX_TARGET_BUFFER: return NV50_IR_SUBOP_SUCLAMP_PL(0, 1);
940 case TEX_TARGET_RECT: return NV50_IR_SUBOP_SUCLAMP_SD(0, 2);
941 case TEX_TARGET_1D: return NV50_IR_SUBOP_SUCLAMP_SD(0, 2);
942 case TEX_TARGET_1D_ARRAY: return (c == 1) ?
943 NV50_IR_SUBOP_SUCLAMP_PL(0, 2) :
944 NV50_IR_SUBOP_SUCLAMP_SD(0, 2);
945 case TEX_TARGET_2D: return NV50_IR_SUBOP_SUCLAMP_BL(0, 2);
946 case TEX_TARGET_2D_MS: return NV50_IR_SUBOP_SUCLAMP_BL(0, 2);
947 case TEX_TARGET_2D_ARRAY: return NV50_IR_SUBOP_SUCLAMP_SD(0, 2);
948 case TEX_TARGET_2D_MS_ARRAY: return NV50_IR_SUBOP_SUCLAMP_SD(0, 2);
949 case TEX_TARGET_3D: return NV50_IR_SUBOP_SUCLAMP_SD(0, 2);
950 case TEX_TARGET_CUBE: return NV50_IR_SUBOP_SUCLAMP_SD(0, 2);
951 case TEX_TARGET_CUBE_ARRAY: return NV50_IR_SUBOP_SUCLAMP_SD(0, 2);
952 default:
953 assert(0);
954 return 0;
955 }
956 }
957
958 void
959 NVC0LoweringPass::adjustCoordinatesMS(TexInstruction *tex)
960 {
961 const uint16_t base = tex->tex.r * NVE4_SU_INFO__STRIDE;
962 const int arg = tex->tex.target.getArgCount();
963
964 if (tex->tex.target == TEX_TARGET_2D_MS)
965 tex->tex.target = TEX_TARGET_2D;
966 else
967 if (tex->tex.target == TEX_TARGET_2D_MS_ARRAY)
968 tex->tex.target = TEX_TARGET_2D_ARRAY;
969 else
970 return;
971
972 Value *x = tex->getSrc(0);
973 Value *y = tex->getSrc(1);
974 Value *s = tex->getSrc(arg - 1);
975
976 Value *tx = bld.getSSA(), *ty = bld.getSSA(), *ts = bld.getSSA();
977
978 Value *ms_x = loadResInfo32(NULL, base + NVE4_SU_INFO_MS(0));
979 Value *ms_y = loadResInfo32(NULL, base + NVE4_SU_INFO_MS(1));
980
981 bld.mkOp2(OP_SHL, TYPE_U32, tx, x, ms_x);
982 bld.mkOp2(OP_SHL, TYPE_U32, ty, y, ms_y);
983
984 s = bld.mkOp2v(OP_AND, TYPE_U32, ts, s, bld.loadImm(NULL, 0x7));
985 s = bld.mkOp2v(OP_SHL, TYPE_U32, ts, ts, bld.mkImm(3));
986
987 Value *dx = loadMsInfo32(ts, 0x0);
988 Value *dy = loadMsInfo32(ts, 0x4);
989
990 bld.mkOp2(OP_ADD, TYPE_U32, tx, tx, dx);
991 bld.mkOp2(OP_ADD, TYPE_U32, ty, ty, dy);
992
993 tex->setSrc(0, tx);
994 tex->setSrc(1, ty);
995 tex->moveSources(arg, -1);
996 }
997
998 // Sets 64-bit "generic address", predicate and format sources for SULD/SUST.
999 // They're computed from the coordinates using the surface info in c[] space.
1000 void
1001 NVC0LoweringPass::processSurfaceCoordsNVE4(TexInstruction *su)
1002 {
1003 Instruction *insn;
1004 const bool atom = su->op == OP_SUREDB || su->op == OP_SUREDP;
1005 const bool raw =
1006 su->op == OP_SULDB || su->op == OP_SUSTB || su->op == OP_SUREDB;
1007 const int idx = su->tex.r;
1008 const int dim = su->tex.target.getDim();
1009 const int arg = dim + (su->tex.target.isArray() ? 1 : 0);
1010 const uint16_t base = idx * NVE4_SU_INFO__STRIDE;
1011 int c;
1012 Value *zero = bld.mkImm(0);
1013 Value *p1 = NULL;
1014 Value *v;
1015 Value *src[3];
1016 Value *bf, *eau, *off;
1017 Value *addr, *pred;
1018
1019 off = bld.getScratch(4);
1020 bf = bld.getScratch(4);
1021 addr = bld.getSSA(8);
1022 pred = bld.getScratch(1, FILE_PREDICATE);
1023
1024 bld.setPosition(su, false);
1025
1026 adjustCoordinatesMS(su);
1027
1028 // calculate clamped coordinates
1029 for (c = 0; c < arg; ++c) {
1030 src[c] = bld.getScratch();
1031 if (c == 0 && raw)
1032 v = loadResInfo32(NULL, base + NVE4_SU_INFO_RAW_X);
1033 else
1034 v = loadResInfo32(NULL, base + NVE4_SU_INFO_DIM(c));
1035 bld.mkOp3(OP_SUCLAMP, TYPE_S32, src[c], su->getSrc(c), v, zero)
1036 ->subOp = getSuClampSubOp(su, c);
1037 }
1038 for (; c < 3; ++c)
1039 src[c] = zero;
1040
1041 // set predicate output
1042 if (su->tex.target == TEX_TARGET_BUFFER) {
1043 src[0]->getInsn()->setFlagsDef(1, pred);
1044 } else
1045 if (su->tex.target.isArray()) {
1046 p1 = bld.getSSA(1, FILE_PREDICATE);
1047 src[dim]->getInsn()->setFlagsDef(1, p1);
1048 }
1049
1050 // calculate pixel offset
1051 if (dim == 1) {
1052 if (su->tex.target != TEX_TARGET_BUFFER)
1053 bld.mkOp2(OP_AND, TYPE_U32, off, src[0], bld.loadImm(NULL, 0xffff));
1054 } else
1055 if (dim == 3) {
1056 v = loadResInfo32(NULL, base + NVE4_SU_INFO_UNK1C);
1057 bld.mkOp3(OP_MADSP, TYPE_U32, off, src[2], v, src[1])
1058 ->subOp = NV50_IR_SUBOP_MADSP(4,2,8); // u16l u16l u16l
1059
1060 v = loadResInfo32(NULL, base + NVE4_SU_INFO_PITCH);
1061 bld.mkOp3(OP_MADSP, TYPE_U32, off, off, v, src[0])
1062 ->subOp = NV50_IR_SUBOP_MADSP(0,2,8); // u32 u16l u16l
1063 } else {
1064 assert(dim == 2);
1065 v = loadResInfo32(NULL, base + NVE4_SU_INFO_PITCH);
1066 bld.mkOp3(OP_MADSP, TYPE_U32, off, src[1], v, src[0])
1067 ->subOp = su->tex.target.isArray() ?
1068 NV50_IR_SUBOP_MADSP_SD : NV50_IR_SUBOP_MADSP(4,2,8); // u16l u16l u16l
1069 }
1070
1071 // calculate effective address part 1
1072 if (su->tex.target == TEX_TARGET_BUFFER) {
1073 if (raw) {
1074 bf = src[0];
1075 } else {
1076 v = loadResInfo32(NULL, base + NVE4_SU_INFO_FMT);
1077 bld.mkOp3(OP_VSHL, TYPE_U32, bf, src[0], v, zero)
1078 ->subOp = NV50_IR_SUBOP_V1(7,6,8|2);
1079 }
1080 } else {
1081 Value *y = src[1];
1082 Value *z = src[2];
1083 uint16_t subOp = 0;
1084
1085 switch (dim) {
1086 case 1:
1087 y = zero;
1088 z = zero;
1089 break;
1090 case 2:
1091 z = off;
1092 if (!su->tex.target.isArray()) {
1093 z = loadResInfo32(NULL, base + NVE4_SU_INFO_UNK1C);
1094 subOp = NV50_IR_SUBOP_SUBFM_3D;
1095 }
1096 break;
1097 default:
1098 subOp = NV50_IR_SUBOP_SUBFM_3D;
1099 assert(dim == 3);
1100 break;
1101 }
1102 insn = bld.mkOp3(OP_SUBFM, TYPE_U32, bf, src[0], y, z);
1103 insn->subOp = subOp;
1104 insn->setFlagsDef(1, pred);
1105 }
1106
1107 // part 2
1108 v = loadResInfo32(NULL, base + NVE4_SU_INFO_ADDR);
1109
1110 if (su->tex.target == TEX_TARGET_BUFFER) {
1111 eau = v;
1112 } else {
1113 eau = bld.mkOp3v(OP_SUEAU, TYPE_U32, bld.getScratch(4), off, bf, v);
1114 }
1115 // add array layer offset
1116 if (su->tex.target.isArray()) {
1117 v = loadResInfo32(NULL, base + NVE4_SU_INFO_ARRAY);
1118 if (dim == 1)
1119 bld.mkOp3(OP_MADSP, TYPE_U32, eau, src[1], v, eau)
1120 ->subOp = NV50_IR_SUBOP_MADSP(4,0,0); // u16 u24 u32
1121 else
1122 bld.mkOp3(OP_MADSP, TYPE_U32, eau, v, src[2], eau)
1123 ->subOp = NV50_IR_SUBOP_MADSP(0,0,0); // u32 u24 u32
1124 // combine predicates
1125 assert(p1);
1126 bld.mkOp2(OP_OR, TYPE_U8, pred, pred, p1);
1127 }
1128
1129 if (atom) {
1130 Value *lo = bf;
1131 if (su->tex.target == TEX_TARGET_BUFFER) {
1132 lo = zero;
1133 bld.mkMov(off, bf);
1134 }
1135 // bf == g[] address & 0xff
1136 // eau == g[] address >> 8
1137 bld.mkOp3(OP_PERMT, TYPE_U32, bf, lo, bld.loadImm(NULL, 0x6540), eau);
1138 bld.mkOp3(OP_PERMT, TYPE_U32, eau, zero, bld.loadImm(NULL, 0x0007), eau);
1139 } else
1140 if (su->op == OP_SULDP && su->tex.target == TEX_TARGET_BUFFER) {
1141 // Convert from u32 to u8 address format, which is what the library code
1142 // doing SULDP currently uses.
1143 // XXX: can SUEAU do this ?
1144 // XXX: does it matter that we don't mask high bytes in bf ?
1145 // Grrr.
1146 bld.mkOp2(OP_SHR, TYPE_U32, off, bf, bld.mkImm(8));
1147 bld.mkOp2(OP_ADD, TYPE_U32, eau, eau, off);
1148 }
1149
1150 bld.mkOp2(OP_MERGE, TYPE_U64, addr, bf, eau);
1151
1152 if (atom && su->tex.target == TEX_TARGET_BUFFER)
1153 bld.mkOp2(OP_ADD, TYPE_U64, addr, addr, off);
1154
1155 // let's just set it 0 for raw access and hope it works
1156 v = raw ?
1157 bld.mkImm(0) : loadResInfo32(NULL, base + NVE4_SU_INFO_FMT);
1158
1159 // get rid of old coordinate sources, make space for fmt info and predicate
1160 su->moveSources(arg, 3 - arg);
1161 // set 64 bit address and 32-bit format sources
1162 su->setSrc(0, addr);
1163 su->setSrc(1, v);
1164 su->setSrc(2, pred);
1165 }
1166
1167 void
1168 NVC0LoweringPass::handleSurfaceOpNVE4(TexInstruction *su)
1169 {
1170 processSurfaceCoordsNVE4(su);
1171
1172 // Who do we hate more ? The person who decided that nvc0's SULD doesn't
1173 // have to support conversion or the person who decided that, in OpenCL,
1174 // you don't have to specify the format here like you do in OpenGL ?
1175
1176 if (su->op == OP_SULDP) {
1177 // We don't patch shaders. Ever.
1178 // You get an indirect call to our library blob here.
1179 // But at least it's uniform.
1180 FlowInstruction *call;
1181 LValue *p[3];
1182 LValue *r[5];
1183 uint16_t base = su->tex.r * NVE4_SU_INFO__STRIDE + NVE4_SU_INFO_CALL;
1184
1185 for (int i = 0; i < 4; ++i)
1186 (r[i] = bld.getScratch(4, FILE_GPR))->reg.data.id = i;
1187 for (int i = 0; i < 3; ++i)
1188 (p[i] = bld.getScratch(1, FILE_PREDICATE))->reg.data.id = i;
1189 (r[4] = bld.getScratch(8, FILE_GPR))->reg.data.id = 4;
1190
1191 bld.mkMov(p[1], bld.mkImm((su->cache == CACHE_CA) ? 1 : 0), TYPE_U8);
1192 bld.mkMov(p[2], bld.mkImm((su->cache == CACHE_CG) ? 1 : 0), TYPE_U8);
1193 bld.mkMov(p[0], su->getSrc(2), TYPE_U8);
1194 bld.mkMov(r[4], su->getSrc(0), TYPE_U64);
1195 bld.mkMov(r[2], su->getSrc(1), TYPE_U32);
1196
1197 call = bld.mkFlow(OP_CALL, NULL, su->cc, su->getPredicate());
1198
1199 call->indirect = 1;
1200 call->absolute = 1;
1201 call->setSrc(0, bld.mkSymbol(FILE_MEMORY_CONST,
1202 prog->driver->io.resInfoCBSlot, TYPE_U32,
1203 prog->driver->io.suInfoBase + base));
1204 call->setSrc(1, r[2]);
1205 call->setSrc(2, r[4]);
1206 for (int i = 0; i < 3; ++i)
1207 call->setSrc(3 + i, p[i]);
1208 for (int i = 0; i < 4; ++i) {
1209 call->setDef(i, r[i]);
1210 bld.mkMov(su->getDef(i), r[i]);
1211 }
1212 call->setDef(4, p[1]);
1213 delete_Instruction(bld.getProgram(), su);
1214 }
1215
1216 if (su->op == OP_SUREDB || su->op == OP_SUREDP) {
1217 // FIXME: for out of bounds access, destination value will be undefined !
1218 Value *pred = su->getSrc(2);
1219 CondCode cc = CC_NOT_P;
1220 if (su->getPredicate()) {
1221 pred = bld.getScratch(1, FILE_PREDICATE);
1222 cc = su->cc;
1223 if (cc == CC_NOT_P) {
1224 bld.mkOp2(OP_OR, TYPE_U8, pred, su->getPredicate(), su->getSrc(2));
1225 } else {
1226 bld.mkOp2(OP_AND, TYPE_U8, pred, su->getPredicate(), su->getSrc(2));
1227 pred->getInsn()->src(1).mod = Modifier(NV50_IR_MOD_NOT);
1228 }
1229 }
1230 Instruction *red = bld.mkOp(OP_ATOM, su->dType, su->getDef(0));
1231 red->subOp = su->subOp;
1232 if (!gMemBase)
1233 gMemBase = bld.mkSymbol(FILE_MEMORY_GLOBAL, 0, TYPE_U32, 0);
1234 red->setSrc(0, gMemBase);
1235 red->setSrc(1, su->getSrc(3));
1236 if (su->subOp == NV50_IR_SUBOP_ATOM_CAS)
1237 red->setSrc(2, su->getSrc(4));
1238 red->setIndirect(0, 0, su->getSrc(0));
1239 red->setPredicate(cc, pred);
1240 delete_Instruction(bld.getProgram(), su);
1241 handleCasExch(red, true);
1242 } else {
1243 su->sType = (su->tex.target == TEX_TARGET_BUFFER) ? TYPE_U32 : TYPE_U8;
1244 }
1245 }
1246
1247 bool
1248 NVC0LoweringPass::handleWRSV(Instruction *i)
1249 {
1250 Instruction *st;
1251 Symbol *sym;
1252 uint32_t addr;
1253
1254 // must replace, $sreg are not writeable
1255 addr = targ->getSVAddress(FILE_SHADER_OUTPUT, i->getSrc(0)->asSym());
1256 if (addr >= 0x400)
1257 return false;
1258 sym = bld.mkSymbol(FILE_SHADER_OUTPUT, 0, i->sType, addr);
1259
1260 st = bld.mkStore(OP_EXPORT, i->dType, sym, i->getIndirect(0, 0),
1261 i->getSrc(1));
1262 st->perPatch = i->perPatch;
1263
1264 bld.getBB()->remove(i);
1265 return true;
1266 }
1267
1268 void
1269 NVC0LoweringPass::readTessCoord(LValue *dst, int c)
1270 {
1271 Value *laneid = bld.getSSA();
1272 Value *x, *y;
1273
1274 bld.mkOp1(OP_RDSV, TYPE_U32, laneid, bld.mkSysVal(SV_LANEID, 0));
1275
1276 if (c == 0) {
1277 x = dst;
1278 y = NULL;
1279 } else
1280 if (c == 1) {
1281 x = NULL;
1282 y = dst;
1283 } else {
1284 assert(c == 2);
1285 x = bld.getSSA();
1286 y = bld.getSSA();
1287 }
1288 if (x)
1289 bld.mkFetch(x, TYPE_F32, FILE_SHADER_OUTPUT, 0x2f0, NULL, laneid);
1290 if (y)
1291 bld.mkFetch(y, TYPE_F32, FILE_SHADER_OUTPUT, 0x2f4, NULL, laneid);
1292
1293 if (c == 2) {
1294 bld.mkOp2(OP_ADD, TYPE_F32, dst, x, y);
1295 bld.mkOp2(OP_SUB, TYPE_F32, dst, bld.loadImm(NULL, 1.0f), dst);
1296 }
1297 }
1298
1299 bool
1300 NVC0LoweringPass::handleRDSV(Instruction *i)
1301 {
1302 Symbol *sym = i->getSrc(0)->asSym();
1303 const SVSemantic sv = sym->reg.data.sv.sv;
1304 Value *vtx = NULL;
1305 Instruction *ld;
1306 uint32_t addr = targ->getSVAddress(FILE_SHADER_INPUT, sym);
1307
1308 if (addr >= 0x400) {
1309 // mov $sreg
1310 if (sym->reg.data.sv.index == 3) {
1311 // TGSI backend may use 4th component of TID,NTID,CTAID,NCTAID
1312 i->op = OP_MOV;
1313 i->setSrc(0, bld.mkImm((sv == SV_NTID || sv == SV_NCTAID) ? 1 : 0));
1314 }
1315 return true;
1316 }
1317
1318 switch (sv) {
1319 case SV_POSITION:
1320 assert(prog->getType() == Program::TYPE_FRAGMENT);
1321 bld.mkInterp(NV50_IR_INTERP_LINEAR, i->getDef(0), addr, NULL);
1322 break;
1323 case SV_FACE:
1324 {
1325 Value *face = i->getDef(0);
1326 bld.mkInterp(NV50_IR_INTERP_FLAT, face, addr, NULL);
1327 if (i->dType == TYPE_F32) {
1328 bld.mkOp2(OP_AND, TYPE_U32, face, face, bld.mkImm(0x80000000));
1329 bld.mkOp2(OP_XOR, TYPE_U32, face, face, bld.mkImm(0xbf800000));
1330 }
1331 }
1332 break;
1333 case SV_TESS_COORD:
1334 assert(prog->getType() == Program::TYPE_TESSELLATION_EVAL);
1335 readTessCoord(i->getDef(0)->asLValue(), i->getSrc(0)->reg.data.sv.index);
1336 break;
1337 case SV_NTID:
1338 case SV_NCTAID:
1339 case SV_GRIDID:
1340 assert(targ->getChipset() >= NVISA_GK104_CHIPSET); // mov $sreg otherwise
1341 if (sym->reg.data.sv.index == 3) {
1342 i->op = OP_MOV;
1343 i->setSrc(0, bld.mkImm(sv == SV_GRIDID ? 0 : 1));
1344 return true;
1345 }
1346 addr += prog->driver->prop.cp.gridInfoBase;
1347 bld.mkLoad(TYPE_U32, i->getDef(0),
1348 bld.mkSymbol(FILE_MEMORY_CONST, 0, TYPE_U32, addr), NULL);
1349 break;
1350 case SV_SAMPLE_INDEX:
1351 // TODO: Properly pass source as an address in the PIX address space
1352 // (which can be of the form [r0+offset]). But this is currently
1353 // unnecessary.
1354 ld = bld.mkOp1(OP_PIXLD, TYPE_U32, i->getDef(0), bld.mkImm(0));
1355 ld->subOp = NV50_IR_SUBOP_PIXLD_SAMPLEID;
1356 break;
1357 case SV_SAMPLE_POS: {
1358 Value *off = new_LValue(func, FILE_GPR);
1359 ld = bld.mkOp1(OP_PIXLD, TYPE_U32, i->getDef(0), bld.mkImm(0));
1360 ld->subOp = NV50_IR_SUBOP_PIXLD_SAMPLEID;
1361 bld.mkOp2(OP_SHL, TYPE_U32, off, i->getDef(0), bld.mkImm(3));
1362 bld.mkLoad(TYPE_F32,
1363 i->getDef(0),
1364 bld.mkSymbol(
1365 FILE_MEMORY_CONST, prog->driver->io.resInfoCBSlot,
1366 TYPE_U32, prog->driver->io.sampleInfoBase +
1367 4 * sym->reg.data.sv.index),
1368 off);
1369 break;
1370 }
1371 case SV_SAMPLE_MASK:
1372 ld = bld.mkOp1(OP_PIXLD, TYPE_U32, i->getDef(0), bld.mkImm(0));
1373 ld->subOp = NV50_IR_SUBOP_PIXLD_COVMASK;
1374 break;
1375 default:
1376 if (prog->getType() == Program::TYPE_TESSELLATION_EVAL)
1377 vtx = bld.mkOp1v(OP_PFETCH, TYPE_U32, bld.getSSA(), bld.mkImm(0));
1378 ld = bld.mkFetch(i->getDef(0), i->dType,
1379 FILE_SHADER_INPUT, addr, i->getIndirect(0, 0), vtx);
1380 ld->perPatch = i->perPatch;
1381 break;
1382 }
1383 bld.getBB()->remove(i);
1384 return true;
1385 }
1386
1387 bool
1388 NVC0LoweringPass::handleDIV(Instruction *i)
1389 {
1390 if (!isFloatType(i->dType))
1391 return true;
1392 bld.setPosition(i, false);
1393 Instruction *rcp = bld.mkOp1(OP_RCP, i->dType, bld.getSSA(), i->getSrc(1));
1394 i->op = OP_MUL;
1395 i->setSrc(1, rcp->getDef(0));
1396 return true;
1397 }
1398
1399 bool
1400 NVC0LoweringPass::handleMOD(Instruction *i)
1401 {
1402 if (i->dType != TYPE_F32)
1403 return true;
1404 LValue *value = bld.getScratch();
1405 bld.mkOp1(OP_RCP, TYPE_F32, value, i->getSrc(1));
1406 bld.mkOp2(OP_MUL, TYPE_F32, value, i->getSrc(0), value);
1407 bld.mkOp1(OP_TRUNC, TYPE_F32, value, value);
1408 bld.mkOp2(OP_MUL, TYPE_F32, value, i->getSrc(1), value);
1409 i->op = OP_SUB;
1410 i->setSrc(1, value);
1411 return true;
1412 }
1413
1414 bool
1415 NVC0LoweringPass::handleSQRT(Instruction *i)
1416 {
1417 Instruction *rsq = bld.mkOp1(OP_RSQ, TYPE_F32,
1418 bld.getSSA(), i->getSrc(0));
1419 i->op = OP_MUL;
1420 i->setSrc(1, rsq->getDef(0));
1421
1422 return true;
1423 }
1424
1425 bool
1426 NVC0LoweringPass::handlePOW(Instruction *i)
1427 {
1428 LValue *val = bld.getScratch();
1429
1430 bld.mkOp1(OP_LG2, TYPE_F32, val, i->getSrc(0));
1431 bld.mkOp2(OP_MUL, TYPE_F32, val, i->getSrc(1), val)->dnz = 1;
1432 bld.mkOp1(OP_PREEX2, TYPE_F32, val, val);
1433
1434 i->op = OP_EX2;
1435 i->setSrc(0, val);
1436 i->setSrc(1, NULL);
1437
1438 return true;
1439 }
1440
1441 bool
1442 NVC0LoweringPass::handleEXPORT(Instruction *i)
1443 {
1444 if (prog->getType() == Program::TYPE_FRAGMENT) {
1445 int id = i->getSrc(0)->reg.data.offset / 4;
1446
1447 if (i->src(0).isIndirect(0)) // TODO, ugly
1448 return false;
1449 i->op = OP_MOV;
1450 i->subOp = NV50_IR_SUBOP_MOV_FINAL;
1451 i->src(0).set(i->src(1));
1452 i->setSrc(1, NULL);
1453 i->setDef(0, new_LValue(func, FILE_GPR));
1454 i->getDef(0)->reg.data.id = id;
1455
1456 prog->maxGPR = MAX2(prog->maxGPR, id);
1457 } else
1458 if (prog->getType() == Program::TYPE_GEOMETRY) {
1459 i->setIndirect(0, 1, gpEmitAddress);
1460 }
1461 return true;
1462 }
1463
1464 bool
1465 NVC0LoweringPass::handleOUT(Instruction *i)
1466 {
1467 if (i->op == OP_RESTART && i->prev && i->prev->op == OP_EMIT) {
1468 i->prev->subOp = NV50_IR_SUBOP_EMIT_RESTART;
1469 delete_Instruction(prog, i);
1470 } else {
1471 assert(gpEmitAddress);
1472 i->setDef(0, gpEmitAddress);
1473 if (i->srcExists(0))
1474 i->setSrc(1, i->getSrc(0));
1475 i->setSrc(0, gpEmitAddress);
1476 }
1477 return true;
1478 }
1479
1480 // Generate a binary predicate if an instruction is predicated by
1481 // e.g. an f32 value.
1482 void
1483 NVC0LoweringPass::checkPredicate(Instruction *insn)
1484 {
1485 Value *pred = insn->getPredicate();
1486 Value *pdst;
1487
1488 if (!pred || pred->reg.file == FILE_PREDICATE)
1489 return;
1490 pdst = new_LValue(func, FILE_PREDICATE);
1491
1492 // CAUTION: don't use pdst->getInsn, the definition might not be unique,
1493 // delay turning PSET(FSET(x,y),0) into PSET(x,y) to a later pass
1494
1495 bld.mkCmp(OP_SET, CC_NEU, insn->dType, pdst, insn->dType, bld.mkImm(0), pred);
1496
1497 insn->setPredicate(insn->cc, pdst);
1498 }
1499
1500 //
1501 // - add quadop dance for texturing
1502 // - put FP outputs in GPRs
1503 // - convert instruction sequences
1504 //
1505 bool
1506 NVC0LoweringPass::visit(Instruction *i)
1507 {
1508 bld.setPosition(i, false);
1509
1510 if (i->cc != CC_ALWAYS)
1511 checkPredicate(i);
1512
1513 switch (i->op) {
1514 case OP_TEX:
1515 case OP_TXB:
1516 case OP_TXL:
1517 case OP_TXF:
1518 case OP_TXG:
1519 return handleTEX(i->asTex());
1520 case OP_TXD:
1521 return handleTXD(i->asTex());
1522 case OP_TXLQ:
1523 return handleTXLQ(i->asTex());
1524 case OP_TXQ:
1525 return handleTXQ(i->asTex());
1526 case OP_EX2:
1527 bld.mkOp1(OP_PREEX2, TYPE_F32, i->getDef(0), i->getSrc(0));
1528 i->setSrc(0, i->getDef(0));
1529 break;
1530 case OP_POW:
1531 return handlePOW(i);
1532 case OP_DIV:
1533 return handleDIV(i);
1534 case OP_MOD:
1535 return handleMOD(i);
1536 case OP_SQRT:
1537 return handleSQRT(i);
1538 case OP_EXPORT:
1539 return handleEXPORT(i);
1540 case OP_EMIT:
1541 case OP_RESTART:
1542 return handleOUT(i);
1543 case OP_RDSV:
1544 return handleRDSV(i);
1545 case OP_WRSV:
1546 return handleWRSV(i);
1547 case OP_LOAD:
1548 if (i->src(0).getFile() == FILE_SHADER_INPUT) {
1549 if (prog->getType() == Program::TYPE_COMPUTE) {
1550 i->getSrc(0)->reg.file = FILE_MEMORY_CONST;
1551 i->getSrc(0)->reg.fileIndex = 0;
1552 } else
1553 if (prog->getType() == Program::TYPE_GEOMETRY &&
1554 i->src(0).isIndirect(0)) {
1555 // XXX: this assumes vec4 units
1556 Value *ptr = bld.mkOp2v(OP_SHL, TYPE_U32, bld.getSSA(),
1557 i->getIndirect(0, 0), bld.mkImm(4));
1558 i->setIndirect(0, 0, ptr);
1559 } else {
1560 i->op = OP_VFETCH;
1561 assert(prog->getType() != Program::TYPE_FRAGMENT); // INTERP
1562 }
1563 }
1564 break;
1565 case OP_ATOM:
1566 {
1567 const bool cctl = i->src(0).getFile() == FILE_MEMORY_GLOBAL;
1568 handleATOM(i);
1569 handleCasExch(i, cctl);
1570 }
1571 break;
1572 case OP_SULDB:
1573 case OP_SULDP:
1574 case OP_SUSTB:
1575 case OP_SUSTP:
1576 case OP_SUREDB:
1577 case OP_SUREDP:
1578 if (targ->getChipset() >= NVISA_GK104_CHIPSET)
1579 handleSurfaceOpNVE4(i->asTex());
1580 break;
1581 default:
1582 break;
1583 }
1584 return true;
1585 }
1586
1587 bool
1588 TargetNVC0::runLegalizePass(Program *prog, CGStage stage) const
1589 {
1590 if (stage == CG_STAGE_PRE_SSA) {
1591 NVC0LoweringPass pass(prog);
1592 return pass.run(prog, false, true);
1593 } else
1594 if (stage == CG_STAGE_POST_RA) {
1595 NVC0LegalizePostRA pass(prog);
1596 return pass.run(prog, false, true);
1597 } else
1598 if (stage == CG_STAGE_SSA) {
1599 NVC0LegalizeSSA pass;
1600 return pass.run(prog, false, true);
1601 }
1602 return false;
1603 }
1604
1605 } // namespace nv50_ir