diff --git a/clang/lib/CodeGen/CGBuiltin.cpp b/clang/lib/CodeGen/CGBuiltin.cpp index 048103275d57..8e7072043190 100644 --- a/clang/lib/CodeGen/CGBuiltin.cpp +++ b/clang/lib/CodeGen/CGBuiltin.cpp @@ -1721,6 +1721,27 @@ RValue CodeGenFunction::EmitBuiltinExpr(const GlobalDecl GD, unsigned BuiltinID, case Builtin::BI__builtin_truncl: return RValue::get(emitUnaryBuiltin(*this, E, Intrinsic::trunc)); + case Builtin::BIlround: + case Builtin::BIlroundf: + case Builtin::BIlroundl: + case Builtin::BI__builtin_lround: + case Builtin::BI__builtin_lroundf: + case Builtin::BI__builtin_lroundl: { + llvm::Type *ResultType = ConvertType(E->getType()); + int Width = ResultType->getPrimitiveSizeInBits(); + return RValue::get(emitUnaryBuiltin(*this, E, + Width == 32 ? Intrinsic::lround_i32 + : Intrinsic::lround_i64)); + } + + case Builtin::BIllround: + case Builtin::BIllroundf: + case Builtin::BIllroundl: + case Builtin::BI__builtin_llround: + case Builtin::BI__builtin_llroundf: + case Builtin::BI__builtin_llroundl: + return RValue::get(emitUnaryBuiltin(*this, E, Intrinsic::llround)); + default: break; } diff --git a/clang/test/CodeGen/builtins.c b/clang/test/CodeGen/builtins.c index 25b909ad3a80..1e6d35df73a0 100644 --- a/clang/test/CodeGen/builtins.c +++ b/clang/test/CodeGen/builtins.c @@ -256,6 +256,8 @@ void test_float_builtin_ops(float F, double D, long double LD) { volatile float resf; volatile double resd; volatile long double resld; + volatile long int resli; + volatile long long int reslli; resf = __builtin_fmodf(F,F); // CHECK: frem float @@ -380,6 +382,14 @@ void test_float_builtin_ops(float F, double D, long double LD) { resld = __builtin_roundl(LD); // CHECK: call x86_fp80 @llvm.round.f80 + resli = __builtin_lroundf (F); + // CHECK: call i64 @llvm.lround.i64.f32 + + resli = __builtin_lround (D); + // CHECK: call i64 @llvm.lround.i64.f64 + + resli = __builtin_lroundl (LD); + // CHECK: call i64 @llvm.lround.i64.f80 } // __builtin_longjmp isn't supported on all platforms, so only test it on X86. diff --git a/clang/test/CodeGen/math-builtins.c b/clang/test/CodeGen/math-builtins.c index 82f049bdd12e..83e3d4a2929a 100644 --- a/clang/test/CodeGen/math-builtins.c +++ b/clang/test/CodeGen/math-builtins.c @@ -362,9 +362,9 @@ void foo(double *d, float f, float *fp, long double *l, int *i, const char *c) { __builtin_llround(f); __builtin_llroundf(f); __builtin_llroundl(f); -// NO__ERRNO: declare i64 @llround(double) [[READNONE]] -// NO__ERRNO: declare i64 @llroundf(float) [[READNONE]] -// NO__ERRNO: declare i64 @llroundl(x86_fp80) [[READNONE]] +// NO__ERRNO: declare i64 @llvm.llround.f64(double) [[READNONE_INTRINSIC]] +// NO__ERRNO: declare i64 @llvm.llround.f32(float) [[READNONE_INTRINSIC]] +// NO__ERRNO: declare i64 @llvm.llround.f80(x86_fp80) [[READNONE_INTRINSIC]] // HAS_ERRNO: declare i64 @llround(double) [[NOT_READNONE]] // HAS_ERRNO: declare i64 @llroundf(float) [[NOT_READNONE]] // HAS_ERRNO: declare i64 @llroundl(x86_fp80) [[NOT_READNONE]] @@ -425,9 +425,9 @@ void foo(double *d, float f, float *fp, long double *l, int *i, const char *c) { __builtin_lround(f); __builtin_lroundf(f); __builtin_lroundl(f); -// NO__ERRNO: declare i64 @lround(double) [[READNONE]] -// NO__ERRNO: declare i64 @lroundf(float) [[READNONE]] -// NO__ERRNO: declare i64 @lroundl(x86_fp80) [[READNONE]] +// NO__ERRNO: declare i64 @llvm.lround.i64.f64(double) [[READNONE_INTRINSIC]] +// NO__ERRNO: declare i64 @llvm.lround.i64.f32(float) [[READNONE_INTRINSIC]] +// NO__ERRNO: declare i64 @llvm.lround.i64.f80(x86_fp80) [[READNONE_INTRINSIC]] // HAS_ERRNO: declare i64 @lround(double) [[NOT_READNONE]] // HAS_ERRNO: declare i64 @lroundf(float) [[NOT_READNONE]] // HAS_ERRNO: declare i64 @lroundl(x86_fp80) [[NOT_READNONE]] diff --git a/clang/test/CodeGen/math-libcalls.c b/clang/test/CodeGen/math-libcalls.c index 39bcb4454d7c..176ff38972dd 100644 --- a/clang/test/CodeGen/math-libcalls.c +++ b/clang/test/CodeGen/math-libcalls.c @@ -317,9 +317,9 @@ void foo(double *d, float f, float *fp, long double *l, int *i, const char *c) { llround(f); llroundf(f); llroundl(f); -// NO__ERRNO: declare i64 @llround(double) [[READNONE]] -// NO__ERRNO: declare i64 @llroundf(float) [[READNONE]] -// NO__ERRNO: declare i64 @llroundl(x86_fp80) [[READNONE]] +// NO__ERRNO: declare i64 @llvm.llround.f64(double) [[READNONE_INTRINSIC]] +// NO__ERRNO: declare i64 @llvm.llround.f32(float) [[READNONE_INTRINSIC]] +// NO__ERRNO: declare i64 @llvm.llround.f80(x86_fp80) [[READNONE_INTRINSIC]] // HAS_ERRNO: declare i64 @llround(double) [[NOT_READNONE]] // HAS_ERRNO: declare i64 @llroundf(float) [[NOT_READNONE]] // HAS_ERRNO: declare i64 @llroundl(x86_fp80) [[NOT_READNONE]] @@ -380,9 +380,9 @@ void foo(double *d, float f, float *fp, long double *l, int *i, const char *c) { lround(f); lroundf(f); lroundl(f); -// NO__ERRNO: declare i64 @lround(double) [[READNONE]] -// NO__ERRNO: declare i64 @lroundf(float) [[READNONE]] -// NO__ERRNO: declare i64 @lroundl(x86_fp80) [[READNONE]] +// NO__ERRNO: declare i64 @llvm.lround.i64.f64(double) [[READNONE_INTRINSIC]] +// NO__ERRNO: declare i64 @llvm.lround.i64.f32(float) [[READNONE_INTRINSIC]] +// NO__ERRNO: declare i64 @llvm.lround.i64.f80(x86_fp80) [[READNONE_INTRINSIC]] // HAS_ERRNO: declare i64 @lround(double) [[NOT_READNONE]] // HAS_ERRNO: declare i64 @lroundf(float) [[NOT_READNONE]] // HAS_ERRNO: declare i64 @lroundl(x86_fp80) [[NOT_READNONE]]