Lines Matching refs:HashComponents

162   SmallVector<stable_hash, 16> HashComponents;  in stableHashValue()  local
163 HashComponents.reserve(MI.getNumOperands() + MI.getNumMemOperands() + 2); in stableHashValue()
164 HashComponents.push_back(MI.getOpcode()); in stableHashValue()
165 HashComponents.push_back(MI.getFlags()); in stableHashValue()
172 HashComponents.push_back(stable_hash_combine( in stableHashValue()
180 HashComponents.push_back(StableHash); in stableHashValue()
186 HashComponents.push_back(static_cast<unsigned>(Op->getSize())); in stableHashValue()
187 HashComponents.push_back(static_cast<unsigned>(Op->getFlags())); in stableHashValue()
188 HashComponents.push_back(static_cast<unsigned>(Op->getOffset())); in stableHashValue()
189 HashComponents.push_back(static_cast<unsigned>(Op->getSuccessOrdering())); in stableHashValue()
190 HashComponents.push_back(static_cast<unsigned>(Op->getAddrSpace())); in stableHashValue()
191 HashComponents.push_back(static_cast<unsigned>(Op->getSyncScopeID())); in stableHashValue()
192 HashComponents.push_back(static_cast<unsigned>(Op->getBaseAlign().value())); in stableHashValue()
193 HashComponents.push_back(static_cast<unsigned>(Op->getFailureOrdering())); in stableHashValue()
196 return stable_hash_combine_range(HashComponents.begin(), in stableHashValue()
197 HashComponents.end()); in stableHashValue()
201 SmallVector<stable_hash> HashComponents; in stableHashValue() local
204 HashComponents.push_back(stableHashValue(MI)); in stableHashValue()
205 return stable_hash_combine_range(HashComponents.begin(), in stableHashValue()
206 HashComponents.end()); in stableHashValue()
210 SmallVector<stable_hash> HashComponents; in stableHashValue() local
213 HashComponents.push_back(stableHashValue(MBB)); in stableHashValue()
214 return stable_hash_combine_range(HashComponents.begin(), in stableHashValue()
215 HashComponents.end()); in stableHashValue()