Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/nv50/codegen/
Dnv50_ir_ssa.cpp226 bb->liveSet.allocate(allLValues.getSize(), false); in buildLiveSetsPreSSA()
236 bb->liveSet = out->liveSet; in buildLiveSetsPreSSA()
238 bb->liveSet |= out->liveSet; in buildLiveSetsPreSSA()
240 if (!n && !bb->liveSet.marker) in buildLiveSetsPreSSA()
241 bb->liveSet.fill(0); in buildLiveSetsPreSSA()
242 bb->liveSet.marker = true; in buildLiveSetsPreSSA()
260 bb->liveSet.andNot(assigned); in buildLiveSetsPreSSA()
261 bb->liveSet |= usedBeforeAssigned; in buildLiveSetsPreSSA()
267 bb->defSet.allocate(allLValues.getSize(), !bb->liveSet.marker); in buildDefSetsPreSSA()
268 bb->liveSet.marker = true; in buildDefSetsPreSSA()
[all …]
Dnv50_ir_ra.cpp459 bb->liveSet.allocate(func->allLValues.getSize(), false); in buildLiveSets()
469 if (n++ || bb->liveSet.marker) in buildLiveSets()
470 bb->liveSet |= bn->liveSet; in buildLiveSets()
472 bb->liveSet = bn->liveSet; in buildLiveSets()
474 if (!n && !bb->liveSet.marker) in buildLiveSets()
475 bb->liveSet.fill(0); in buildLiveSets()
476 bb->liveSet.marker = true; in buildLiveSets()
480 bb->liveSet.print(); in buildLiveSets()
490 bb->liveSet.set(it->get()->id); in buildLiveSets()
496 bb->liveSet.clr(i->getDef(d)->id); in buildLiveSets()
[all …]
Dnv50_ir_bb.cpp432 BasicBlock::get(bi)->liveSet.marker = false; in buildLiveSets()
442 BasicBlock::get(bi)->liveSet.marker = false; in buildDefSets()
Dnv50_ir.h905 BitSet liveSet; variable
Dnv50_ir_from_tgsi.cpp2396 updatePrototype(&BasicBlock::get(f->cfg.getRoot())->liveSet, in visit()