Home
last modified time | relevance | path

Searched refs:FoldingSetNodeIDRef (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DFoldingSet.cpp27 bool FoldingSetNodeIDRef::operator==(FoldingSetNodeIDRef RHS) const { in operator ==()
34 bool FoldingSetNodeIDRef::operator<(FoldingSetNodeIDRef RHS) const { in operator <()
109 return *this == FoldingSetNodeIDRef(RHS.Bits.data(), RHS.Bits.size()); in operator ==()
114 bool FoldingSetNodeID::operator==(FoldingSetNodeIDRef RHS) const { in operator ==()
115 return FoldingSetNodeIDRef(Bits.data(), Bits.size()) == RHS; in operator ==()
121 return *this < FoldingSetNodeIDRef(RHS.Bits.data(), RHS.Bits.size()); in operator <()
124 bool FoldingSetNodeID::operator<(FoldingSetNodeIDRef RHS) const { in operator <()
125 return FoldingSetNodeIDRef(Bits.data(), Bits.size()) < RHS; in operator <()
131 FoldingSetNodeIDRef
135 return FoldingSetNodeIDRef(New, Bits.size()); in Intern()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpressions.h65 SCEVConstant(const FoldingSetNodeIDRef ID, ConstantInt *v)
83 SCEVVScale(const FoldingSetNodeIDRef ID, Type *ty)
108 SCEVCastExpr(const FoldingSetNodeIDRef ID, SCEVTypes SCEVTy, const SCEV *op,
133 SCEVPtrToIntExpr(const FoldingSetNodeIDRef ID, const SCEV *Op, Type *ITy);
143 SCEVIntegralCastExpr(const FoldingSetNodeIDRef ID, SCEVTypes SCEVTy,
159 SCEVTruncateExpr(const FoldingSetNodeIDRef ID, const SCEV *op, Type *ty);
171 SCEVZeroExtendExpr(const FoldingSetNodeIDRef ID, const SCEV *op, Type *ty);
185 SCEVSignExtendExpr(const FoldingSetNodeIDRef ID, const SCEV *op, Type *ty);
205 SCEVNAryExpr(const FoldingSetNodeIDRef ID, enum SCEVTypes T,
249 SCEVCommutativeExpr(const FoldingSetNodeIDRef I
[all...]
H A DScalarEvolution.h80 FoldingSetNodeIDRef FastID;
138 explicit SCEV(const FoldingSetNodeIDRef ID, SCEVTypes SCEVTy,
223 FoldingSetNodeIDRef FastID;
235 SCEVPredicate(const FoldingSetNodeIDRef ID, SCEVPredicateKind Kind);
288 SCEVComparePredicate(const FoldingSetNodeIDRef ID,
391 explicit SCEVWrapPredicate(const FoldingSetNodeIDRef ID,
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DFoldingSet.h290 class FoldingSetNodeIDRef {
295 FoldingSetNodeIDRef() = default;
296 FoldingSetNodeIDRef(const unsigned *D, size_t S) : Data(D), Size(S) {} in FoldingSetNodeIDRef() function
311 bool operator==(FoldingSetNodeIDRef) const;
313 bool operator!=(FoldingSetNodeIDRef RHS) const { return !(*this == RHS); }
317 bool operator<(FoldingSetNodeIDRef) const;
335 FoldingSetNodeID(FoldingSetNodeIDRef Ref) in FoldingSetNodeID()
381 return FoldingSetNodeIDRef(Bits.data(), Bits.size()).ComputeHash(); in ComputeHash()
387 return FoldingSetNodeIDRef(Bits.data(), Bits.size()).computeStableHash(); in computeStableHash()
392 bool operator==(const FoldingSetNodeIDRef RHS) const;
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp473 SCEV(FoldingSetNodeIDRef(), scCouldNotCompute, 0) {} in SCEVCouldNotCompute()
519 SCEVCastExpr::SCEVCastExpr(const FoldingSetNodeIDRef ID, SCEVTypes SCEVTy, in SCEVCastExpr()
523 SCEVPtrToIntExpr::SCEVPtrToIntExpr(const FoldingSetNodeIDRef ID, const SCEV *Op, in SCEVPtrToIntExpr()
530 SCEVIntegralCastExpr::SCEVIntegralCastExpr(const FoldingSetNodeIDRef ID, in SCEVIntegralCastExpr()
535 SCEVTruncateExpr::SCEVTruncateExpr(const FoldingSetNodeIDRef ID, const SCEV *op, in SCEVTruncateExpr()
542 SCEVZeroExtendExpr::SCEVZeroExtendExpr(const FoldingSetNodeIDRef ID, in SCEVZeroExtendExpr()
549 SCEVSignExtendExpr::SCEVSignExtendExpr(const FoldingSetNodeIDRef ID, in SCEVSignExtendExpr()
14744 SCEVPredicate::SCEVPredicate(const FoldingSetNodeIDRef ID, in SCEVPredicate()
14748 SCEVComparePredicate::SCEVComparePredicate(const FoldingSetNodeIDRef ID, in SCEVComparePredicate()
14779 SCEVWrapPredicate::SCEVWrapPredicate(const FoldingSetNodeIDRef ID, in SCEVWrapPredicate()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h106 FoldingSetNodeIDRef FastID;
114 SDVTListNode(const FoldingSetNodeIDRef ID, const EVT *VT, unsigned int Num) :