|  | ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 2 | 
|  | ; RUN: opt -S -mtriple=amdgcn-amd-amdhsa -passes=amdgpu-simplifylib %s | FileCheck %s | 
|  |  | 
|  | declare float @_Z3logf(float) | 
|  | declare <2 x float> @_Z3logDv2_f(<2 x float>) | 
|  | declare <3 x float> @_Z3logDv3_f(<3 x float>) | 
|  | declare <4 x float> @_Z3logDv4_f(<4 x float>) | 
|  | declare <8 x float> @_Z3logDv8_f(<8 x float>) | 
|  | declare <16 x float> @_Z3logDv16_f(<16 x float>) | 
|  |  | 
|  | declare double @_Z3logd(double) | 
|  | declare <2 x double> @_Z3logDv2_d(<2 x double>) | 
|  | declare <3 x double> @_Z3logDv3_d(<3 x double>) | 
|  | declare <4 x double> @_Z3logDv4_d(<4 x double>) | 
|  | declare <8 x double> @_Z3logDv8_d(<8 x double>) | 
|  | declare <16 x double> @_Z3logDv16_d(<16 x double>) | 
|  |  | 
|  | declare half @_Z3logDh(half) | 
|  | declare <2 x half> @_Z3logDv2_Dh(<2 x half>) | 
|  | declare <3 x half> @_Z3logDv3_Dh(<3 x half>) | 
|  | declare <4 x half> @_Z3logDv4_Dh(<4 x half>) | 
|  | declare <8 x half> @_Z3logDv8_Dh(<8 x half>) | 
|  | declare <16 x half> @_Z3logDv16_Dh(<16 x half>) | 
|  |  | 
|  | define float @test_log_f32(float %arg) { | 
|  | ; CHECK-LABEL: define float @test_log_f32 | 
|  | ; CHECK-SAME: (float [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call float @_Z3logf(float [[ARG]]), !fpmath !0 | 
|  | ; CHECK-NEXT:    ret float [[LOG]] | 
|  | ; | 
|  | %log = tail call float @_Z3logf(float %arg), !fpmath !0 | 
|  | ret float %log | 
|  | } | 
|  |  | 
|  | define <2 x float> @test_log_v2f32(<2 x float> %arg) { | 
|  | ; CHECK-LABEL: define <2 x float> @test_log_v2f32 | 
|  | ; CHECK-SAME: (<2 x float> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <2 x float> @_Z3logDv2_f(<2 x float> [[ARG]]), !fpmath !0 | 
|  | ; CHECK-NEXT:    ret <2 x float> [[LOG]] | 
|  | ; | 
|  | %log = tail call <2 x float> @_Z3logDv2_f(<2 x float> %arg), !fpmath !0 | 
|  | ret <2 x float> %log | 
|  | } | 
|  |  | 
|  | define <3 x float> @test_log_v3f32(<3 x float> %arg) { | 
|  | ; CHECK-LABEL: define <3 x float> @test_log_v3f32 | 
|  | ; CHECK-SAME: (<3 x float> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <3 x float> @_Z3logDv3_f(<3 x float> [[ARG]]), !fpmath !0 | 
|  | ; CHECK-NEXT:    ret <3 x float> [[LOG]] | 
|  | ; | 
|  | %log = tail call <3 x float> @_Z3logDv3_f(<3 x float> %arg), !fpmath !0 | 
|  | ret <3 x float> %log | 
|  | } | 
|  |  | 
|  | define <4 x float> @test_log_v4f32(<4 x float> %arg) { | 
|  | ; CHECK-LABEL: define <4 x float> @test_log_v4f32 | 
|  | ; CHECK-SAME: (<4 x float> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <4 x float> @_Z3logDv4_f(<4 x float> [[ARG]]), !fpmath !0 | 
|  | ; CHECK-NEXT:    ret <4 x float> [[LOG]] | 
|  | ; | 
|  | %log = tail call <4 x float> @_Z3logDv4_f(<4 x float> %arg), !fpmath !0 | 
|  | ret <4 x float> %log | 
|  | } | 
|  |  | 
|  | define <8 x float> @test_log_v8f32(<8 x float> %arg) { | 
|  | ; CHECK-LABEL: define <8 x float> @test_log_v8f32 | 
|  | ; CHECK-SAME: (<8 x float> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <8 x float> @_Z3logDv8_f(<8 x float> [[ARG]]), !fpmath !0 | 
|  | ; CHECK-NEXT:    ret <8 x float> [[LOG]] | 
|  | ; | 
|  | %log = tail call <8 x float> @_Z3logDv8_f(<8 x float> %arg), !fpmath !0 | 
|  | ret <8 x float> %log | 
|  | } | 
|  |  | 
|  | define <16 x float> @test_log_v16f32(<16 x float> %arg) { | 
|  | ; CHECK-LABEL: define <16 x float> @test_log_v16f32 | 
|  | ; CHECK-SAME: (<16 x float> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <16 x float> @_Z3logDv16_f(<16 x float> [[ARG]]), !fpmath !0 | 
|  | ; CHECK-NEXT:    ret <16 x float> [[LOG]] | 
|  | ; | 
|  | %log = tail call <16 x float> @_Z3logDv16_f(<16 x float> %arg), !fpmath !0 | 
|  | ret <16 x float> %log | 
|  | } | 
|  |  | 
|  | define float @test_log_cr_f32(float %arg) { | 
|  | ; CHECK-LABEL: define float @test_log_cr_f32 | 
|  | ; CHECK-SAME: (float [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call float @_Z3logf(float [[ARG]]) | 
|  | ; CHECK-NEXT:    ret float [[LOG]] | 
|  | ; | 
|  | %log = tail call float @_Z3logf(float %arg) | 
|  | ret float %log | 
|  | } | 
|  |  | 
|  | define <2 x float> @test_log_cr_v2f32(<2 x float> %arg) { | 
|  | ; CHECK-LABEL: define <2 x float> @test_log_cr_v2f32 | 
|  | ; CHECK-SAME: (<2 x float> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <2 x float> @_Z3logDv2_f(<2 x float> [[ARG]]) | 
|  | ; CHECK-NEXT:    ret <2 x float> [[LOG]] | 
|  | ; | 
|  | %log = tail call <2 x float> @_Z3logDv2_f(<2 x float> %arg) | 
|  | ret <2 x float> %log | 
|  | } | 
|  |  | 
|  | define <3 x float> @test_log_cr_v3f32(<3 x float> %arg) { | 
|  | ; CHECK-LABEL: define <3 x float> @test_log_cr_v3f32 | 
|  | ; CHECK-SAME: (<3 x float> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <3 x float> @_Z3logDv3_f(<3 x float> [[ARG]]) | 
|  | ; CHECK-NEXT:    ret <3 x float> [[LOG]] | 
|  | ; | 
|  | %log = tail call <3 x float> @_Z3logDv3_f(<3 x float> %arg) | 
|  | ret <3 x float> %log | 
|  | } | 
|  |  | 
|  | define <4 x float> @test_log_cr_v4f32(<4 x float> %arg) { | 
|  | ; CHECK-LABEL: define <4 x float> @test_log_cr_v4f32 | 
|  | ; CHECK-SAME: (<4 x float> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <4 x float> @_Z3logDv4_f(<4 x float> [[ARG]]) | 
|  | ; CHECK-NEXT:    ret <4 x float> [[LOG]] | 
|  | ; | 
|  | %log = tail call <4 x float> @_Z3logDv4_f(<4 x float> %arg) | 
|  | ret <4 x float> %log | 
|  | } | 
|  |  | 
|  | define <8 x float> @test_log_cr_v8f32(<8 x float> %arg) { | 
|  | ; CHECK-LABEL: define <8 x float> @test_log_cr_v8f32 | 
|  | ; CHECK-SAME: (<8 x float> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <8 x float> @_Z3logDv8_f(<8 x float> [[ARG]]) | 
|  | ; CHECK-NEXT:    ret <8 x float> [[LOG]] | 
|  | ; | 
|  | %log = tail call <8 x float> @_Z3logDv8_f(<8 x float> %arg) | 
|  | ret <8 x float> %log | 
|  | } | 
|  |  | 
|  | define <16 x float> @test_log_cr_v16f32(<16 x float> %arg) { | 
|  | ; CHECK-LABEL: define <16 x float> @test_log_cr_v16f32 | 
|  | ; CHECK-SAME: (<16 x float> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <16 x float> @_Z3logDv16_f(<16 x float> [[ARG]]) | 
|  | ; CHECK-NEXT:    ret <16 x float> [[LOG]] | 
|  | ; | 
|  | %log = tail call <16 x float> @_Z3logDv16_f(<16 x float> %arg) | 
|  | ret <16 x float> %log | 
|  | } | 
|  |  | 
|  | define double @test_log_f64(double %arg) { | 
|  | ; CHECK-LABEL: define double @test_log_f64 | 
|  | ; CHECK-SAME: (double [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call double @_Z3logd(double [[ARG]]) | 
|  | ; CHECK-NEXT:    ret double [[LOG]] | 
|  | ; | 
|  | %log = tail call double @_Z3logd(double %arg) | 
|  | ret double %log | 
|  | } | 
|  |  | 
|  | define <2 x double> @test_log_v2f64(<2 x double> %arg) { | 
|  | ; CHECK-LABEL: define <2 x double> @test_log_v2f64 | 
|  | ; CHECK-SAME: (<2 x double> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <2 x double> @_Z3logDv2_d(<2 x double> [[ARG]]) | 
|  | ; CHECK-NEXT:    ret <2 x double> [[LOG]] | 
|  | ; | 
|  | %log = tail call <2 x double> @_Z3logDv2_d(<2 x double> %arg) | 
|  | ret <2 x double> %log | 
|  | } | 
|  |  | 
|  | define <3 x double> @test_log_v3f64(<3 x double> %arg) { | 
|  | ; CHECK-LABEL: define <3 x double> @test_log_v3f64 | 
|  | ; CHECK-SAME: (<3 x double> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <3 x double> @_Z3logDv3_d(<3 x double> [[ARG]]) | 
|  | ; CHECK-NEXT:    ret <3 x double> [[LOG]] | 
|  | ; | 
|  | %log = tail call <3 x double> @_Z3logDv3_d(<3 x double> %arg) | 
|  | ret <3 x double> %log | 
|  | } | 
|  |  | 
|  | define <4 x double> @test_log_v4f64(<4 x double> %arg) { | 
|  | ; CHECK-LABEL: define <4 x double> @test_log_v4f64 | 
|  | ; CHECK-SAME: (<4 x double> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <4 x double> @_Z3logDv4_d(<4 x double> [[ARG]]) | 
|  | ; CHECK-NEXT:    ret <4 x double> [[LOG]] | 
|  | ; | 
|  | %log = tail call <4 x double> @_Z3logDv4_d(<4 x double> %arg) | 
|  | ret <4 x double> %log | 
|  | } | 
|  |  | 
|  | define <8 x double> @test_log_v8f64(<8 x double> %arg) { | 
|  | ; CHECK-LABEL: define <8 x double> @test_log_v8f64 | 
|  | ; CHECK-SAME: (<8 x double> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <8 x double> @_Z3logDv8_d(<8 x double> [[ARG]]) | 
|  | ; CHECK-NEXT:    ret <8 x double> [[LOG]] | 
|  | ; | 
|  | %log = tail call <8 x double> @_Z3logDv8_d(<8 x double> %arg) | 
|  | ret <8 x double> %log | 
|  | } | 
|  |  | 
|  | define <16 x double> @test_log_v16f64(<16 x double> %arg) { | 
|  | ; CHECK-LABEL: define <16 x double> @test_log_v16f64 | 
|  | ; CHECK-SAME: (<16 x double> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <16 x double> @_Z3logDv16_d(<16 x double> [[ARG]]) | 
|  | ; CHECK-NEXT:    ret <16 x double> [[LOG]] | 
|  | ; | 
|  | %log = tail call <16 x double> @_Z3logDv16_d(<16 x double> %arg) | 
|  | ret <16 x double> %log | 
|  | } | 
|  |  | 
|  | define half @test_log_f16(half %arg) { | 
|  | ; CHECK-LABEL: define half @test_log_f16 | 
|  | ; CHECK-SAME: (half [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call half @_Z3logDh(half [[ARG]]) | 
|  | ; CHECK-NEXT:    ret half [[LOG]] | 
|  | ; | 
|  | %log = tail call half @_Z3logDh(half %arg) | 
|  | ret half %log | 
|  | } | 
|  |  | 
|  | define half @test_log_f16_fast(half %arg) { | 
|  | ; CHECK-LABEL: define half @test_log_f16_fast | 
|  | ; CHECK-SAME: (half [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call fast half @llvm.log.f16(half [[ARG]]) | 
|  | ; CHECK-NEXT:    ret half [[LOG]] | 
|  | ; | 
|  | %log = tail call fast half @_Z3logDh(half %arg) | 
|  | ret half %log | 
|  | } | 
|  |  | 
|  | define <2 x half> @test_log_v2f16(<2 x half> %arg) { | 
|  | ; CHECK-LABEL: define <2 x half> @test_log_v2f16 | 
|  | ; CHECK-SAME: (<2 x half> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <2 x half> @_Z3logDv2_Dh(<2 x half> [[ARG]]) | 
|  | ; CHECK-NEXT:    ret <2 x half> [[LOG]] | 
|  | ; | 
|  | %log = tail call <2 x half> @_Z3logDv2_Dh(<2 x half> %arg) | 
|  | ret <2 x half> %log | 
|  | } | 
|  |  | 
|  | define <3 x half> @test_log_v3f16(<3 x half> %arg) { | 
|  | ; CHECK-LABEL: define <3 x half> @test_log_v3f16 | 
|  | ; CHECK-SAME: (<3 x half> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <3 x half> @_Z3logDv3_Dh(<3 x half> [[ARG]]) | 
|  | ; CHECK-NEXT:    ret <3 x half> [[LOG]] | 
|  | ; | 
|  | %log = tail call <3 x half> @_Z3logDv3_Dh(<3 x half> %arg) | 
|  | ret <3 x half> %log | 
|  | } | 
|  |  | 
|  | define <4 x half> @test_log_v4f16(<4 x half> %arg) { | 
|  | ; CHECK-LABEL: define <4 x half> @test_log_v4f16 | 
|  | ; CHECK-SAME: (<4 x half> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <4 x half> @_Z3logDv4_Dh(<4 x half> [[ARG]]) | 
|  | ; CHECK-NEXT:    ret <4 x half> [[LOG]] | 
|  | ; | 
|  | %log = tail call <4 x half> @_Z3logDv4_Dh(<4 x half> %arg) | 
|  | ret <4 x half> %log | 
|  | } | 
|  |  | 
|  | define <8 x half> @test_log_v8f16(<8 x half> %arg) { | 
|  | ; CHECK-LABEL: define <8 x half> @test_log_v8f16 | 
|  | ; CHECK-SAME: (<8 x half> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <8 x half> @_Z3logDv8_Dh(<8 x half> [[ARG]]) | 
|  | ; CHECK-NEXT:    ret <8 x half> [[LOG]] | 
|  | ; | 
|  | %log = tail call <8 x half> @_Z3logDv8_Dh(<8 x half> %arg) | 
|  | ret <8 x half> %log | 
|  | } | 
|  |  | 
|  | define <16 x half> @test_log_v16f16(<16 x half> %arg) { | 
|  | ; CHECK-LABEL: define <16 x half> @test_log_v16f16 | 
|  | ; CHECK-SAME: (<16 x half> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <16 x half> @_Z3logDv16_Dh(<16 x half> [[ARG]]) | 
|  | ; CHECK-NEXT:    ret <16 x half> [[LOG]] | 
|  | ; | 
|  | %log = tail call <16 x half> @_Z3logDv16_Dh(<16 x half> %arg) | 
|  | ret <16 x half> %log | 
|  | } | 
|  |  | 
|  | define float @test_log_f32_nobuiltin_callsite(float %arg) { | 
|  | ; CHECK-LABEL: define float @test_log_f32_nobuiltin_callsite | 
|  | ; CHECK-SAME: (float [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call float @_Z3logf(float [[ARG]]) #[[ATTR6:[0-9]+]], !fpmath !0 | 
|  | ; CHECK-NEXT:    ret float [[LOG]] | 
|  | ; | 
|  | %log = tail call float @_Z3logf(float %arg) #0, !fpmath !0 | 
|  | ret float %log | 
|  | } | 
|  |  | 
|  | define <2 x float> @test_log_v2f32_nobuiltin_callsite(<2 x float> %arg) { | 
|  | ; CHECK-LABEL: define <2 x float> @test_log_v2f32_nobuiltin_callsite | 
|  | ; CHECK-SAME: (<2 x float> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <2 x float> @_Z3logDv2_f(<2 x float> [[ARG]]) #[[ATTR6]], !fpmath !0 | 
|  | ; CHECK-NEXT:    ret <2 x float> [[LOG]] | 
|  | ; | 
|  | %log = tail call <2 x float> @_Z3logDv2_f(<2 x float> %arg) #0, !fpmath !0 | 
|  | ret <2 x float> %log | 
|  | } | 
|  |  | 
|  | define float @test_log_cr_f32_nobuiltin_callsite(float %arg) { | 
|  | ; CHECK-LABEL: define float @test_log_cr_f32_nobuiltin_callsite | 
|  | ; CHECK-SAME: (float [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call float @_Z3logf(float [[ARG]]) #[[ATTR6]] | 
|  | ; CHECK-NEXT:    ret float [[LOG]] | 
|  | ; | 
|  | %log = tail call float @_Z3logf(float %arg) #0 | 
|  | ret float %log | 
|  | } | 
|  |  | 
|  | define <2 x float> @test_log_cr_v2f32_nobuiltin_callsite(<2 x float> %arg) { | 
|  | ; CHECK-LABEL: define <2 x float> @test_log_cr_v2f32_nobuiltin_callsite | 
|  | ; CHECK-SAME: (<2 x float> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <2 x float> @_Z3logDv2_f(<2 x float> [[ARG]]) #[[ATTR6]] | 
|  | ; CHECK-NEXT:    ret <2 x float> [[LOG]] | 
|  | ; | 
|  | %log = tail call <2 x float> @_Z3logDv2_f(<2 x float> %arg) #0 | 
|  | ret <2 x float> %log | 
|  | } | 
|  |  | 
|  | ; "no-builtins" should be ignored | 
|  | define float @test_log_f32_nobuiltins(float %arg) #1 { | 
|  | ; CHECK-LABEL: define float @test_log_f32_nobuiltins | 
|  | ; CHECK-SAME: (float [[ARG:%.*]]) #[[ATTR0:[0-9]+]] { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call float @_Z3logf(float [[ARG]]) #[[ATTR6]], !fpmath !0 | 
|  | ; CHECK-NEXT:    ret float [[LOG]] | 
|  | ; | 
|  | %log = tail call float @_Z3logf(float %arg) #0, !fpmath !0 | 
|  | ret float %log | 
|  | } | 
|  |  | 
|  | define <2 x float> @test_log_v2f32_nobuiltins(<2 x float> %arg) #1 { | 
|  | ; CHECK-LABEL: define <2 x float> @test_log_v2f32_nobuiltins | 
|  | ; CHECK-SAME: (<2 x float> [[ARG:%.*]]) #[[ATTR0]] { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <2 x float> @_Z3logDv2_f(<2 x float> [[ARG]]) #[[ATTR6]], !fpmath !0 | 
|  | ; CHECK-NEXT:    ret <2 x float> [[LOG]] | 
|  | ; | 
|  | %log = tail call <2 x float> @_Z3logDv2_f(<2 x float> %arg) #0, !fpmath !0 | 
|  | ret <2 x float> %log | 
|  | } | 
|  |  | 
|  | define float @test_log_cr_f32_nobuiltins(float %arg) #1 { | 
|  | ; CHECK-LABEL: define float @test_log_cr_f32_nobuiltins | 
|  | ; CHECK-SAME: (float [[ARG:%.*]]) #[[ATTR0]] { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call float @_Z3logf(float [[ARG]]) #[[ATTR6]] | 
|  | ; CHECK-NEXT:    ret float [[LOG]] | 
|  | ; | 
|  | %log = tail call float @_Z3logf(float %arg) #0 | 
|  | ret float %log | 
|  | } | 
|  |  | 
|  | define <2 x float> @test_log_cr_v2f32_nobuiltins(<2 x float> %arg) #1 { | 
|  | ; CHECK-LABEL: define <2 x float> @test_log_cr_v2f32_nobuiltins | 
|  | ; CHECK-SAME: (<2 x float> [[ARG:%.*]]) #[[ATTR0]] { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call <2 x float> @_Z3logDv2_f(<2 x float> [[ARG]]) #[[ATTR6]] | 
|  | ; CHECK-NEXT:    ret <2 x float> [[LOG]] | 
|  | ; | 
|  | %log = tail call <2 x float> @_Z3logDv2_f(<2 x float> %arg) #0 | 
|  | ret <2 x float> %log | 
|  | } | 
|  |  | 
|  | define float @test_log_f32_preserve_flags(float %arg) { | 
|  | ; CHECK-LABEL: define float @test_log_f32_preserve_flags | 
|  | ; CHECK-SAME: (float [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call nnan ninf float @llvm.log.f32(float [[ARG]]), !fpmath !0 | 
|  | ; CHECK-NEXT:    ret float [[LOG]] | 
|  | ; | 
|  | %log = tail call nnan ninf float @_Z3logf(float %arg), !fpmath !0 | 
|  | ret float %log | 
|  | } | 
|  |  | 
|  | define <2 x float> @test_log_v2f32_preserve_flags(<2 x float> %arg) { | 
|  | ; CHECK-LABEL: define <2 x float> @test_log_v2f32_preserve_flags | 
|  | ; CHECK-SAME: (<2 x float> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call nnan nsz contract <2 x float> @llvm.log.v2f32(<2 x float> [[ARG]]), !fpmath !0 | 
|  | ; CHECK-NEXT:    ret <2 x float> [[LOG]] | 
|  | ; | 
|  | %log = tail call contract nsz nnan <2 x float> @_Z3logDv2_f(<2 x float> %arg), !fpmath !0 | 
|  | ret <2 x float> %log | 
|  | } | 
|  |  | 
|  | define float @test_log_f32_preserve_flags_md(float %arg) { | 
|  | ; CHECK-LABEL: define float @test_log_f32_preserve_flags_md | 
|  | ; CHECK-SAME: (float [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call nnan ninf float @llvm.log.f32(float [[ARG]]), !fpmath !0, !foo !1 | 
|  | ; CHECK-NEXT:    ret float [[LOG]] | 
|  | ; | 
|  | %log = tail call nnan ninf float @_Z3logf(float %arg), !fpmath !0, !foo !1 | 
|  | ret float %log | 
|  | } | 
|  |  | 
|  | define <2 x float> @test_log_v2f32_preserve_flags_md(<2 x float> %arg) { | 
|  | ; CHECK-LABEL: define <2 x float> @test_log_v2f32_preserve_flags_md | 
|  | ; CHECK-SAME: (<2 x float> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call nnan nsz contract <2 x float> @llvm.log.v2f32(<2 x float> [[ARG]]), !fpmath !0, !foo !1 | 
|  | ; CHECK-NEXT:    ret <2 x float> [[LOG]] | 
|  | ; | 
|  | %log = tail call contract nsz nnan <2 x float> @_Z3logDv2_f(<2 x float> %arg), !fpmath !0, !foo !1 | 
|  | ret <2 x float> %log | 
|  | } | 
|  |  | 
|  | define float @test_log_cr_f32_preserve_flags(float %arg) { | 
|  | ; CHECK-LABEL: define float @test_log_cr_f32_preserve_flags | 
|  | ; CHECK-SAME: (float [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call ninf contract float @llvm.log.f32(float [[ARG]]) | 
|  | ; CHECK-NEXT:    ret float [[LOG]] | 
|  | ; | 
|  | %log = tail call ninf contract float @_Z3logf(float %arg) | 
|  | ret float %log | 
|  | } | 
|  |  | 
|  | define <2 x float> @test_log_cr_v2f32_preserve_flags(<2 x float> %arg) { | 
|  | ; CHECK-LABEL: define <2 x float> @test_log_cr_v2f32_preserve_flags | 
|  | ; CHECK-SAME: (<2 x float> [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call nnan nsz <2 x float> @llvm.log.v2f32(<2 x float> [[ARG]]) | 
|  | ; CHECK-NEXT:    ret <2 x float> [[LOG]] | 
|  | ; | 
|  | %log = tail call nnan nsz <2 x float> @_Z3logDv2_f(<2 x float> %arg) | 
|  | ret <2 x float> %log | 
|  | } | 
|  |  | 
|  | ; Test the libm name, not a recognized opencl builtin. | 
|  | declare float @logf(float) #2 | 
|  | declare double @log(double) #2 | 
|  |  | 
|  | define float @test_libm_log_f32(float %arg) { | 
|  | ; CHECK-LABEL: define float @test_libm_log_f32 | 
|  | ; CHECK-SAME: (float [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call float @logf(float [[ARG]]) | 
|  | ; CHECK-NEXT:    ret float [[LOG]] | 
|  | ; | 
|  | %log = tail call float @logf(float %arg) | 
|  | ret float %log | 
|  | } | 
|  |  | 
|  | define float @test_libm_log_f32_fast(float %arg) { | 
|  | ; CHECK-LABEL: define float @test_libm_log_f32_fast | 
|  | ; CHECK-SAME: (float [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call fast float @logf(float [[ARG]]) | 
|  | ; CHECK-NEXT:    ret float [[LOG]] | 
|  | ; | 
|  | %log = tail call fast float @logf(float %arg) | 
|  | ret float %log | 
|  | } | 
|  |  | 
|  | define float @test_libm_log_f32_fpmath(float %arg) { | 
|  | ; CHECK-LABEL: define float @test_libm_log_f32_fpmath | 
|  | ; CHECK-SAME: (float [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call float @logf(float [[ARG]]), !fpmath !0 | 
|  | ; CHECK-NEXT:    ret float [[LOG]] | 
|  | ; | 
|  | %log = tail call float @logf(float %arg), !fpmath !0 | 
|  | ret float %log | 
|  | } | 
|  |  | 
|  | define double @test_libm_log_f64(double %arg) { | 
|  | ; CHECK-LABEL: define double @test_libm_log_f64 | 
|  | ; CHECK-SAME: (double [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call double @log(double [[ARG]]) | 
|  | ; CHECK-NEXT:    ret double [[LOG]] | 
|  | ; | 
|  | %log = tail call double @log(double %arg) | 
|  | ret double %log | 
|  | } | 
|  |  | 
|  | define double @test_libm_log_f64_fast(double %arg) { | 
|  | ; CHECK-LABEL: define double @test_libm_log_f64_fast | 
|  | ; CHECK-SAME: (double [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call fast double @log(double [[ARG]]) | 
|  | ; CHECK-NEXT:    ret double [[LOG]] | 
|  | ; | 
|  | %log = tail call fast double @log(double %arg) | 
|  | ret double %log | 
|  | } | 
|  |  | 
|  | define double @test_libm_log_f64_fpmath(double %arg) { | 
|  | ; CHECK-LABEL: define double @test_libm_log_f64_fpmath | 
|  | ; CHECK-SAME: (double [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call double @log(double [[ARG]]), !fpmath !0 | 
|  | ; CHECK-NEXT:    ret double [[LOG]] | 
|  | ; | 
|  | %log = tail call double @log(double %arg), !fpmath !0 | 
|  | ret double %log | 
|  | } | 
|  |  | 
|  | define float @test_log_f32_fast_noinline(float %arg) { | 
|  | ; CHECK-LABEL: define float @test_log_f32_fast_noinline | 
|  | ; CHECK-SAME: (float [[ARG:%.*]]) { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call fast float @_Z3logf(float [[ARG]]) #[[ATTR7:[0-9]+]], !fpmath !0 | 
|  | ; CHECK-NEXT:    ret float [[LOG]] | 
|  | ; | 
|  | %log = tail call fast float @_Z3logf(float %arg) #3, !fpmath !0 | 
|  | ret float %log | 
|  | } | 
|  |  | 
|  | define float @test_log_f32_fast_optsize(float %arg) #4 { | 
|  | ; CHECK-LABEL: define float @test_log_f32_fast_optsize | 
|  | ; CHECK-SAME: (float [[ARG:%.*]]) #[[ATTR2:[0-9]+]] { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call fast float @llvm.log.f32(float [[ARG]]), !fpmath !0 | 
|  | ; CHECK-NEXT:    ret float [[LOG]] | 
|  | ; | 
|  | %log = tail call fast float @_Z3logf(float %arg), !fpmath !0 | 
|  | ret float %log | 
|  | } | 
|  |  | 
|  | define float @test_log_f32_fast_minsize(float %arg) #5 { | 
|  | ; CHECK-LABEL: define float @test_log_f32_fast_minsize | 
|  | ; CHECK-SAME: (float [[ARG:%.*]]) #[[ATTR3:[0-9]+]] { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call fast float @llvm.log.f32(float [[ARG]]), !fpmath !0 | 
|  | ; CHECK-NEXT:    ret float [[LOG]] | 
|  | ; | 
|  | %log = tail call fast float @_Z3logf(float %arg), !fpmath !0 | 
|  | ret float %log | 
|  | } | 
|  |  | 
|  | define float @test_log_f32_nsz_contract_optsize(float %arg) #4 { | 
|  | ; CHECK-LABEL: define float @test_log_f32_nsz_contract_optsize | 
|  | ; CHECK-SAME: (float [[ARG:%.*]]) #[[ATTR2]] { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call nsz contract float @llvm.log.f32(float [[ARG]]), !fpmath !0 | 
|  | ; CHECK-NEXT:    ret float [[LOG]] | 
|  | ; | 
|  | %log = tail call nsz contract float @_Z3logf(float %arg), !fpmath !0 | 
|  | ret float %log | 
|  | } | 
|  |  | 
|  | define float @test_log_f32_nsz_contract_minsize(float %arg) #5 { | 
|  | ; CHECK-LABEL: define float @test_log_f32_nsz_contract_minsize | 
|  | ; CHECK-SAME: (float [[ARG:%.*]]) #[[ATTR3]] { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call nsz contract float @_Z3logf(float [[ARG]]), !fpmath !0 | 
|  | ; CHECK-NEXT:    ret float [[LOG]] | 
|  | ; | 
|  | %log = tail call nsz contract float @_Z3logf(float %arg), !fpmath !0 | 
|  | ret float %log | 
|  | } | 
|  |  | 
|  | define half @test_log_f16_fast_minsize(half %arg) #5 { | 
|  | ; CHECK-LABEL: define half @test_log_f16_fast_minsize | 
|  | ; CHECK-SAME: (half [[ARG:%.*]]) #[[ATTR3]] { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call half @_Z3logDh(half [[ARG]]) | 
|  | ; CHECK-NEXT:    ret half [[LOG]] | 
|  | ; | 
|  | %log = tail call half @_Z3logDh(half %arg) | 
|  | ret half %log | 
|  | } | 
|  |  | 
|  | define float @test_log_f32_strictfp(float %arg) #6 { | 
|  | ; CHECK-LABEL: define float @test_log_f32_strictfp | 
|  | ; CHECK-SAME: (float [[ARG:%.*]]) #[[ATTR4:[0-9]+]] { | 
|  | ; CHECK-NEXT:    [[LOG:%.*]] = tail call nsz float @_Z3logf(float [[ARG]]) #[[ATTR4]] | 
|  | ; CHECK-NEXT:    ret float [[LOG]] | 
|  | ; | 
|  | %log = tail call nsz float @_Z3logf(float %arg) #6 | 
|  | ret float %log | 
|  | } | 
|  |  | 
|  | attributes #0 = { nobuiltin } | 
|  | attributes #1 = { "no-builtins" } | 
|  | attributes #2 = { nounwind memory(none) } | 
|  | attributes #3 = { noinline } | 
|  | attributes #4 = { optsize } | 
|  | attributes #5 = { minsize } | 
|  | attributes #6 = { strictfp } | 
|  |  | 
|  | !0 = !{float 3.000000e+00} | 
|  | !1 = !{i32 1234} |