Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DMachineStableHash.cpp162 SmallVector<stable_hash, 16> HashComponents; in stableHashValue() local
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()
197 HashComponents.end()); in stableHashValue()
201 SmallVector<stable_hash> HashComponents; in stableHashValue() local
204 HashComponents.push_back(stableHashValue(MI)); in stableHashValue()
206 HashComponents.end()); in stableHashValue()
210 SmallVector<stable_hash> HashComponents; in stableHashValue() local
[all …]
H A DMachineInstr.cpp2016 SmallVector<size_t, 16> HashComponents; in getHashValue() local
2017 HashComponents.reserve(MI->getNumOperands() + 1); in getHashValue()
2018 HashComponents.push_back(MI->getOpcode()); in getHashValue()
2023 HashComponents.push_back(hash_value(MO)); in getHashValue()
2025 return hash_combine_range(HashComponents.begin(), HashComponents.end()); in getHashValue()