Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DScaledNumber.h439 static int64_t joinSigned(uint64_t U, bool IsNeg) { in joinSigned() argument
441 return IsNeg ? INT64_MIN : INT64_MAX; in joinSigned()
442 return IsNeg ? -int64_t(U) : int64_t(U); in joinSigned()
/freebsd-12.1/contrib/llvm/lib/MC/MCParser/
H A DAsmParser.cpp3060 bool IsNeg = false; in parseRealValue() local
3063 IsNeg = true; in parseRealValue()
3086 if (IsNeg) in parseRealValue()
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1869 Value *IsNeg = B.CreateICmpSLT(X, Constant::getNullValue(X->getType())); in optimizeAbs() local
1871 return B.CreateSelect(IsNeg, NegX, X); in optimizeAbs()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBuiltin.cpp1770 Value *IsNeg = Builder.CreateICmpSLT(ArgValue, Zero, "isneg"); in EmitBuiltinExpr() local
1772 Value *Tmp = Builder.CreateSelect(IsNeg, Inverse, ArgValue); in EmitBuiltinExpr()
2104 Value *IsNeg = EmitSignBit(*this, Arg); in EmitBuiltinExpr() local
2110 Value *SignResult = Builder.CreateSelect(IsNeg, NegativeOne, One); in EmitBuiltinExpr()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp3341 SDValue IsNeg = DAG.getSetCC(DL, CCVT, N1, Zero, ISD::SETLT); in visitSDIVLike() local
3342 SDValue Res = DAG.getSelect(DL, VT, IsNeg, Sub, Sra); in visitSDIVLike()