Home
last modified time | relevance | path

Searched refs:gotoInst (Results 1 – 4 of 4) sorted by relevance

/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/visa/
H A DCFGStructurizer.cpp55 G4_INST *gotoInst; member in __anon981c03960311::ControlGraph
1051 if (gotoInst && gotoInst->asCFInst()->getUip() == B->getLabel()) in preProcess()
1385 if (gotoInst && !gotoInst->asCFInst()->isBackward()) in getCGBegin()
1587 if (gotoInst && gotoInst->asCFInst()->isBackward()) in getEnclosingANodeHG()
1857 gotoInst->getPredicate() && !gotoInst->asCFInst()->isBackward()) in finalizeHG()
1987 if (gotoInst) in addLandingBB()
2110 if (gotoInst) in addSplitBBAtBegin()
2169 if (gotoInst) in addSplitBBAtEnd()
2735 gotoInst && bb->Succs.size() == 1 && gotoInst->asCFInst()->isBackward(); in constructPST()
3088 if (gotoInst->opcode() == G4_goto && gotoInst->isBackward()) in convertChildren()
[all …]
H A DFlowGraph.cpp1262 G4_INST* gotoInst = builder->createInternalCFInst(retInst->getPredicate(), in handleExit() local
1264 retBB->push_back(gotoInst); in handleExit()
3226 void FlowGraph::convertGotoToJmpi(G4_INST *gotoInst) in convertGotoToJmpi() argument
3228 gotoInst->setOpcode(G4_jmpi); in convertGotoToJmpi()
3229 gotoInst->setSrc(gotoInst->asCFInst()->getUip(), 0); in convertGotoToJmpi()
3230 gotoInst->asCFInst()->setJip(NULL); in convertGotoToJmpi()
3231 gotoInst->asCFInst()->setUip(NULL); in convertGotoToJmpi()
3232 gotoInst->setExecSize(g4::SIMD1); in convertGotoToJmpi()
3233 gotoInst->setOptions(InstOpt_NoOpt | InstOpt_WriteEnable); in convertGotoToJmpi()
3968 G4_INST* gotoInst = bb->back(); in addSIMDEdges() local
[all …]
H A DLoopAnalysis.cpp787 auto gotoInst = pred->back()->asCFInst(); in getPreheader() local
788 auto jipStr = std::string(gotoInst->getJipLabelStr()); in getPreheader()
789 auto uipStr = std::string(gotoInst->getUipLabelStr()); in getPreheader()
H A DFlowGraph.h430 void convertGotoToJmpi(G4_INST *gotoInst);