reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
   68
   69
   70
   71
// RUN: %clang_cc1 -emit-llvm -o - -triple x86_64-darwin-apple %s | FileCheck %s

#pragma OPENCL EXTENSION cl_khr_fp16 : enable

// CHECK-LABEL: define void @test_half_builtins
void test_half_builtins(half h0, half h1, half h2) {
  volatile half res;

  // CHECK: call half @llvm.copysign.f16(half %h0, half %h1)
  res = __builtin_copysignf16(h0, h1);

  // CHECK: call half @llvm.fabs.f16(half %h0)
  res = __builtin_fabsf16(h0);

  // CHECK: call half @llvm.ceil.f16(half %h0)
  res = __builtin_ceilf16(h0);

  // CHECK: call half @llvm.cos.f16(half %h0)
  res = __builtin_cosf16(h0);

  // CHECK: call half @llvm.exp.f16(half %h0)
  res = __builtin_expf16(h0);

  // CHECK: call half @llvm.exp2.f16(half %h0)
  res = __builtin_exp2f16(h0);

  // CHECK: call half @llvm.floor.f16(half %h0)
  res = __builtin_floorf16(h0);

  // CHECK: call half @llvm.fma.f16(half %h0, half %h1, half %h2)
  res = __builtin_fmaf16(h0, h1 ,h2);

  // CHECK: call half @llvm.maxnum.f16(half %h0, half %h1)
  res = __builtin_fmaxf16(h0, h1);

  // CHECK: call half @llvm.minnum.f16(half %h0, half %h1)
  res = __builtin_fminf16(h0, h1);

  // CHECK: frem half %h0, %h1
  res = __builtin_fmodf16(h0, h1);

  // CHECK: call half @llvm.pow.f16(half %h0, half %h1)
  res = __builtin_powf16(h0, h1);

  // CHECK: call half @llvm.log10.f16(half %h0)
  res = __builtin_log10f16(h0);

  // CHECK: call half @llvm.log2.f16(half %h0)
  res = __builtin_log2f16(h0);

  // CHECK: call half @llvm.log.f16(half %h0)
  res = __builtin_logf16(h0);

  // CHECK: call half @llvm.rint.f16(half %h0)
  res = __builtin_rintf16(h0);

  // CHECK: call half @llvm.round.f16(half %h0)
  res = __builtin_roundf16(h0);

  // CHECK: call half @llvm.sin.f16(half %h0)
  res = __builtin_sinf16(h0);

  // CHECK: call half @llvm.sqrt.f16(half %h0)
  res = __builtin_sqrtf16(h0);

  // CHECK: call half @llvm.trunc.f16(half %h0)
  res = __builtin_truncf16(h0);

  // CHECK: call half @llvm.canonicalize.f16(half %h0)
  res = __builtin_canonicalizef16(h0);
}