Home
last modified time | relevance | path

Searched refs:liveSet (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_ssa.cpp227 bb->liveSet.allocate(allLValues.getSize(), false); in buildLiveSetsPreSSA()
237 bb->liveSet = out->liveSet; in buildLiveSetsPreSSA()
239 bb->liveSet |= out->liveSet; in buildLiveSetsPreSSA()
241 if (!n && !bb->liveSet.marker) in buildLiveSetsPreSSA()
242 bb->liveSet.fill(0); in buildLiveSetsPreSSA()
243 bb->liveSet.marker = true; in buildLiveSetsPreSSA()
261 bb->liveSet.andNot(assigned); in buildLiveSetsPreSSA()
262 bb->liveSet |= usedBeforeAssigned; in buildLiveSetsPreSSA()
268 bb->defSet.allocate(allLValues.getSize(), !bb->liveSet.marker); in buildDefSetsPreSSA()
269 bb->liveSet.marker = true; in buildDefSetsPreSSA()
[all …]
Dnv50_ir_ra.cpp564 bb->liveSet.allocate(func->allLValues.getSize(), false); in buildLiveSets()
574 if (n++ || bb->liveSet.marker) in buildLiveSets()
575 bb->liveSet |= bn->liveSet; in buildLiveSets()
577 bb->liveSet = bn->liveSet; in buildLiveSets()
579 if (!n && !bb->liveSet.marker) in buildLiveSets()
580 bb->liveSet.fill(0); in buildLiveSets()
581 bb->liveSet.marker = true; in buildLiveSets()
585 bb->liveSet.print(); in buildLiveSets()
595 bb->liveSet.set(it->get()->id); in buildLiveSets()
601 bb->liveSet.clr(i->getDef(d)->id); in buildLiveSets()
[all …]
Dnv50_ir_bb.cpp439 BasicBlock::get(bi)->liveSet.marker = false; in buildLiveSets()
449 BasicBlock::get(bi)->liveSet.marker = false; in buildDefSets()
Dnv50_ir.h1117 BitSet liveSet; variable
Dnv50_ir_from_tgsi.cpp4041 updatePrototype(&BasicBlock::get(f->cfg.getRoot())->liveSet, in visit()