Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/nv50/codegen/
Dnv50_ir_ssa.cpp223 BitSet usedBeforeAssigned(allLValues.getSize(), true); in buildLiveSetsPreSSA()
224 BitSet assigned(allLValues.getSize(), true); in buildLiveSetsPreSSA()
226 bb->liveSet.allocate(allLValues.getSize(), false); in buildLiveSetsPreSSA()
267 bb->defSet.allocate(allLValues.getSize(), !bb->liveSet.marker); in buildDefSetsPreSSA()
342 for (var = 0; var < allLValues.getSize(); ++var) { in convertToSSA()
343 if (!allLValues.get(var)) in convertToSSA()
345 lval = reinterpret_cast<Value *>(allLValues.get(var))->asLValue(); in convertToSSA()
406 stack = new Stack[func->allLValues.getSize()]; in RenamePass()
Dnv50_ir_inlines.h386 assert((unsigned int)id < (unsigned int)allLValues.getSize()); in getLValue()
387 return reinterpret_cast<LValue *>(allLValues.get(id)); in getLValue()
Dnv50_ir.h956 inline void add(LValue *lval, int& id) { allLValues.insert(lval, id); } in add()
990 ArrayList allLValues; variable
Dnv50_ir_ra.cpp459 bb->liveSet.allocate(func->allLValues.getSize(), false); in buildLiveSets()
787 for (ArrayList::Iterator it = func->allLValues.iterator(); in coalesceValues()
1309 nodeCount = func->allLValues.getSize(); in allocateRegisters()
1314 LValue *lval = reinterpret_cast<LValue *>(func->allLValues.get(i)); in allocateRegisters()
1355 for (ArrayList::Iterator it = func->allLValues.iterator(); in cleanup()
Dnv50_ir_print.cpp643 for (ArrayList::Iterator it = allLValues.iterator(); !it.end(); it.next()) { in printLiveIntervals()
Dnv50_ir_bb.cpp63 for (ArrayList::Iterator it = allLValues.iterator(); !it.end(); it.next()) in ~Function()