Searched refs:NegC (Results 1 – 7 of 7) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
H A D | MipsISelDAGToDAG.cpp | 255 SDValue NegC = CurDAG->FoldConstantArithmetic( in selectVecAddAsVecSubIfProfitable() local 257 assert(NegC && "Constant-folding failed!"); in selectVecAddAsVecSubIfProfitable() 258 SDValue NewNode = CurDAG->getNode(ISD::SUB, DL, VT, X, NegC); in selectVecAddAsVecSubIfProfitable()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/ |
H A D | ThreadSafety.cpp | 1304 CapabilityExpr NegC = !*Entry; in addLock() local 1305 const FactEntry *Nen = FSet.findLock(FactMan, NegC); in addLock() 1307 FSet.removeLock(FactMan, NegC); in addLock() 1312 NegC.toString(), Entry->loc()); in addLock()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineMulDivRem.cpp | 1160 Constant *NegC = ConstantInt::get(Ty, -(*Op1C)); in visitSDiv() local 1161 Instruction *BO = BinaryOperator::CreateSDiv(X, NegC); in visitSDiv()
|
H A D | InstCombineCompares.cpp | 6275 Constant *NegC = ConstantExpr::getFNeg(C); in visitFCmpInst() local 6276 return new FCmpInst(I.getSwappedPredicate(), X, NegC, "", &I); in visitFCmpInst()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
H A D | PPCInstrInfo.cpp | 584 Constant *NegC = ConstantFP::get(dyn_cast<ConstantFP>(C)->getContext(), F1); in finalizeInsInstrs() local 588 unsigned ConstPoolIdx = MCP->getConstantPoolIndex(NegC, Alignment); in finalizeInsInstrs()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
H A D | DAGCombiner.cpp | 6725 if (ConstantSDNode *NegC = isConstOrConstSplat(Neg.getOperand(1))) { in matchRotateSub() local 6728 if (NegC->getAPIntValue().getActiveBits() <= Bits && in matchRotateSub() 6729 ((NegC->getAPIntValue() | Known.Zero).countTrailingOnes() >= Bits)) { in matchRotateSub() 6739 ConstantSDNode *NegC = isConstOrConstSplat(Neg.getOperand(0)); in matchRotateSub() local 6740 if (!NegC) in matchRotateSub() 6771 Width = NegC->getAPIntValue(); in matchRotateSub() 6784 Width = PosC->getAPIntValue() + NegC->getAPIntValue(); in matchRotateSub()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 47097 bool NegC = !!NewOps[2]; in getNegatedExpression() local 47098 unsigned NewOpc = negateFMAOpcode(Opc, NegA != NegB, NegC, true); in getNegatedExpression() 47100 Cost = (NegA || NegB || NegC) ? NegatibleCost::Cheaper in getNegatedExpression() 48084 bool NegC = invertIfNegative(C); in combineFMA() local 48086 if (!NegA && !NegB && !NegC) in combineFMA() 48090 negateFMAOpcode(N->getOpcode(), NegA != NegB, NegC, false); in combineFMA()
|