Searched refs:SrcScale (Results 1 – 1 of 1) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | FixedPointBuilder.h | 37 unsigned SrcScale = SrcSema.getScale(); in Convert() local 48 if (DstScale < SrcScale) { in Convert() 56 B.getContext(), APInt::getLowBitsSet(ResultWidth, SrcScale)); in Convert() 62 ? B.CreateAShr(Result, SrcScale - DstScale, "downscale") in Convert() 63 : B.CreateLShr(Result, SrcScale - DstScale, "downscale"); in Convert() 71 if (DstScale > SrcScale) in Convert() 72 Result = B.CreateShl(Result, DstScale - SrcScale, "upscale"); in Convert() 75 if (DstScale > SrcScale) { in Convert() 77 ResultWidth = std::max(SrcWidth + DstScale - SrcScale, DstWidth); in Convert() 80 Result = B.CreateShl(Result, DstScale - SrcScale, "upscale"); in Convert()
|