Home
last modified time | relevance | path

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

/freebsd/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/contrib/llvm-project/llvm/include/llvm/ADT/
H A DFoldingSet.h822 FoldingSetNodeID FastID; variable
825 explicit FastFoldingSetNode(const FoldingSetNodeID &ID) : FastID(ID) {} in FastFoldingSetNode()
828 void Profile(FoldingSetNodeID &ID) const { ID.AddNodeID(FastID); } in Profile()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h106 FoldingSetNodeIDRef FastID;
115 FastID(ID), VTs(VT), NumVTs(Num) {
129 ID = X.FastID;
136 return ID == X.FastID;
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp14746 : FastID(ID), Kind(Kind) {} in SCEVPredicate()