llvm/clang/test/CodeGenCUDA/library-builtin.cu
Fangrui Song fd739804e0 [test] Add {{.*}} to make ELF tests immune to dso_local/dso_preemptable/(none) differences
For a default visibility external linkage definition, dso_local is set for ELF
-fno-pic/-fpie and COFF and Mach-O. Since default clang -cc1 for ELF is similar
to -fpic ("PIC Level" is not set), this nuance causes unneeded binary format differences.

To make emitted IR similar, ELF -cc1 -fpic will default to -fno-semantic-interposition,
which sets dso_local for default visibility external linkage definitions.

To make this flip smooth and enable future (dso_local as definition default),
this patch replaces (function) `define ` with `define{{.*}} `,
(variable/constant/alias) `= ` with `={{.*}} `, or inserts appropriate `{{.*}} `.
2020-12-31 00:27:11 -08:00

23 lines
962 B
Plaintext

// REQUIRES: x86-registered-target
// REQUIRES: nvptx-registered-target
// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm -o - %s | \
// RUN: FileCheck --check-prefixes=HOST,BOTH %s
// RUN: %clang_cc1 -fcuda-is-device -triple nvptx64-nvidia-cuda \
// RUN: -emit-llvm -o - %s | FileCheck %s --check-prefixes=DEVICE,BOTH
// BOTH-LABEL: define{{.*}} float @logf(float
// logf() should be calling itself recursively as we don't have any standard
// library on device side.
// DEVICE: call contract float @logf(float
extern "C" __attribute__((device)) float logf(float __x) { return logf(__x); }
// NOTE: this case is to illustrate the expected differences in behavior between
// the host and device. In general we do not mess with host-side standard
// library.
//
// Host is assumed to have standard library, so logf() calls LLVM intrinsic.
// HOST: call contract float @llvm.log.f32(float
extern "C" float logf(float __x) { return logf(__x); }