Home
last modified time | relevance | path

Searched refs:HashComponents (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineStableHash.cpp180 SmallVector<stable_hash, 16> HashComponents; in stableHashValue() local
182 HashComponents.push_back(MI.getOpcode()); in stableHashValue()
183 HashComponents.push_back(MI.getFlags()); in stableHashValue()
189 HashComponents.push_back(stable_hash_combine( in stableHashValue()
197 HashComponents.push_back(StableHash); in stableHashValue()
214 HashComponents.end()); in stableHashValue()
218 SmallVector<stable_hash> HashComponents; in stableHashValue() local
221 HashComponents.push_back(stableHashValue(MI)); in stableHashValue()
223 HashComponents.end()); in stableHashValue()
227 SmallVector<stable_hash> HashComponents; in stableHashValue() local
[all …]
H A DMachineInstr.cpp2119 SmallVector<size_t, 16> HashComponents; in getHashValue() local
2120 HashComponents.reserve(MI->getNumOperands() + 1); in getHashValue()
2121 HashComponents.push_back(MI->getOpcode()); in getHashValue()
2126 HashComponents.push_back(hash_value(MO)); in getHashValue()
2128 return hash_combine_range(HashComponents.begin(), HashComponents.end()); in getHashValue()