X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fgallium%2Fdrivers%2Fnv50%2Fcodegen%2Fnv50_ir_bb.cpp;h=ebfb07a2b3ecbac66f9d6c18ebe750af1a879103;hb=15ce0f76e2e014374a292550505f58da88333fb7;hp=7c8f2e97fb5b6720478a8c9056d4d0ed10e637e3;hpb=3e9150cd961b2399e402e940400deae11ec7852f;p=mesa.git diff --git a/src/gallium/drivers/nv50/codegen/nv50_ir_bb.cpp b/src/gallium/drivers/nv50/codegen/nv50_ir_bb.cpp index 7c8f2e97fb5..ebfb07a2b3e 100644 --- a/src/gallium/drivers/nv50/codegen/nv50_ir_bb.cpp +++ b/src/gallium/drivers/nv50/codegen/nv50_ir_bb.cpp @@ -24,8 +24,9 @@ namespace nv50_ir { -Function::Function(Program *p, const char *fnName) +Function::Function(Program *p, const char *fnName, uint32_t label) : call(this), + label(label), name(fnName), prog(p) { @@ -40,11 +41,17 @@ Function::Function(Program *p, const char *fnName) binPos = 0; binSize = 0; + stackPtr = NULL; + tlsBase = 0; + tlsSize = 0; + prog->add(this, id); } Function::~Function() { + prog->del(this, id); + if (domTree) delete domTree; if (bbArray) @@ -402,19 +409,29 @@ Function::setExit(BasicBlock *bb) unsigned int Function::orderInstructions(ArrayList &result) { - Iterator *iter; - for (iter = cfg.iteratorCFG(); !iter->end(); iter->next()) { + result.clear(); + + for (IteratorRef it = cfg.iteratorCFG(); !it->end(); it->next()) { BasicBlock *bb = - BasicBlock::get(reinterpret_cast(iter->get())); + BasicBlock::get(reinterpret_cast(it->get())); for (Instruction *insn = bb->getFirst(); insn; insn = insn->next) result.insert(insn, insn->serial); } - cfg.putIterator(iter); return result.getSize(); } +void +Function::buildLiveSets() +{ + for (unsigned i = 0; i <= loopNestingBound; ++i) + buildLiveSetsPreSSA(BasicBlock::get(cfg.getRoot()), cfg.nextSequence()); + + for (ArrayList::Iterator bi = allBBlocks.iterator(); !bi.end(); bi.next()) + BasicBlock::get(bi)->liveSet.marker = false; +} + void Function::buildDefSets() { @@ -436,10 +453,10 @@ Pass::run(Program *prog, bool ordered, bool skipPhi) bool Pass::doRun(Program *prog, bool ordered, bool skipPhi) { - for (ArrayList::Iterator fi = prog->allFuncs.iterator(); - !fi.end(); fi.next()) { - Function *fn = reinterpret_cast(fi.get()); - if (!doRun(fn, ordered, skipPhi)) + for (IteratorRef it = prog->calls.iteratorDFS(false); + !it->end(); it->next()) { + Graph::Node *n = reinterpret_cast(it->get()); + if (!doRun(Function::get(n), ordered, skipPhi)) return false; } return !err; @@ -456,7 +473,7 @@ Pass::run(Function *func, bool ordered, bool skipPhi) bool Pass::doRun(Function *func, bool ordered, bool skipPhi) { - Iterator *bbIter; + IteratorRef bbIter; BasicBlock *bb; Instruction *insn, *next; @@ -477,7 +494,7 @@ Pass::doRun(Function *func, bool ordered, bool skipPhi) break; } } - func->cfg.putIterator(bbIter); + return !err; } @@ -493,10 +510,9 @@ Function::printCFGraph(const char *filePath) fprintf(out, "digraph G {\n"); - Iterator *iter; - for (iter = cfg.iteratorDFS(); !iter->end(); iter->next()) { + for (IteratorRef it = cfg.iteratorDFS(); !it->end(); it->next()) { BasicBlock *bb = BasicBlock::get( - reinterpret_cast(iter->get())); + reinterpret_cast(it->get())); int idA = bb->getId(); for (Graph::EdgeIterator ei = bb->cfg.outgoing(); !ei.end(); ei.next()) { int idB = BasicBlock::get(ei.getNode())->getId(); @@ -522,7 +538,6 @@ Function::printCFGraph(const char *filePath) } } } - cfg.putIterator(iter); fprintf(out, "}\n"); fclose(out);