Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolution.h80 FoldingSetNodeIDRef FastID;
140 : FastID(ID), SCEVType(SCEVTy), ExpressionSize(ExpressionSize) {}
188 static void Profile(const SCEV &X, FoldingSetNodeID &ID) { ID = X.FastID; }
192 return ID == X.FastID;
196 return X.FastID.ComputeHash();
223 FoldingSetNodeIDRef FastID;
265 ID = X.FastID;
270 return ID == X.FastID;
275 return X.FastID.ComputeHash();
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DFoldingSet.h807 FoldingSetNodeID FastID; variable
810 explicit FastFoldingSetNode(const FoldingSetNodeID &ID) : FastID(ID) {} in FastFoldingSetNode()
813 void Profile(FoldingSetNodeID &ID) const { ID.AddNodeID(FastID); } in Profile()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h104 FoldingSetNodeIDRef FastID;
113 FastID(ID), VTs(VT), NumVTs(Num) {
127 ID = X.FastID;
134 return ID == X.FastID;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp14584 : FastID(ID), Kind(Kind) {} in SCEVPredicate()