Searched refs:CSEMap (Results 1 – 6 of 6) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/ |
H A D | CSEInfo.cpp | 103 bool Removed = CSEMap.RemoveNode(UMI); in invalidateUniqueMachineInstr() 112 auto *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos); in getNodeIfExists() 130 CSEMap.InsertNode(UMI, InsertPos); in insertNode() 132 MaybeNewNode = CSEMap.GetOrInsertNode(UMI); in insertNode() 251 CSEMap.clear(); in releaseMemory() 273 CSEMap.FindNodeOrInsertPos(TmpID, InsertPos); in verify() 282 for (const UniqueMachineInstr &UMI : CSEMap) { in verify()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
H A D | MachineLICM.cpp | 155 DenseMap<unsigned, std::vector<MachineInstr *>> CSEMap; member in __anondcd5ce190111::MachineLICMBase 189 CSEMap.clear(); in releaseMemory() 390 CSEMap.clear(); in runOnMachineFunction() 1291 CSEMap[MI.getOpcode()].push_back(&MI); in InitCSEMap() 1315 if (CI == CSEMap.end() || MI->isImplicitDef()) in EliminateCSE() 1375 CSEMap.find(Opcode); in MayCSE() 1378 if (CI == CSEMap.end() || MI->isImplicitDef()) in MayCSE() 1430 CSEMap.find(Opcode); in Hoist() 1452 if (CI != CSEMap.end()) in Hoist() 1455 CSEMap[Opcode].push_back(MI); in Hoist()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAG.cpp | 1020 Erased = CSEMap.RemoveNode(N); in RemoveNodeFromCSEMaps() 1046 SDNode *Existing = CSEMap.GetOrInsertNode(N); in AddModifiedNodeToCSEMaps() 1182 SDNode *N = CSEMap.FindNodeOrInsertPos(ID, InsertPos); in FindNodeOrInsertPos() 1197 SDNode *N = CSEMap.FindNodeOrInsertPos(ID, InsertPos); in FindNodeOrInsertPos() 1224 CSEMap.clear(); in clear() 1457 CSEMap.InsertNode(N, IP); in getConstant() 1514 CSEMap.InsertNode(N, IP); in getConstantFP() 1573 CSEMap.InsertNode(N, IP); in getGlobalAddress() 1588 CSEMap.InsertNode(N, IP); in getFrameIndex() 1607 CSEMap.InsertNode(N, IP); in getJumpTable() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/ |
H A D | CSEInfo.h | 74 FoldingSet<UniqueMachineInstr> CSEMap; variable
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
H A D | SelectionDAG.h | 256 FoldingSet<SDNode> CSEMap;
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/ |
H A D | LoopVectorize.cpp | 3813 SmallDenseMap<Instruction *, Instruction *, 4, CSEDenseMapInfo> CSEMap; in cse() local 3822 if (Instruction *V = CSEMap.lookup(In)) { in cse() 3828 CSEMap[In] = In; in cse()
|