Searched refs:WorkQ (Results 1 – 6 of 6) sorted by relevance
83 SetQueue<NodeId> &WorkQ) { in scanInstr() argument90 WorkQ.push_back(RA.Id); in scanInstr()95 SetQueue<NodeId> &WorkQ) { in processDef() argument99 WorkQ.push_back(UA.Id); in processDef()106 SetQueue<NodeId> &WorkQ) { in processUse() argument109 WorkQ.push_back(DA.Id); in processUse()127 SetQueue<NodeId> WorkQ; in collect() local130 scanInstr(IA, WorkQ); in collect()132 while (!WorkQ.empty()) { in collect()133 NodeId N = WorkQ.pop_front(); in collect()[all …]
59 void scanInstr(NodeAddr<InstrNode*> IA, SetQueue<NodeId> &WorkQ);60 void processDef(NodeAddr<DefNode*> DA, SetQueue<NodeId> &WorkQ);61 void processUse(NodeAddr<UseNode*> UA, SetQueue<NodeId> &WorkQ);
322 std::queue<RegisterSubReg> WorkQ; in isScalarPred() local323 WorkQ.push(PredReg); in isScalarPred()325 while (!WorkQ.empty()) { in isScalarPred()326 RegisterSubReg PR = WorkQ.front(); in isScalarPred()327 WorkQ.pop(); in isScalarPred()355 WorkQ.push(RegisterSubReg(MO.getReg())); in isScalarPred()
289 UVect WorkQ; in partitionRegisters() local290 WorkQ.push_back(R); in partitionRegisters()291 for (unsigned i = 0; i < WorkQ.size(); ++i) { in partitionRegisters()292 unsigned T = WorkQ[i]; in partitionRegisters()299 append_range(WorkQ, Asc); in partitionRegisters()574 LoopVector WorkQ; in collectIndRegs() local576 append_range(WorkQ, *MLI); in collectIndRegs()577 for (unsigned i = 0; i < WorkQ.size(); ++i) in collectIndRegs()578 append_range(WorkQ, *WorkQ[i]); in collectIndRegs()581 for (MachineLoop *L : WorkQ) { in collectIndRegs()
232 std::vector<Node> WorkQ; in color() local236 WorkQ.push_back(N); in color()239 for (Node N : WorkQ) { in color()1139 SetVector<SDNode*> WorkQ; in selectVectorConstants() local1143 WorkQ.insert(N); in selectVectorConstants()1144 for (unsigned i = 0; i != WorkQ.size(); ++i) { in selectVectorConstants()1145 SDNode *W = WorkQ[i]; in selectVectorConstants()1149 WorkQ.insert(W->getOperand(j).getNode()); in selectVectorConstants()
627 std::deque<Instruction *> WorkQ = {In}; in getUpwardDeps() local628 while (!WorkQ.empty()) { in getUpwardDeps()629 Instruction *D = WorkQ.front(); in getUpwardDeps()630 WorkQ.pop_front(); in getUpwardDeps()635 WorkQ.push_back(I); in getUpwardDeps()