Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/CodeGen/
DMachineLICM.cpp98 DenseMap<unsigned, std::vector<const MachineInstr*> > CSEMap; member in __anon0ec594db0111::MachineLICM
142 CI = CSEMap.begin(), CE = CSEMap.end(); CI != CE; ++CI) in releaseMemory()
144 CSEMap.clear(); in releaseMemory()
360 CSEMap.clear(); in runOnMachineFunction()
1149 CI = CSEMap.find(Opcode); in InitCSEMap()
1150 if (CI != CSEMap.end()) in InitCSEMap()
1155 CSEMap.insert(std::make_pair(Opcode, CSEMIs)); in InitCSEMap()
1175 if (CI == CSEMap.end() || MI->isImplicitDef()) in EliminateCSE()
1210 CI = CSEMap.find(Opcode); in MayCSE()
1213 if (CI == CSEMap.end() || MI->isImplicitDef()) in MayCSE()
[all …]
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp646 Erased = CSEMap.RemoveNode(N); in RemoveNodeFromCSEMaps()
674 SDNode *Existing = CSEMap.GetOrInsertNode(N); in AddModifiedNodeToCSEMaps()
708 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos); in FindModifiedNodeSlot()
726 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos); in FindModifiedNodeSlot()
744 SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos); in FindModifiedNodeSlot()
867 CSEMap.clear(); in clear()
960 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP))) in getConstant()
966 CSEMap.InsertNode(N, IP); in getConstant()
1002 if ((N = CSEMap.FindNodeOrInsertPos(ID, IP))) in getConstantFP()
1008 CSEMap.InsertNode(N, IP); in getConstantFP()
[all …]
/external/llvm/lib/CodeGen/
DMachineLICM.cpp111 DenseMap<unsigned, std::vector<const MachineInstr*> > CSEMap; member in __anon2d7e0c2f0111::MachineLICM
152 CSEMap.clear(); in releaseMemory()
321 CSEMap.clear(); in runOnMachineFunction()
1213 CSEMap[MI.getOpcode()].push_back(&MI); in InitCSEMap()
1236 if (CI == CSEMap.end() || MI->isImplicitDef()) in EliminateCSE()
1293 CI = CSEMap.find(Opcode); in MayCSE()
1296 if (CI == CSEMap.end() || MI->isImplicitDef()) in MayCSE()
1334 CI = CSEMap.find(Opcode); in Hoist()
1350 if (CI != CSEMap.end()) in Hoist()
1353 CSEMap[Opcode].push_back(MI); in Hoist()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp767 Erased = CSEMap.RemoveNode(N); in RemoveNodeFromCSEMaps()
794 SDNode *Existing = CSEMap.GetOrInsertNode(N); in AddModifiedNodeToCSEMaps()
942 SDNode *N = CSEMap.FindNodeOrInsertPos(ID, InsertPos); in FindNodeOrInsertPos()
957 SDNode *N = CSEMap.FindNodeOrInsertPos(ID, InsertPos); in FindNodeOrInsertPos()
984 CSEMap.clear(); in clear()
1192 CSEMap.InsertNode(N, IP); in getConstant()
1233 CSEMap.InsertNode(N, IP); in getConstantFP()
1290 CSEMap.InsertNode(N, IP); in getGlobalAddress()
1305 CSEMap.InsertNode(N, IP); in getFrameIndex()
1324 CSEMap.InsertNode(N, IP); in getJumpTable()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DSelectionDAG.h162 FoldingSet<SDNode> CSEMap;
/external/llvm/include/llvm/CodeGen/
DSelectionDAG.h208 FoldingSet<SDNode> CSEMap;
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp3220 SmallDenseMap<Instruction *, Instruction *, 4, CSEDenseMapInfo> CSEMap; in cse() local
3229 if (Instruction *V = CSEMap.lookup(In)) { in cse()
3235 CSEMap[In] = In; in cse()