Searched refs:FoundVal (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_dense_map.h | 299 bool FoundVal = LookupBucketFor(B->getFirst(), DestBucket); in moveFromOldBuckets() local 300 (void)FoundVal; // silence warning. in moveFromOldBuckets() 301 CHECK(!FoundVal); in moveFromOldBuckets()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | NewGVN.cpp | 2679 auto *FoundVal = findPHIOfOpsLeader(E, OrigInst, PredBB); in findLeaderForInst() local 2680 if (!FoundVal) { in findLeaderForInst() 2686 if (auto *SI = dyn_cast<StoreInst>(FoundVal)) in findLeaderForInst() 2687 FoundVal = SI->getValueOperand(); in findLeaderForInst() 2688 return FoundVal; in findLeaderForInst() 2760 Value *FoundVal = nullptr; in makePossiblePHIOfOps() local 2797 FoundVal = !SafeForPHIOfOps ? nullptr in makePossiblePHIOfOps() 2801 if (!FoundVal) { in makePossiblePHIOfOps() 2815 FoundVal = PoisonValue::get(I->getType()); in makePossiblePHIOfOps() 2819 PHIOps.push_back({FoundVal, PredBB}); in makePossiblePHIOfOps() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
H A D | LegalizationArtifactCombiner.h | 902 Register FoundVal = findValueFromDef(DefReg, 0, DestTy.getSizeInBits()); in tryCombineUnmergeDefs() local 903 if (!FoundVal) in tryCombineUnmergeDefs() 905 if (MRI.getType(FoundVal) != DestTy) in tryCombineUnmergeDefs() 908 replaceRegOrBuildCopy(DefReg, FoundVal, MRI, MIB, UpdatedDefs, in tryCombineUnmergeDefs()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | DenseMap.h | 449 bool FoundVal = LookupBucketFor(B->getFirst(), DestBucket); in moveFromOldBuckets() local 450 (void)FoundVal; // silence warning. in moveFromOldBuckets() 451 assert(!FoundVal && "Key already in new map?"); in moveFromOldBuckets()
|