Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DFixedPointBuilder.h41 bool SrcIsSigned = SrcSema.isSigned(); in Convert() local
54 if (DstIsInteger && SrcIsSigned) { in Convert()
63 Result = SrcIsSigned in Convert()
70 Result = B.CreateIntCast(Result, DstIntTy, SrcIsSigned, "resize"); in Convert()
81 Result = B.CreateIntCast(Result, UpscaledTy, SrcIsSigned, "resize"); in Convert()
91 Value *TooHigh = SrcIsSigned ? B.CreateICmpSGT(Result, Max) in Convert()
97 if (SrcIsSigned && (LessIntBits || !DstIsSigned)) { in Convert()
107 Result = B.CreateIntCast(Result, DstIntTy, SrcIsSigned, "resize"); in Convert()
166 Value *CreateIntegerToFixed(Value *Src, unsigned SrcIsSigned, in CreateIntegerToFixed() argument
170 Src->getType()->getScalarSizeInBits(), SrcIsSigned), in CreateIntegerToFixed()
H A DInstrTypes.h674 bool SrcIsSigned, ///< Whether to treat the source as signed
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp3616 const Value *Src, bool SrcIsSigned, Type *DestTy, bool DestIsSigned) { in getCastOpcode() argument
3645 if (SrcIsSigned) in getCastOpcode()
3668 if (SrcIsSigned) in getCastOpcode()
H A DCore.cpp3948 LLVMOpcode LLVMGetCastOpcode(LLVMValueRef Src, LLVMBool SrcIsSigned, in LLVMGetCastOpcode() argument
3951 unwrap(Src), SrcIsSigned, unwrap(DestTy), DestIsSigned)); in LLVMGetCastOpcode()
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h4248 LLVMOpcode LLVMGetCastOpcode(LLVMValueRef Src, LLVMBool SrcIsSigned,