Home
last modified time | relevance | path

Searched refs:NegC (Results 1 – 5 of 5) sorted by relevance

/external/clang/lib/Analysis/
DThreadSafety.cpp1191 CapabilityExpr NegC = !*Entry; in addLock() local
1192 FactEntry *Nen = FSet.findLock(FactMan, NegC); in addLock()
1194 FSet.removeLock(FactMan, NegC); in addLock()
1199 NegC.toString(), Entry->loc()); in addLock()
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp3930 if (ConstantSDNode *NegC = isConstOrConstSplat(Neg.getOperand(1))) { in matchRotateSub() local
3931 if (NegC->getAPIntValue() == EltSize - 1) { in matchRotateSub()
3941 ConstantSDNode *NegC = isConstOrConstSplat(Neg.getOperand(0)); in matchRotateSub() local
3942 if (!NegC) in matchRotateSub()
3964 Width = NegC->getAPIntValue(); in matchRotateSub()
3977 Width = PosC->getAPIntValue() + NegC->getAPIntValue(); in matchRotateSub()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp5342 if (ConstantSDNode *NegC = isConstOrConstSplat(Neg.getOperand(1))) { in matchRotateSub() local
5346 if (NegC->getAPIntValue().getActiveBits() <= Bits && in matchRotateSub()
5347 ((NegC->getAPIntValue() | Known.Zero).countTrailingOnes() >= Bits)) { in matchRotateSub()
5357 ConstantSDNode *NegC = isConstOrConstSplat(Neg.getOperand(0)); in matchRotateSub() local
5358 if (!NegC) in matchRotateSub()
5386 Width = NegC->getAPIntValue(); in matchRotateSub()
5399 Width = PosC->getAPIntValue() + NegC->getAPIntValue(); in matchRotateSub()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp30216 bool NegC = (C.getOpcode() == ISD::FNEG); in combineFMA() local
30224 if (NegC) in combineFMA()
30229 Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB; in combineFMA()
30231 Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB; in combineFMA()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp37946 bool NegC = invertIfNegative(C); in combineFMA() local
37948 if (!NegA && !NegB && !NegC) in combineFMA()
37951 unsigned NewOpcode = negateFMAOpcode(N->getOpcode(), NegA != NegB, NegC); in combineFMA()