Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DScalarEvolution.h83 FoldingSetNodeIDRef FastID;
125 : FastID(ID), SCEVType(SCEVTy), ExpressionSize(ExpressionSize) {}
170 static void Profile(const SCEV &X, FoldingSetNodeID &ID) { ID = X.FastID; }
174 return ID == X.FastID;
178 return X.FastID.ComputeHash();
205 FoldingSetNodeIDRef FastID;
251 ID = X.FastID;
256 return ID == X.FastID;
261 return X.FastID.ComputeHash();
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DFoldingSet.h779 FoldingSetNodeID FastID; variable
782 explicit FastFoldingSetNode(const FoldingSetNodeID &ID) : FastID(ID) {} in FastFoldingSetNode()
785 void Profile(FoldingSetNodeID &ID) const { ID.AddNodeID(FastID); } in Profile()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h95 FoldingSetNodeIDRef FastID;
104 FastID(ID), VTs(VT), NumVTs(Num) {
118 ID = X.FastID;
125 return ID == X.FastID;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DScalarEvolution.cpp13025 : FastID(ID), Kind(Kind) {} in SCEVPredicate()