Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DIRSimilarityIdentifier.cpp442 if (ValueToNumber.find(Arg) == ValueToNumber.end()) { in IRSimilarityCandidate()
443 ValueToNumber.try_emplace(Arg, LocalValNumber); in IRSimilarityCandidate()
450 if (ValueToNumber.find(ID->Inst) == ValueToNumber.end()) { in IRSimilarityCandidate()
451 ValueToNumber.try_emplace(ID->Inst, LocalValNumber); in IRSimilarityCandidate()
467 if (ValueToNumber.find(BB) != ValueToNumber.end()) in IRSimilarityCandidate()
470 ValueToNumber.try_emplace(BB, LocalValNumber); in IRSimilarityCandidate()
642 unsigned OperValA = A.IRSC.ValueToNumber.find(*VItA)->second; in compareNonCommutativeOperandMapping()
643 unsigned OperValB = B.IRSC.ValueToNumber.find(*VItB)->second; in compareNonCommutativeOperandMapping()
678 ValueNumbersA.insert(A.IRSC.ValueToNumber.find(*VItA)->second); in compareCommutativeOperandMapping()
679 ValueNumbersB.insert(B.IRSC.ValueToNumber.find(*VItB)->second); in compareCommutativeOperandMapping()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DIRSimilarityIdentifier.h667 DenseMap<Value *, unsigned> ValueToNumber; variable
894 DenseMap<Value *, unsigned>::iterator VNIt = ValueToNumber.find(V); in getGVN()
895 if (VNIt == ValueToNumber.end()) in getGVN()