Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / NVPTX / symbol-naming.ll
blob780bc7422f739d7b3e95c53ce8187d9aab3764e5
1 ; RUN: llc < %s -march=nvptx -mattr=+ptx60 -mcpu=sm_30 | FileCheck %s
2 ; RUN: llc < %s -march=nvptx64 -mattr=+ptx60 -mcpu=sm_30 | FileCheck %s
3 ; RUN: %if ptxas && !ptxas-12.0 %{ llc < %s -march=nvptx -mattr=+ptx60 -mcpu=sm_30 | %ptxas-verify %}
4 ; RUN: %if ptxas %{ llc < %s -march=nvptx64 -mattr=+ptx60 -mcpu=sm_30 | %ptxas-verify %}
6 ; Verify that the NVPTX target removes invalid symbol names prior to emitting
7 ; PTX.
9 ; CHECK-NOT: .str
10 ; CHECK-NOT: <str>
11 ; CHECK-NOT: another-str
12 ; CHECK-NOT: .function.
14 ; CHECK-DAG: _$_str
15 ; CHECK-DAG: _$_str_$_
16 ; CHECK-DAG: _$_str1
17 ; CHECK-DAG: another_$_str
19 ; CHECK-DAG: _$_function_$_
20 ; CHECK-DAG: _$_function_$_2
22 target datalayout = "e-i64:64-v16:16-v32:32-n16:32:64"
23 target triple = "nvptx64-unknown-unknown"
26 @.str = private unnamed_addr constant [13 x i8] c"%d %f %c %d\0A\00", align 1
27 @"<str>" = private unnamed_addr constant [13 x i8] c"%d %f %c %d\0A\00", align 1
28 @_$_str = private unnamed_addr constant [13 x i8] c"%d %f %c %d\0A\00", align 1
29 @another-str = private unnamed_addr constant [13 x i8] c"%d %f %c %d\0A\00", align 1
32 ; Function Attrs: nounwind
33 define internal void @.function.() {
34 entry:
35   %call = call i32 (ptr, ...) @printf(ptr @.str)
36   %call2 = call i32 (ptr, ...) @printf(ptr @"<str>")
37   ret void
40 ; Function Attrs: nounwind
41 define internal void @_$_function_$_() {
42 entry:
43   %call = call i32 (ptr, ...) @printf(ptr @_$_str)
44   %call2 = call i32 (ptr, ...) @printf(ptr @another-str)
45   ret void
48 ; Function Attrs: nounwind
49 define void @global_function() {
50 entry:
51   call void @.function.()
52   call void @_$_function_$_()
53   ret void
56 declare i32 @printf(ptr, ...)