Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBypassSlowDivision.cpp162 std::optional<QuotRemPair> OptResult = insertFastDivAndRem(); in getReplacement() local
164 if (!OptResult) in getReplacement()
166 CacheI = Cache.insert({Key, *OptResult}).first; in getReplacement()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLazyValueInfo.cpp1535 std::optional<ValueLatticeElement> OptResult = getBlockValue(V, BB, CxtI); in getValueInBlock() local
1536 if (!OptResult) { in getValueInBlock()
1538 OptResult = getBlockValue(V, BB, CxtI); in getValueInBlock()
1539 assert(OptResult && "Value not available after solving"); in getValueInBlock()
1542 ValueLatticeElement Result = *OptResult; in getValueInBlock()