Searched refs:NegC (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsISelDAGToDAG.cpp255 SDValue NegC = CurDAG->FoldConstantArithmetic( local
257 assert(NegC && "Constant-folding failed!");
258 SDValue NewNode = CurDAG->getNode(ISD::SUB, DL, VT, X, NegC);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafety.cpp1289 CapabilityExpr NegC = !*Entry;
1290 const FactEntry *Nen = FSet.findLock(FactMan, NegC);
1292 FSet.removeLock(FactMan, NegC);
1297 NegC.toString(), Entry->loc());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp1165 Constant *NegC = ConstantInt::get(I.getType(), -(*Op1C)); local
1166 Instruction *BO = BinaryOperator::CreateSDiv(X, NegC);
H A DInstCombineCompares.cpp6217 Constant *NegC = ConstantExpr::getFNeg(C); local
6218 return new FCmpInst(I.getSwappedPredicate(), X, NegC, "", &I);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp6313 if (ConstantSDNode *NegC = isConstOrConstSplat(Neg.getOperand(1))) {
6316 if (NegC->getAPIntValue().getActiveBits() <= Bits &&
6317 ((NegC->getAPIntValue() | Known.Zero).countTrailingOnes() >= Bits)) {
6324 // Check whether Neg has the form (sub NegC, NegOp1) for some NegC and NegOp1.
6327 ConstantSDNode *NegC = isConstOrConstSplat(Neg.getOperand(0));
6328 if (!NegC)
6346 // (NegC - NegOp1) & Mask == (EltSize - Pos) & Mask
6350 // EltSize & Mask == NegC & Mask
6359 Width = NegC
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp[all...]

Completed in 212 milliseconds