Searched refs:minGPR (Results 1 – 3 of 3) sorted by relevance
/third_party/mesa3d/src/nouveau/codegen/ |
D | nv50_ir_lowering_nvc0.h | 110 void findFirstUsesBB(int minGPR, int maxGPR, Instruction *start,
|
D | nv50_ir_lowering_nvc0.cpp | 437 int minGPR = texi->def(0).rep()->reg.data.id; in findFirstUses() local 438 int maxGPR = minGPR + texi->def(0).rep()->reg.size / 4 - 1; in findFirstUses() 441 findFirstUsesBB(minGPR, maxGPR, texi->next, texi, uses, visited); in findFirstUses() 446 int minGPR, int maxGPR, Instruction *start, in findFirstUsesBB() argument 469 def->reg.data.id + def->reg.size / 4 - 1 < minGPR || in findFirstUsesBB() 479 src->reg.data.id + src->reg.size / 4 - 1 < minGPR || in findFirstUsesBB() 488 findFirstUsesBB(minGPR, maxGPR, BasicBlock::get(ei.getNode())->getEntry(), in findFirstUsesBB()
|
D | nv50_ir_emit_gm107.cpp | 4121 int minGPR = def->reg.data.id; in doesInsnWriteTo() local 4122 int maxGPR = minGPR + def->reg.size / 4 - 1; in doesInsnWriteTo() 4128 if (val->reg.data.id + val->reg.size / 4 - 1 < minGPR || in doesInsnWriteTo() 4134 if (val->reg.data.id != minGPR) in doesInsnWriteTo() 4139 if (val->reg.data.id != minGPR) in doesInsnWriteTo()
|