|
| 1 | +; Test that calls to "printf" are mapped to OpenCL Extended instruction "printf" |
| 2 | +; Also ensure that spirv-val can validate format strings in non-constant space |
| 3 | +; |
| 4 | +; Testcase derived from: |
| 5 | +; #include <sycl/sycl.hpp> |
| 6 | +; int main() { |
| 7 | +; sycl::queue queue; |
| 8 | +; queue.submit([&](sycl::handler &cgh) { |
| 9 | +; cgh.single_task([] { |
| 10 | +; __builtin_printf("%s, %s %d %d %d %s!\n", "Hello", "world", 1, 2, 3, "Bam"); |
| 11 | +; }); |
| 12 | +; }); |
| 13 | +; } |
| 14 | + |
| 15 | +; RUN: llvm-as %s -o %t.bc |
| 16 | +; RUN: not llvm-spirv %t.bc -o %t.spv 2>&1 | FileCheck %s --check-prefix=CHECK-WO-EXT |
| 17 | + |
| 18 | +; RUN: llvm-spirv -spirv-text %t.bc -o %t.spt --spirv-ext=+SPV_EXT_relaxed_printf_string_address_space |
| 19 | +; RUN: FileCheck < %t.spt %s --check-prefix=CHECK-SPIRV |
| 20 | +; RUN: llvm-spirv %t.bc -o %t.spv --spirv-ext=+SPV_EXT_relaxed_printf_string_address_space |
| 21 | +; Change TODO to RUN when spirv-val allows non-constant printf formats |
| 22 | +; TODO: spirv-val %t.spv |
| 23 | + |
| 24 | + |
| 25 | +; CHECK-WO-EXT: RequiresExtension: Feature requires the following SPIR-V extension: |
| 26 | +; CHECK-WO-EXT: SPV_EXT_relaxed_printf_string_address_space extension should be allowed to translate this module, because this LLVM module contains the printf function with format string, whose address space is not equal to 2 (constant). |
| 27 | + |
| 28 | +; CHECK-SPIRV: Extension "SPV_EXT_relaxed_printf_string_address_space" |
| 29 | +; CHECK-SPIRV: ExtInst [[#]] [[#]] [[#]] printf [[#]] |
| 30 | + |
| 31 | +target datalayout = "e-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-n8:16:32:64-G1" |
| 32 | +target triple = "spir64-unknown-unknown" |
| 33 | + |
| 34 | +@.str = external addrspace(1) constant [21 x i8] |
| 35 | + |
| 36 | +define spir_kernel void @_ZTSZZ4mainENKUlRN4sycl3_V17handlerEE_clES2_EUlvE_() { |
| 37 | +entry: |
| 38 | + %call.i = tail call spir_func i32 (ptr addrspace(4), ...) @printf(ptr addrspace(4) addrspacecast (ptr addrspace(1) @.str to ptr addrspace(4)), ptr addrspace(4) null, ptr addrspace(4) null, i32 0, i32 0, i32 0, ptr addrspace(4) null) |
| 39 | + ret void |
| 40 | +} |
| 41 | + |
| 42 | +declare spir_func i32 @printf(ptr addrspace(4), ...) |
0 commit comments