Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/
DMachineLICM.cpp111 DenseMap<unsigned, std::vector<const MachineInstr*> > CSEMap; member in __anon19b931500111::MachineLICM
152 CSEMap.clear(); in releaseMemory()
321 CSEMap.clear(); in runOnMachineFunction()
1226 CSEMap[Opcode].push_back(MI); in InitCSEMap()
1251 if (CI == CSEMap.end() || MI->isImplicitDef()) in EliminateCSE()
1309 CI = CSEMap.find(Opcode); in MayCSE()
1312 if (CI == CSEMap.end() || MI->isImplicitDef()) in MayCSE()
1352 CI = CSEMap.find(Opcode); in Hoist()
1370 if (CI != CSEMap.end()) in Hoist()
1373 CSEMap[Opcode].push_back(MI); in Hoist()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp793 Erased = CSEMap.RemoveNode(N); in RemoveNodeFromCSEMaps()
820 SDNode *Existing = CSEMap.GetOrInsertNode(N); in AddModifiedNodeToCSEMaps()
959 SDNode *N = CSEMap.FindNodeOrInsertPos(ID, InsertPos); in FindNodeOrInsertPos()
974 SDNode *N = CSEMap.FindNodeOrInsertPos(ID, InsertPos); in FindNodeOrInsertPos()
994 CSEMap.clear(); in clear()
1202 CSEMap.InsertNode(N, IP); in getConstant()
1246 CSEMap.InsertNode(N, IP); in getConstantFP()
1308 CSEMap.InsertNode(N, IP); in getGlobalAddress()
1323 CSEMap.InsertNode(N, IP); in getFrameIndex()
1343 CSEMap.InsertNode(N, IP); in getJumpTable()
[all …]
/external/llvm/include/llvm/CodeGen/
DSelectionDAG.h207 FoldingSet<SDNode> CSEMap;
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp3019 SmallDenseMap<Instruction *, Instruction *, 4, CSEDenseMapInfo> CSEMap; in cse() local
3030 if (Instruction *V = CSEMap.lookup(In)) { in cse()
3041 CSEMap[In] = In; in cse()