Searched refs:C1 (Results 51 - 75 of 113) sorted by relevance

12345

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2055 const APInt &C1 = N1C->getAPIntValue();
2059 case ISD::SETEQ: return getBoolConstant(C1 == C2, dl, VT, OpVT);
2060 case ISD::SETNE: return getBoolConstant(C1 != C2, dl, VT, OpVT);
2061 case ISD::SETULT: return getBoolConstant(C1.ult(C2), dl, VT, OpVT);
2062 case ISD::SETUGT: return getBoolConstant(C1.ugt(C2), dl, VT, OpVT);
2063 case ISD::SETULE: return getBoolConstant(C1.ule(C2), dl, VT, OpVT);
2064 case ISD::SETUGE: return getBoolConstant(C1.uge(C2), dl, VT, OpVT);
2065 case ISD::SETLT: return getBoolConstant(C1.slt(C2), dl, VT, OpVT);
2066 case ISD::SETGT: return getBoolConstant(C1.sgt(C2), dl, VT, OpVT);
2067 case ISD::SETLE: return getBoolConstant(C1
[all...]
H A DDAGCombiner.cpp912 auto *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
914 if (!C1 || !C2)
917 const APInt &C1APIntVal = C1->getAPIntValue();
965 if (SDNode *C1 = DAG.isConstantIntBuildVectorOrConstantInt(N0.getOperand(1))) {
968 if (SDValue OpNode = DAG.FoldConstantArithmetic(Opc, DL, VT, C1, C2))
2043 SDValue C1 = IsAdd ? DAG.getConstant(CN->getAPIntValue() + 1, DL, VT) : local
2045 return DAG.getNode(IsAdd ? ISD::SUB : ISD::ADD, DL, VT, C1, LowBit);
3046 // fold (A+C1)-C2 -> A+(C1-C2)
3056 // fold C2-(A+C1)
3835 SDValue C1 = DAG.getNode(ISD::CTTZ, DL, VT, N1); local
4632 ConstantSDNode *C1 = isConstOrConstSplat(RR); local
7247 SDValue C1 = Shift->getOperand(1); local
7434 SDNode *C1 = DAG.isConstantIntBuildVectorOrConstantInt(N1); local
7620 uint64_t C1 = N0C1->getZExtValue(); local
8370 SDValue C1 = N->getOperand(1); local
8836 const APInt &C1 = cast<ConstantSDNode>(N1Elt)->getAPIntValue(); local
13456 const APFloat &C1 = N1CFP->getValueAPF(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp120 bool operator()(const LowerSwitch::CaseRange& C1, argument
122 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCTargetDesc.cpp121 SystemZ::C0, SystemZ::C1, SystemZ::C2, SystemZ::C3,
/freebsd-11-stable/contrib/netbsd-tests/usr.bin/grep/
H A Dt_grep.sh173 atf_check -o file:d_context_d.out grep -C1 pig d_context_a.in d_context_b.in
175 grep -E -C1 '(banana|monkey)' d_context_e.in
245 grep -z -C1 cod test1 test2
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafety.cpp577 Context intersectContexts(Context C1, Context C2);
579 void intersectBackEdge(Context C1, Context C2);
651 LocalVariableMap::intersectContexts(Context C1, Context C2) {
652 Context Result = C1;
653 for (const auto &P : C1) {
674 // This routine also takes the intersection of C1 and C2, but it does so by
675 // altering the VarDefinitions. C1 must be the result of an earlier call to
677 void LocalVariableMap::intersectBackEdge(Context C1, Context C2) {
678 for (const auto &P : C1) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionSimplify.cpp1078 // (X /u C1) /u C2 -> 0 if C1 * C2 overflow
1079 ConstantInt *C1, *C2;
1080 if (!IsSigned && match(Op0, m_UDiv(m_Value(X), m_ConstantInt(C1))) &&
1083 (void)C1->getValue().umul_ov(C2->getValue(), Overflow);
1579 // Look for this pattern: {and/or} (icmp X, C0), (icmp X, C1)).
1583 const APInt *C0, *C1; local
1585 !match(Cmp1->getOperand(1), m_APInt(C1)))
1589 auto Range1 = ConstantRange::makeExactICmpRegion(Cmp1->getPredicate(), *C1);
1592 // (icmp X, C0) && (icmp X, C1)
1655 const APInt *C0, *C1; local
1728 const APInt *C0, *C1; local
2204 const APInt *C1, *C2; local
[all...]
H A DValueTracking.cpp389 // Pre: (C1 >= 0) && (C1 < (1 << C5)) && (C2 >= 0) && (C2 < (1 << C6)) &&
390 // (C7 == (1 << (umin(countTrailingZeros(C1), C5) +
392 // umin(C5 - umin(countTrailingZeros(C1), C5),
396 // %aaa = or i8 %aa, C1
401 // %mask = i8 ((C1*C2)&C7)
403 // C1, C2 describe the known bottom bits of %a, %b.
1238 // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0
1261 // (lshr X, C1)
4722 const APInt *C1; local
4878 const APInt *C1; local
5428 isImpliedCondMatchingImmOperands(CmpInst::Predicate APred, const ConstantInt *C1, CmpInst::Predicate BPred, const ConstantInt *C2) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp1271 ConstantInt *C1 = dyn_cast<ConstantInt>(MDep->getLength());
1272 if (!C1 || C1->getValue().getZExtValue() < ByValSize)
/freebsd-11-stable/libexec/getty/
H A Dsubr.c255 tmode.c_cflag = C1;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h566 /// Return true if LSR cost of C1 is lower than C1.
567 bool isLSRCostLess(TargetTransformInfo::LSRCost &C1,
1228 virtual bool isLSRCostLess(TargetTransformInfo::LSRCost &C1,
1509 bool isLSRCostLess(TargetTransformInfo::LSRCost &C1,
1511 return Impl.isLSRCostLess(C1, C2);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DWhitespaceManager.cpp21 const Change &C1, const Change &C2) const {
23 C1.OriginalWhitespaceRange.getBegin(),
20 operator ()( const Change &C1, const Change &C2) const argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp602 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(Sub_0)) {
603 if (C1->getSExtValue() != 0 || Sub_1.getOpcode() != ISD::SHL)
1184 SDValue C1 = DAG.getConstant(1, dl, BVT); local
1191 Ops[I1N] = C1;
1197 Ops[I1N] = C1;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp927 /// insertelt (shufflevector X, CVec, Mask|insertelt X, C1, CIndex1), C, CIndex
1569 Constant *C0, *C1; local
1572 match(B1, m_BinOp(m_Value(Y), m_Constant(C1))))
1575 match(B1, m_BinOp(m_Constant(C1), m_Value(Y))))
1597 C1 = cast<Constant>(AltB1.Op1);
1609 Constant *NewC = ConstantExpr::getShuffleVector(C0, C1, Mask);
1623 // shuffle (op V, C0), (op V, C1), M --> op V, C'
1624 // shuffle (op C0, V), (op C1, V), M --> op C', V
1647 // shuffle (op X, C0), (op Y, C1), M --> op (shuffle X, Y, M), C'
1648 // shuffle (op C0, X), (op C1,
[all...]
H A DInstructionCombining.cpp268 /// (op (cast (op X, C2)), C1) --> (cast (op X, op (C1, C2)))
269 /// (op (cast (op X, C2)), C1) --> (op (cast X), op (C1, C2))
289 Constant *C1, *C2;
290 if (!match(BinOp1->getOperand(1), m_Constant(C1)) ||
295 // Eg, if it was a trunc, we'd cast C1 to the source type because casting C2
299 // (op (cast (op X, C2)), C1) --> (op (cast X), FoldedC)
300 Type *DestTy = C1->getType();
302 Constant *FoldedC = ConstantExpr::get(AssocOpcode, C1, CastC
448 Constant *C1, *C2; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp3325 bool X86TTIImpl::isLSRCostLess(TargetTransformInfo::LSRCost &C1, argument
3328 return std::tie(C1.Insns, C1.NumRegs, C1.AddRecCost,
3329 C1.NumIVMuls, C1.NumBaseAdds,
3330 C1.ScaleCost, C1.ImmCost, C1.SetupCost) <
/freebsd-11-stable/contrib/dialog/
H A Ddlg_keys.c359 CURSES_NAME(C1),
584 * "~" depending on whether it is C0 or C1), or an escaped single character.
H A Dconfig.guess752 C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
/freebsd-11-stable/contrib/openbsm/config/
H A Dconfig.guess700 C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
/freebsd-11-stable/contrib/ncurses/
H A Dconfig.guess752 C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
/freebsd-11-stable/contrib/binutils/
H A Dconfig.guess712 C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
/freebsd-11-stable/contrib/libreadline/support/
H A Dconfig.guess704 C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
/freebsd-11-stable/contrib/ldns/
H A Dconfig.guess733 C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
/freebsd-11-stable/contrib/binutils/opcodes/
H A Dia64-opc-a.c95 {"add", A, OpX2aVeX4X2b (8, 0, 0, 0, 1), {R1, R2, R3, C1}, EMPTY},
97 {"sub", A, OpX2aVeX4X2b (8, 0, 0, 1, 0), {R1, R2, R3, C1}, EMPTY},
/freebsd-11-stable/crypto/heimdal/
H A Dconfig.guess731 C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)

Completed in 407 milliseconds

12345