HomeSort by: relevance | last modified time | path
    Searched defs:WorkSet (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUPerfHintAnalysis.cpp 143 SmallSet<const Value *, 32> WorkSet;
147 WorkSet.insert(MO);
150 while (!WorkSet.empty()) {
151 const Value *V = *WorkSet.begin();
152 WorkSet.erase(*WorkSet.begin());
168 WorkSet.insert(P);
170 WorkSet.insert(GEP->getOperand(I));
175 WorkSet.insert(U->getOperand(0));
180 WorkSet.insert(BO->getOperand(0))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
InlineSpiller.cpp 1314 SmallPtrSet<MachineDomTreeNode *, 8> WorkSet;
1328 // node will be added to the WorkSet, which will contain all the possible
1340 /// If we see the Node already in WorkSet, the path from the Node to
1343 } else if (WorkSet.count(Node)) {
1359 WorkSet.insert(NodesOnPath.begin(), NodesOnPath.end());
1364 // Sort the nodes in WorkSet in top-down order and save the nodes
1371 if (WorkSet.count(Child))
1375 assert(Orders.size() == WorkSet.size() &&
1376 "Orders have different size with WorkSet");
1520 /// instruction into a WorkSet. The nodes in WorkSet are the candidate place
    [all...]

Completed in 20 milliseconds