Home
last modified time | relevance | path

Searched refs:CSEMap (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/llvm/lib/CodeGen/GlobalISel/
H A DCSEInfo.cpp104 bool Removed = CSEMap.RemoveNode(UMI); in invalidateUniqueMachineInstr()
113 auto *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos); in getNodeIfExists()
131 CSEMap.InsertNode(UMI, InsertPos); in insertNode()
133 MaybeNewNode = CSEMap.GetOrInsertNode(UMI); in insertNode()
252 CSEMap.clear(); in releaseMemory()
283 CSEMap.FindNodeOrInsertPos(TmpID, InsertPos); in verify()
293 for (const UniqueMachineInstr &UMI : CSEMap) { in verify()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DMachineLICM.cpp155 DenseMap<unsigned, std::vector<MachineInstr *>> CSEMap; member in __anonfbf8dede0111::MachineLICMBase
189 CSEMap.clear(); in releaseMemory()
392 CSEMap.clear(); in runOnMachineFunction()
1306 CSEMap[MI.getOpcode()].push_back(&MI); in InitCSEMap()
1330 if (CI == CSEMap.end() || MI->isImplicitDef()) in EliminateCSE()
1390 CSEMap.find(Opcode); in MayCSE()
1393 if (CI == CSEMap.end() || MI->isImplicitDef()) in MayCSE()
1445 CSEMap.find(Opcode); in Hoist()
1467 if (CI != CSEMap.end()) in Hoist()
1470 CSEMap[Opcode].push_back(MI); in Hoist()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1323 CSEMap.clear(); in clear()
1674 CSEMap.InsertNode(N, IP); in getGlobalAddress()
1689 CSEMap.InsertNode(N, IP); in getFrameIndex()
1708 CSEMap.InsertNode(N, IP); in getJumpTable()
1735 CSEMap.InsertNode(N, IP); in getConstantPool()
1762 CSEMap.InsertNode(N, IP); in getConstantPool()
1779 CSEMap.InsertNode(N, IP); in getTargetIndex()
1793 CSEMap.InsertNode(N, IP); in getBasicBlock()
2044 CSEMap.InsertNode(N, IP); in getVectorShuffle()
2071 CSEMap.InsertNode(N, IP); in getRegister()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/GlobalISel/
H A DCSEInfo.h74 FoldingSet<UniqueMachineInstr> CSEMap; variable
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Ddag-ReplaceAllUsesOfValuesWith.ll8 …lvm::SDNode*): Assertion `N->getOpcode() != ISD::DELETED_NODE && "DELETED_NODE in CSEMap!"' failed.
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h260 FoldingSet<SDNode> CSEMap;
/llvm-project-15.0.7/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp3402 SmallDenseMap<Instruction *, Instruction *, 4, CSEDenseMapInfo> CSEMap; in cse() local
3409 if (Instruction *V = CSEMap.lookup(&In)) { in cse()
3415 CSEMap[&In] = &In; in cse()