Searched refs:Unsigned (Results 26 - 36 of 36) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp907 fromType = NVPTX::PTXLdStInstCode::Unsigned;
1045 FromType = NVPTX::PTXLdStInstCode::Unsigned;
1764 toType = NVPTX::PTXLdStInstCode::Unsigned;
1909 ToType = NVPTX::PTXLdStInstCode::Unsigned;
H A DNVPTXISelLowering.cpp4552 Unsigned, enumerator in enum:OperandSignedness
4574 S = Unsigned;
4604 if (LHSSign == Unsigned) {
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTContext.h1215 QualType getExtIntType(bool Unsigned, unsigned NumBits) const;
1219 QualType getDependentExtIntType(bool Unsigned, Expr *BitsExpr) const;
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp919 bool Unsigned = DstType->isUnsignedIntegerOrEnumerationType(); local
921 APSInt Min = APSInt::getMinValue(Width, Unsigned);
923 if (MinSrc.convertFromAPInt(Min, !Unsigned, APFloat::rmTowardZero) &
933 APSInt Max = APSInt::getMaxValue(Width, Unsigned);
935 if (MaxSrc.convertFromAPInt(Max, !Unsigned, APFloat::rmTowardZero) &
4069 // Unsigned integers and pointers.
H A DCGBuiltin.cpp1437 llvm::Value *Unsigned = CGF.EmitScalarExpr(UnsignedOp);
1443 Signed = CGF.Builder.CreateSExt(Signed, Unsigned->getType(), "op.sext");
1445 Unsigned = CGF.Builder.CreateZExt(Unsigned, Signed->getType(), "op.zext");
1463 Unsigned, UnsignedOverflow);
1484 // Unsigned overflow occurs if the result is < 0 or greater than UINT_MAX.
7293 llvm::Type *T, bool Unsigned) {
7296 return Unsigned ? Builder.CreateZExt(V, T) : Builder.CreateSExt(V, T);
7300 uint32_t Shift, bool Unsigned) {
7313 if (Unsigned)
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp9172 // Unsigned types cannot be negative. Suggest removing the absolute value
10523 PromotedRange(IntRange R, unsigned BitWidth, bool Unsigned) { argument
10525 PromotedMin = PromotedMax = llvm::APSInt(BitWidth, Unsigned);
10526 else if (R.Width >= BitWidth && !Unsigned) {
10530 PromotedMin = llvm::APSInt::getMinValue(BitWidth, Unsigned);
10531 PromotedMax = llvm::APSInt::getMaxValue(BitWidth, Unsigned);
10535 PromotedMin.setIsUnsigned(Unsigned);
10539 PromotedMax.setIsUnsigned(Unsigned);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfoMetadata.cpp467 return Signedness::Unsigned;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h762 enum class Signedness { Signed, Unsigned };
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp15049 bool Unsigned = cast<ConstantSDNode>(N->getOperand(2))->getZExtValue(); local
15050 unsigned Opc = Unsigned ? ARMISD::VADDVu : ARMISD::VADDVs;
15058 bool Unsigned = cast<ConstantSDNode>(N->getOperand(2))->getZExtValue(); local
15060 (Unsigned ? ARMISD::VADDLVu : ARMISD::VADDLVs) :
15061 (Unsigned ? ARMISD::VADDLVpu : ARMISD::VADDLVps);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp3324 // Unsigned integers are always nonnegative.
4435 ForSigned ? ConstantRange::Signed : ConstantRange::Unsigned;
H A DScalarEvolution.cpp5345 ? ConstantRange::Unsigned : ConstantRange::Signed;
9640 // Unsigned comparison is the same as signed comparison when both the operands

Completed in 594 milliseconds

12