Searched refs:SrcIsSigned (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | FixedPointBuilder.h | 41 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 D | InstrTypes.h | 645 bool SrcIsSigned, ///< Whether to treat the source as signed
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Instructions.cpp | 3148 const Value *Src, bool SrcIsSigned, Type *DestTy, bool DestIsSigned) { in getCastOpcode() argument 3177 if (SrcIsSigned) in getCastOpcode() 3200 if (SrcIsSigned) in getCastOpcode()
|
H A D | Core.cpp | 4182 LLVMOpcode LLVMGetCastOpcode(LLVMValueRef Src, LLVMBool SrcIsSigned, in LLVMGetCastOpcode() argument 4185 unwrap(Src), SrcIsSigned, unwrap(DestTy), DestIsSigned)); in LLVMGetCastOpcode()
|
/freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
H A D | Core.h | 4524 LLVMOpcode LLVMGetCastOpcode(LLVMValueRef Src, LLVMBool SrcIsSigned,
|