Lines Matching defs:ReachabilityQueryInfo
3414 template <typename ToTy> struct ReachabilityQueryInfo {
3436 return const_cast<ReachabilityQueryInfo<ToTy> *>(this)->Hash =
3441 ReachabilityQueryInfo(const Instruction *From, const ToTy *To)
3446 ReachabilityQueryInfo(Attributor &A, const Instruction &From, const ToTy &To,
3457 ReachabilityQueryInfo(const ReachabilityQueryInfo &RQI)
3462 template <typename ToTy> struct DenseMapInfo<ReachabilityQueryInfo<ToTy> *> {
3466 static ReachabilityQueryInfo<ToTy> EmptyKey;
3467 static ReachabilityQueryInfo<ToTy> TombstoneKey;
3469 static inline ReachabilityQueryInfo<ToTy> *getEmptyKey() { return &EmptyKey; }
3470 static inline ReachabilityQueryInfo<ToTy> *getTombstoneKey() {
3473 static unsigned getHashValue(const ReachabilityQueryInfo<ToTy> *RQI) {
3476 static bool isEqual(const ReachabilityQueryInfo<ToTy> *LHS,
3477 const ReachabilityQueryInfo<ToTy> *RHS) {
3486 ReachabilityQueryInfo<ToTy> \
3487 DenseMapInfo<ReachabilityQueryInfo<ToTy> *>::EmptyKey = \
3488 ReachabilityQueryInfo<ToTy>( \
3492 ReachabilityQueryInfo<ToTy> \
3493 DenseMapInfo<ReachabilityQueryInfo<ToTy> *>::TombstoneKey = \
3494 ReachabilityQueryInfo<ToTy>( \
3507 using RQITy = ReachabilityQueryInfo<ToTy>;