Searched refs:WorkSet (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/Analysis/
H A DCodeMetrics.cpp30 static void completeEphemeralValues(SmallVector<const Value *, 16> &WorkSet, argument
34 // Make sure that all of the items in WorkSet are in our EphValues set.
35 EphValues.insert(WorkSet.begin(), WorkSet.end());
40 while (!WorkSet.empty()) {
41 const Value *V = WorkSet.front();
42 WorkSet.erase(WorkSet.begin());
58 WorkSet.push_back(J);
67 SmallVector<const Value *, 16> WorkSet; local
89 SmallVector<const Value *, 16> WorkSet; local
[all...]
H A DValueTracking.cpp402 SmallVector<const Value *, 16> WorkSet(1, I);
412 while (!WorkSet.empty()) {
413 const Value *V = WorkSet.pop_back_val();
428 WorkSet.push_back(*J);
/external/spirv-llvm/lib/SPIRV/
H A DOCLTypeToSPIRV.h70 std::set<Function *> WorkSet; // Functions to be adapted member in class:SPIRV::OCLTypeToSPIRV
H A DOCLTypeToSPIRV.cpp87 while (!WorkSet.empty()) {
88 Function *F = *WorkSet.begin();
89 WorkSet.erase(WorkSet.begin());
110 WorkSet.insert(F);
/external/llvm/lib/CodeGen/
H A DInlineSpiller.cpp1148 SmallPtrSet<MachineDomTreeNode *, 8> WorkSet; local
1162 // node will be added to the WorkSet, which will contain all the possible
1174 /// If we see the Node already in WorkSet, the path from the Node to
1177 } else if (WorkSet.count(Node)) {
1193 WorkSet.insert(NodesOnPath.begin(), NodesOnPath.end());
1198 // Sort the nodes in WorkSet in top-down order and save the nodes
1208 if (WorkSet.count(Child))
1212 assert(Orders.size() == WorkSet.size() &&
1213 "Orders have different size with WorkSet");
1359 /// instruction into a WorkSet
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DInlineSpiller.cpp360 SmallPtrSet<VNInfo*, 8> WorkSet; local
364 WorkSet.erase(SVI->first);
455 if (WorkSet.insert(DepSVI->first))

Completed in 201 milliseconds