Searched refs:CSEMap (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/CodeGen/
H A DMachineLICM.cpp104 DenseMap<unsigned, std::vector<const MachineInstr*> > CSEMap; member in class:__anon25767::MachineLICM
146 CI = CSEMap.begin(), CE = CSEMap.end(); CI != CE; ++CI)
148 CSEMap.clear();
377 // CSEMap is initialized for loop header when the first instruction is
382 CSEMap.clear();
1303 CI = CSEMap.find(Opcode);
1304 if (CI != CSEMap.end())
1309 CSEMap.insert(std::make_pair(Opcode, CSEMIs));
1329 if (CI == CSEMap
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp741 assert(N->getOpcode() != ISD::DELETED_NODE && "DELETED_NODE in CSEMap!");
742 assert(N->getOpcode() != ISD::EntryToken && "EntryToken in CSEMap!");
743 Erased = CSEMap.RemoveNode(N);
770 SDNode *Existing = CSEMap.GetOrInsertNode(N);
803 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
821 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
838 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
981 CSEMap.clear();
1181 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
1187 CSEMap
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp2561 SmallDenseMap<Instruction *, Instruction *, 4, CSEDenseMapInfo> CSEMap; local
2572 if (Instruction *V = CSEMap.lookup(In)) {
2583 CSEMap[In] = In;
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h193 /// CSEMap - This structure is used to memoize nodes, automatically performing
195 FoldingSet<SDNode> CSEMap; member in class:llvm::SelectionDAG

Completed in 114 milliseconds