HomeSort by: relevance | last modified time | path
    Searched defs:CSEMap (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
CSEInfo.h 27 /// be uniqued in a CSEMap. The tradeoff here is extra memory allocations for
67 /// the CSEMap. There is Opcode level granularity on which instructions can be
74 FoldingSet<UniqueMachineInstr> CSEMap;
86 /// list and avoid inserting and then removing from the CSEMap.
104 /// Get the MachineInstr(Unique) if it exists already in the CSEMap and the
111 /// into the CSEMap. MI should return true for shouldCSE(MI->getOpcode())
123 /// Records a newly created inst in a list and lazily insert it to the CSEMap.
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineLICM.cpp 155 DenseMap<unsigned, std::vector<MachineInstr *>> CSEMap;
189 CSEMap.clear();
385 // CSEMap is initialized for loop header when the first instruction is
390 CSEMap.clear();
1291 CSEMap[MI.getOpcode()].push_back(&MI);
1315 if (CI == CSEMap.end() || MI->isImplicitDef())
1375 CSEMap.find(Opcode);
1378 if (CI == CSEMap.end() || MI->isImplicitDef())
1430 CSEMap.find(Opcode);
1452 if (CI != CSEMap.end()
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
SelectionDAG.h 256 FoldingSet<SDNode> CSEMap;
2002 /// Look up the node specified by ID in CSEMap. If it exists, return it. If
2008 /// Look up the node specified by ID in CSEMap. If it exists, return it. If

Completed in 32 milliseconds