Home
last modified time | relevance | path

Searched refs:NotV (Results 1 – 7 of 7) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp718 [&](Value *V, Value *&NotV, bool &ElidesXor) { in FoldSPFofSPF() argument
719 if (match(V, m_Not(m_Value(NotV)))) { in FoldSPFofSPF()
727 NotV = nullptr; in FoldSPFofSPF()
/external/llvm-project/llvm/lib/Target/WebAssembly/
DWebAssemblyFastISel.cpp428 Value *NotV; in getRegForI1Value() local
429 if (match(V, m_Not(m_Value(NotV))) && V->getType()->isIntegerTy(32)) { in getRegForI1Value()
431 return getRegForValue(NotV); in getRegForI1Value()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyFastISel.cpp427 Value *NotV; in getRegForI1Value() local
428 if (match(V, m_Not(m_Value(NotV))) && V->getType()->isIntegerTy(32)) { in getRegForI1Value()
430 return getRegForValue(NotV); in getRegForI1Value()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DGVN.cpp1666 Value *NotV; in processAssumeIntrinsic() local
1667 if (match(V, m_Not(m_Value(NotV)))) in processAssumeIntrinsic()
1668 ReplaceOperandsWithMap[NotV] = ConstantInt::getFalse(V->getContext()); in processAssumeIntrinsic()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp1628 [&](Value *V, Value *&NotV, bool &ElidesXor) { in foldSPFofSPF() argument
1629 if (match(V, m_Not(m_Value(NotV)))) { in foldSPFofSPF()
1637 NotV = nullptr; in foldSPFofSPF()
/external/llvm-project/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp1680 [&](Value *V, Value *&NotV, bool &ElidesXor) { in foldSPFofSPF() argument
1681 if (match(V, m_Not(m_Value(NotV)))) { in foldSPFofSPF()
1689 NotV = nullptr; in foldSPFofSPF()
/external/llvm-project/llvm/lib/Analysis/
DValueTracking.cpp5453 Value *NotV; in getNotValue() local
5454 if (match(V, m_Not(m_Value(NotV)))) in getNotValue()
5455 return NotV; in getNotValue()