Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DFixedPointBuilder.h39 bool SrcIsSigned = SrcSema.isSigned(); in Convert() local
52 if (DstIsInteger && SrcIsSigned) { in Convert()
61 Result = SrcIsSigned in Convert()
68 Result = B.CreateIntCast(Result, DstIntTy, SrcIsSigned, "resize"); in Convert()
79 Result = B.CreateIntCast(Result, UpscaledTy, SrcIsSigned, "resize"); in Convert()
89 Value *TooHigh = SrcIsSigned ? B.CreateICmpSGT(Result, Max) in Convert()
95 if (SrcIsSigned && (LessIntBits || !DstIsSigned)) { in Convert()
105 Result = B.CreateIntCast(Result, DstIntTy, SrcIsSigned, "resize"); in Convert()
164 Value *CreateIntegerToFixed(Value *Src, unsigned SrcIsSigned, in CreateIntegerToFixed() argument
168 Src->getType()->getScalarSizeInBits(), SrcIsSigned), in CreateIntegerToFixed()
H A DInstrTypes.h623 bool SrcIsSigned, ///< Whether to treat the source as signed
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DInstructions.cpp3229 const Value *Src, bool SrcIsSigned, Type *DestTy, bool DestIsSigned) { in getCastOpcode() argument
3258 if (SrcIsSigned) in getCastOpcode()
3281 if (SrcIsSigned) in getCastOpcode()