Home
last modified time | relevance | path

Searched refs:minGPR (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_lowering_nvc0.h75 void findFirstUsesBB(int minGPR, int maxGPR, Instruction *start,
Dnv50_ir_emit_gm107.cpp3853 int minGPR, maxGPR; in findFirstUse() local
3858 minGPR = bari->def(0).rep()->reg.data.id; in findFirstUse()
3859 maxGPR = minGPR + bari->def(0).rep()->reg.size / 4 - 1; in findFirstUse()
3868 src->reg.data.id + src->reg.size / 4 - 1 < minGPR || in findFirstUse()
3875 src->reg.data.id != minGPR) in findFirstUse()
3890 int minGPR, maxGPR; in findFirstDef() local
3900 minGPR = def->reg.data.id; in findFirstDef()
3901 maxGPR = minGPR + def->reg.size / 4 - 1; in findFirstDef()
3906 src->reg.data.id + src->reg.size / 4 - 1 < minGPR || in findFirstDef()
Dnv50_ir_lowering_nvc0.cpp251 int minGPR = texi->def(0).rep()->reg.data.id; in findFirstUses() local
252 int maxGPR = minGPR + texi->def(0).rep()->reg.size / 4 - 1; in findFirstUses()
255 findFirstUsesBB(minGPR, maxGPR, texi->next, texi, uses, visited); in findFirstUses()
260 int minGPR, int maxGPR, Instruction *start, in findFirstUsesBB() argument
283 def->reg.data.id + def->reg.size / 4 - 1 < minGPR || in findFirstUsesBB()
293 src->reg.data.id + src->reg.size / 4 - 1 < minGPR || in findFirstUsesBB()
302 findFirstUsesBB(minGPR, maxGPR, BasicBlock::get(ei.getNode())->getEntry(), in findFirstUsesBB()