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.h77 void findFirstUsesBB(int minGPR, int maxGPR, Instruction *start,
Dnv50_ir_emit_gm107.cpp3959 int minGPR, maxGPR; in findFirstUse() local
3964 minGPR = bari->def(0).rep()->reg.data.id; in findFirstUse()
3965 maxGPR = minGPR + bari->def(0).rep()->reg.size / 4 - 1; in findFirstUse()
3974 src->reg.data.id + src->reg.size / 4 - 1 < minGPR || in findFirstUse()
3981 src->reg.data.id != minGPR) in findFirstUse()
3996 int minGPR, maxGPR; in findFirstDef() local
4006 minGPR = def->reg.data.id; in findFirstDef()
4007 maxGPR = minGPR + def->reg.size / 4 - 1; in findFirstDef()
4012 src->reg.data.id + src->reg.size / 4 - 1 < minGPR || in findFirstDef()
Dnv50_ir_lowering_nvc0.cpp388 int minGPR = texi->def(0).rep()->reg.data.id; in findFirstUses() local
389 int maxGPR = minGPR + texi->def(0).rep()->reg.size / 4 - 1; in findFirstUses()
392 findFirstUsesBB(minGPR, maxGPR, texi->next, texi, uses, visited); in findFirstUses()
397 int minGPR, int maxGPR, Instruction *start, in findFirstUsesBB() argument
420 def->reg.data.id + def->reg.size / 4 - 1 < minGPR || in findFirstUsesBB()
430 src->reg.data.id + src->reg.size / 4 - 1 < minGPR || in findFirstUsesBB()
439 findFirstUsesBB(minGPR, maxGPR, BasicBlock::get(ei.getNode())->getEntry(), in findFirstUsesBB()