Home
last modified time | relevance | path

Searched refs:getInsts (Results 1 – 16 of 16) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceVariableSplitting.cpp80 for (const Inst &Instr : Node->getInsts()) { in reset()
317 Node->getInsts().insert(IterNext, Mov); in handleSimpleVarAssign()
342 Node->getInsts().insert(IterNext, Mov); in handleSimpleVarAssign()
349 Node->getInsts().insert(IterNext, Mov); in handleSimpleVarAssign()
367 Node->getInsts().insert(IterCur, Mov); in handlePhi()
401 Node->getInsts().insert(IterCur, Mov); in handleGeneralInst()
413 Node->getInsts().insert(IterNext, Mov); in handleGeneralInst()
418 Node->getInsts().insert(IterNext, Mov); in handleGeneralInst()
521 auto &Insts = Node->getInsts(); in splitBlockLocalVariables()
DIceCfg.cpp83 for (Inst &I : Node->getInsts()) { in getFunctionNameAndSize()
521 for (Inst &Instr : Node->getInsts()) { in localCSE()
583 if (PreHeader == nullptr || PreHeader->getInsts().size() == 0) { in loopInvariantCodeMotion()
587 auto &Insts = PreHeader->getInsts(); in loopInvariantCodeMotion()
610 CfgVector<std::reference_wrapper<Inst>> Insts(Node->getInsts().begin(), in findLoopInvariantInstructions()
611 Node->getInsts().end()); in findLoopInvariantInstructions()
644 Node->getInsts().remove(Inst); in findLoopInvariantInstructions()
749 auto Current = Node->getInsts().begin(); in floatConstantCSE()
750 auto End = Node->getInsts().end(); in floatConstantCSE()
776 auto &Insts = Node->getInsts(); in floatConstantCSE()
[all …]
DIceCfgNode.cpp325 for (Inst &I : Pred->getInsts()) in splitIncomingEdge()
915 for (Inst &I : Pred->getInsts()) { in contractIfEmpty()
1237 auto *Last = &getInsts().back(); in shortCircuit()
1256 for (auto &Inst : reverse_range(getInsts())) { in shortCircuit()
1284 for (auto &Inst : getInsts()) { in shortCircuit()
1297 while (It != getInsts().end()) { in shortCircuit()
1321 NewNode->getInsts().splice(NewNode->getInsts().begin(), getInsts(), It, in shortCircuit()
1322 getInsts().end()); in shortCircuit()
DIceCfgNode.h77 InstList &getInsts() { return Insts; } in getInsts() function
79 const InstList &getInsts() const { return Insts; } in getInsts() function
DIceTargetLowering.cpp69 End = getNode()->getInsts().end(); in init()
75 Begin = getNode()->getInsts().begin(); in rewind()
83 getNode()->getInsts().insert(Next, Instr); in insert()
519 Process(Node->getInsts()); in getInstructionsInRange()
661 Node->getInsts().insert(instToIterator(Info.FirstUse), NewInst); in postRegallocSplitting()
666 Node->getInsts().insertAfter(instToIterator(Info.LastDef), NewInst); in postRegallocSplitting()
742 for (Inst &Instr : Node->getInsts()) { in getVarStackSlotParams()
DIceRegAlloc.cpp148 for (Inst &I : Node->getInsts()) { in initForGlobal()
220 for (Inst &Instr : Node->getInsts()) { in initForInfOnly()
406 InstList &Insts = Node->getInsts(); in addSpillFill()
DIceOperand.cpp424 for (Inst &I : Node->getInsts()) { in addNode()
DIceASanInstrumentation.cpp479 Func->getEntryNode()->getInsts().push_front(Call); in instrumentStart()
DIceTargetLoweringX8664.cpp185 for (Inst &Instr : Node->getInsts()) { in init()
564 auto E = Node->getInsts().end(); in findRMW()
565 auto I1 = E, I2 = E, I3 = Node->getInsts().begin(); in findRMW()
636 Node->getInsts().insert(I3, BeaconDef); in findRMW()
640 Node->getInsts().insert(I3, RMW); in findRMW()
1149 InstList &Insts = Node->getInsts(); in addEpilog()
DIceTargetLoweringX8632.cpp176 for (Inst &Instr : Node->getInsts()) { in init()
555 auto E = Node->getInsts().end(); in findRMW()
556 auto I1 = E, I2 = E, I3 = Node->getInsts().begin(); in findRMW()
627 Node->getInsts().insert(I3, BeaconDef); in findRMW()
631 Node->getInsts().insert(I3, RMW); in findRMW()
1167 InstList &Insts = Node->getInsts(); in addEpilog()
DIceTargetLoweringMIPS32.cpp209 for (Inst &Instr : Node->getInsts()) { in unsetIfNonLeafFunc()
1388 for (Inst &Instr : Node->getInsts()) { in lowerArguments()
1721 InstList &Insts = Node->getInsts(); in addEpilog()
5958 for (Inst &Instr : Node->getInsts()) { in recordProducers()
DPNaClTranslator.cpp2142 if (Node->getInsts().empty()) { in ExitBlock()
DIceTargetLoweringARM32.cpp1536 InstList &Insts = Node->getInsts(); in addEpilog()
6705 for (Inst &Instr : Node->getInsts()) { in recordProducers()
/external/swiftshader/src/Reactor/
DOptimizer.cpp133 Ice::InstList &instList = entryBlock->getInsts(); in propagateAlloca()
204 Ice::InstList &instList = entryBlock->getInsts(); in performScalarReplacementOfAggregates()
305 for(Ice::Inst &inst : Ice::reverse_range(basicBlock->getInsts())) in eliminateDeadCode()
326 for(Ice::Inst &alloca : entryBlock->getInsts()) in eliminateUnitializedLoads()
405 for(Ice::Inst &inst : block->getInsts()) in optimizeSingleBasicBlockLoadsStores()
474 for(Ice::Inst &instruction : basicBlock->getInsts()) in analyzeUses()
764 for(auto &inst : basicBlock->getInsts()) in collectDiagnostics()
DSubzeroReactor.cpp106 function->getEntryNode()->getInsts().push_front(alloca); in allocateStackVariable()
462 if(::basicBlock->getInsts().empty() || ::basicBlock->getInsts().back().getKind() != Ice::Inst::Ret) in finalizeFunction()
1095 ::function->getEntryNode()->getInsts().push_front(alloca); in allocateStackVariable()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMLowOverheadLoops.cpp117 SmallVectorImpl<PredicatedMI> &getInsts() { return Insts; } in getInsts() function in __anon09606cab0111::VPTBlock
340 SmallVectorImpl<PredicatedMI> &Insts = Block.getInsts(); in ValidateTailPredicate()
903 SmallVectorImpl<PredicatedMI> &Insts = Block.getInsts(); in ConvertVPTBlocks()