Home
last modified time | relevance | path

Searched refs:allLValues (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_ssa.cpp224 BitSet usedBeforeAssigned(allLValues.getSize(), true); in buildLiveSetsPreSSA()
225 BitSet assigned(allLValues.getSize(), true); in buildLiveSetsPreSSA()
227 bb->liveSet.allocate(allLValues.getSize(), false); in buildLiveSetsPreSSA()
268 bb->defSet.allocate(allLValues.getSize(), !bb->liveSet.marker); in buildDefSetsPreSSA()
343 for (var = 0; var < allLValues.getSize(); ++var) { in convertToSSA()
344 if (!allLValues.get(var)) in convertToSSA()
346 lval = reinterpret_cast<Value *>(allLValues.get(var))->asLValue(); in convertToSSA()
407 stack = new Stack[func->allLValues.getSize()]; in RenamePass()
Dnv50_ir_inlines.h418 assert((unsigned int)id < (unsigned int)allLValues.getSize()); in getLValue()
419 return reinterpret_cast<LValue *>(allLValues.get(id)); in getLValue()
Dnv50_ir.h1168 inline void add(LValue *lval, int& id) { allLValues.insert(lval, id); } in add()
1202 ArrayList allLValues; variable
Dnv50_ir_ra.cpp564 bb->liveSet.allocate(func->allLValues.getSize(), false); in buildLiveSets()
924 for (ArrayList::Iterator it = func->allLValues.iterator(); in coalesceValues()
1461 nodeCount = func->allLValues.getSize(); in allocateRegisters()
1466 LValue *lval = reinterpret_cast<LValue *>(func->allLValues.get(i)); in allocateRegisters()
1522 for (ArrayList::Iterator it = func->allLValues.iterator(); in cleanup()
Dnv50_ir_print.cpp784 for (ArrayList::Iterator it = allLValues.iterator(); !it.end(); it.next()) { in printLiveIntervals()
Dnv50_ir_bb.cpp67 for (ArrayList::Iterator it = allLValues.iterator(); !it.end(); it.next()) in ~Function()