Searched refs:IsNeg (Results 1 - 9 of 9) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DScaledNumber.h438 static int64_t joinSigned(uint64_t U, bool IsNeg) { argument
440 return IsNeg ? INT64_MIN : INT64_MAX;
441 return IsNeg ? -int64_t(U) : int64_t(U);
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmWriterEmitter.cpp954 bool IsNeg = Op[0] == '!'; local
955 StringRef Feature = Op.drop_front(IsNeg ? 1 : 0);
957 IsNeg ? "Neg" : "", Namespace, Feature));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp3110 bool IsNeg = false; local
3113 IsNeg = true;
3137 if (IsNeg)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp2280 Value *IsNeg = B.CreateICmpSLT(X, Constant::getNullValue(X->getType()));
2282 return B.CreateSelect(IsNeg, NegX, X);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp15696 auto IsProfitable = [this](bool IsNeg, bool IsAddOne, EVT VT) -> bool {
15718 return IsAddOne && IsNeg ? VT.isVector() : true;
15726 bool IsNeg = MulAmt.isNegative(); local
15733 if (!IsProfitable(IsNeg, true, VT))
15742 if (!IsNeg)
15750 if (!IsProfitable(IsNeg, false, VT))
15758 if (!IsNeg)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp18737 SDValue IsNeg = DAG.getSetCC(DL, MVT::v4i64, Src, Zero, ISD::SETLT);
18738 SDValue SignSrc = DAG.getSelect(DL, MVT::v4i64, IsNeg, Sign, Src);
18765 IsNeg = DAG.getNode(ISD::TRUNCATE, DL, MVT::v4i32, IsNeg);
18766 SDValue Cvt = DAG.getSelect(DL, MVT::v4f32, IsNeg, Slow, SignCvt);
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp2019 Value *IsNeg = Builder.CreateICmpSLT(ArgValue, Zero, "isneg");
2021 Value *Tmp = Builder.CreateSelect(IsNeg, Inverse, ArgValue);
2366 Value *IsNeg = EmitSignBit(*this, Arg);
2372 Value *SignResult = Builder.CreateSelect(IsNeg, NegativeOne, One);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp15138 bool IsNeg = false;
15140 IsNeg = true;
15171 if (IsNeg)
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp3869 SDValue IsNeg = DAG.getSetCC(DL, CCVT, N1, Zero, ISD::SETLT); local
3870 SDValue Res = DAG.getSelect(DL, VT, IsNeg, Sub, Sra);

Completed in 807 milliseconds