/external/llvm/lib/Transforms/InstCombine/ |
InstCombineWorklist.h | 1 //===- InstCombineWorklist.h - Worklist for the InstCombine pass ----------===// 23 /// InstCombineWorklist - This is the worklist management logic for 26 SmallVector<Instruction*, 256> Worklist; 34 bool isEmpty() const { return Worklist.empty(); } 36 /// Add - Add the specified instruction to the worklist if it isn't already 39 if (WorklistMap.insert(std::make_pair(I, Worklist.size())).second) { 41 Worklist.push_back(I); 51 /// which should only be done when the worklist is empty and when the group 54 assert(Worklist.empty() && "Worklist must be empty to add initial group") [all...] |
InstCombine.h | 56 /// to the instcombine worklist. 59 InstCombineWorklist &Worklist; 61 InstCombineIRInserter(InstCombineWorklist &WL) : Worklist(WL) {} 66 Worklist.Add(I); 78 /// Worklist - All of the instructions that need to be simplified. 79 InstCombineWorklist Worklist; 82 /// instructions into the worklist when they are created. 233 // in the program. Add the new instruction to the worklist. 240 Worklist.Add(New); 254 // we add all uses of I to the worklist, replace all uses of I with the ne [all...] |
InstCombineLoadStoreAlloca.cpp | 30 SmallVector<Instruction *, 4> Worklist, DeadStores; 31 Worklist.push_back(&AI); 33 Instruction *PI = Worklist.pop_back_val(); 44 Worklist.push_back(I); 82 } while (!Worklist.empty()); 524 Worklist.Add(U); // Dropped a use.
|
InstructionCombining.cpp | 20 // This is a simple worklist driven algorithm. [all...] |
/external/llvm/lib/Analysis/ |
CaptureTracking.cpp | 79 SmallVector<Use*, Threshold> Worklist; 93 Worklist.push_back(U); 96 while (!Worklist.empty()) { 97 Use *U = Worklist.pop_back_val(); 149 Worklist.push_back(U);
|
BasicAliasAnalysis.cpp | 577 SmallVector<const Value *, 16> Worklist; 578 Worklist.push_back(Loc.Ptr); 580 const Value *V = GetUnderlyingObject(Worklist.pop_back_val(), TD); 604 Worklist.push_back(SI->getTrueValue()); 605 Worklist.push_back(SI->getFalseValue()); 618 Worklist.push_back(PN->getIncomingValue(i)); 626 } while (!Worklist.empty() && --MaxLookup); 629 return Worklist.empty(); [all...] |
MemoryDependenceAnalysis.cpp | 699 // determine what is dirty, seeding our initial DirtyBlocks worklist. 799 // the predecessors of this block. Add them to our worklist. [all...] |
InstructionSimplify.cpp | [all...] |
/external/llvm/include/llvm/Analysis/ |
DominatorInternals.h | 57 typename GraphT::ChildIteratorType>, 32> Worklist; 58 Worklist.push_back(std::make_pair(V, GraphT::child_begin(V))); 59 while (!Worklist.empty()) { 60 typename GraphT::NodeType* BB = Worklist.back().first; 61 typename GraphT::ChildIteratorType NextSucc = Worklist.back().second; 83 // If we are done with this block, remove it from the worklist. 85 Worklist.pop_back(); 90 ++Worklist.back().second; 99 Worklist.push_back(std::make_pair(Succ, GraphT::child_begin(Succ)));
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
LegalizeTypes.h | 113 /// Worklist - This defines a worklist of nodes to process. In order to be 114 /// pushed onto this worklist, all operands of a node must have already been 116 SmallVector<SDNode*, 128> Worklist; [all...] |
ScheduleDAGSDNodes.cpp | 293 SmallVector<SDNode*, 64> Worklist; 295 Worklist.push_back(DAG->getRoot().getNode()); 299 while (!Worklist.empty()) { 300 SDNode *NI = Worklist.pop_back_val(); 302 // Add all operands to the worklist unless they've already been added. 305 Worklist.push_back(NI->getOperand(i).getNode());
|
SelectionDAGISel.cpp | 507 SmallVector<SDNode*, 128> Worklist; 509 Worklist.push_back(CurDAG->getRoot().getNode()); 515 SDNode *N = Worklist.pop_back_val(); 521 // Otherwise, add all chain operands to the worklist. 524 Worklist.push_back(N->getOperand(i).getNode()); 543 } while (!Worklist.empty()); [all...] |
SelectionDAG.cpp | 534 // Add all obviously-dead nodes to the DeadNodes worklist. 550 // Process the worklist, deleting the nodes and adding their uses to the 551 // worklist. [all...] |
DAGCombiner.cpp | 65 // Worklist of all of the nodes that need to be simplified. 67 // This has the semantics that when adding to the worklist, 73 // a set and a vector to maintain our worklist. 75 // The set contains the items on the worklist, but does not 110 /// removeFromWorkList - remove all instances of N from the worklist. 327 /// nodes from the worklist. 625 // Push the new nodes and any users onto the worklist 638 // Nodes can be reintroduced into the worklist. Make sure we do not 651 // are deleted, make sure to remove them from our worklist. 655 // Push the new node and any (possibly new) users onto the worklist [all...] |
/external/llvm/lib/Transforms/Scalar/ |
SimplifyCFGPass.cpp | 112 SmallVector<BasicBlock*, 128> Worklist; 113 Worklist.push_back(BB); 116 BB = Worklist.pop_back_val(); 168 Worklist.push_back(*SI); 169 } while (!Worklist.empty());
|
LoopUnswitch.cpp | 181 /// RemoveLoopFromWorklist - If the specified loop is on the loop worklist, 212 void SimplifyCode(std::vector<Instruction*> &Worklist, Loop *L); 214 std::vector<Instruction*> &Worklist, Loop *l); [all...] |
GVN.cpp | [all...] |
LoopStrengthReduce.cpp | [all...] |
ObjCARC.cpp | 614 SmallVector<const Value *, 4> Worklist; 615 Worklist.push_back(BlockPtr); 617 const Value *V = Worklist.pop_back_val(); 637 Worklist.push_back(UUser); 655 } while (!Worklist.empty()); [all...] |
/external/llvm/lib/Transforms/IPO/ |
MergeFunctions.cpp | 621 std::vector<WeakVH> Worklist; 622 Deferred.swap(Worklist); 625 DEBUG(dbgs() << "size of worklist: " << Worklist.size() << '\n'); 629 for (std::vector<WeakVH>::iterator I = Worklist.begin(), 630 E = Worklist.end(); I != E; ++I) { 644 for (std::vector<WeakVH>::iterator I = Worklist.begin(), 645 E = Worklist.end(); I != E; ++I) { 852 std::vector<Value *> Worklist; 853 Worklist.push_back(V) [all...] |
/external/llvm/lib/Transforms/Utils/ |
PromoteMemoryToRegister.cpp | 290 std::vector<RenamePassData> &Worklist); 492 SmallVector<DomTreeNode*, 32> Worklist; 496 Worklist.push_back(Root); 498 while (!Worklist.empty()) { 499 DomTreeNode *Node = Worklist.pop_back_val(); 504 Worklist.push_back(*CI); 558 // RenamePass may add new worklist entries. 680 // where the def is live. Blocks are added to the worklist if we need to 727 // live into it to. Add the preds to the worklist unless they are a 736 // Otherwise it is, add to the worklist [all...] |
SimplifyCFG.cpp | [all...] |