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.h77 FoldingSetNodeIDRef FastID;
137 : FastID(ID), SCEVType(SCEVTy), ExpressionSize(ExpressionSize) {}
185 static void Profile(const SCEV &X, FoldingSetNodeID &ID) { ID = X.FastID; }
189 return ID == X.FastID;
193 return X.FastID.ComputeHash();
220 FoldingSetNodeIDRef FastID;
262 ID = X.FastID;
267 return ID == X.FastID;
272 return X.FastID.ComputeHash();
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DFoldingSet.h825 FoldingSetNodeID FastID; variable
828 explicit FastFoldingSetNode(const FoldingSetNodeID &ID) : FastID(ID) {} in FastFoldingSetNode()
831 void Profile(FoldingSetNodeID &ID) const { ID.AddNodeID(FastID); } in Profile()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h108 FoldingSetNodeIDRef FastID;
117 FastID(ID), VTs(VT), NumVTs(Num) {
131 ID = X.FastID;
138 return ID == X.FastID;
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp14936 : FastID(ID), Kind(Kind) {} in SCEVPredicate()