Searched refs:Len1 (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SimplifyLibCalls.cpp | 584 uint64_t Len1 = GetStringLength(Str1P); in optimizeStrCmp() local 585 if (Len1) in optimizeStrCmp() 586 annotateDereferenceableBytes(CI, 0, Len1); in optimizeStrCmp() 591 if (Len1 && Len2) { in optimizeStrCmp() 594 TLI->getAsSizeT(std::min(Len1, Len2), *CI->getModule()), in optimizeStrCmp() 605 if (canTransformToMemCmp(CI, Str2P, Len1, DL)) in optimizeStrCmp() 607 TLI->getAsSizeT(Len1, *CI->getModule()), in optimizeStrCmp() 664 uint64_t Len1 = GetStringLength(Str1P); in optimizeStrNCmp() local 665 if (Len1) in optimizeStrNCmp() 666 annotateDereferenceableBytes(CI, 0, Len1); in optimizeStrNCmp() [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerTracePC.cpp | 633 size_t Len1 = fuzzer::InternalStrnlen(s1, n); in __sanitizer_weak_hook_strncmp() local 635 n = std::min(n, Len1); in __sanitizer_weak_hook_strncmp()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ValueTracking.cpp | 6534 uint64_t Len1 = GetStringLengthH(SI->getTrueValue(), PHIs, CharSize); in GetStringLengthH() local 6535 if (Len1 == 0) return 0; in GetStringLengthH() 6538 if (Len1 == ~0ULL) return Len2; in GetStringLengthH() 6539 if (Len2 == ~0ULL) return Len1; in GetStringLengthH() 6540 if (Len1 != Len2) return 0; in GetStringLengthH() 6541 return Len1; in GetStringLengthH()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonISelLoweringHVX.cpp | 2407 unsigned Len1 = Ty1.getVectorNumElements(); in typeWidenToWider() local 2408 if (Len0 == Len1) in typeWidenToWider() 2411 unsigned MaxLen = std::max(Len0, Len1); in typeWidenToWider()
|