brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.4 KiB · 5304abf Raw
35 lines · plain
1// RUN: mlir-opt %s -convert-gpu-to-nvvm='has-redux=1' -mlir-print-debuginfo | FileCheck %s2 3#di_file = #llvm.di_file<"foo.mlir" in "/tmp/">4#di_compile_unit = #llvm.di_compile_unit<5  id = distinct[0]<>, sourceLanguage = DW_LANG_C, file = #di_file,6  producer = "MLIR", isOptimized = true, emissionKind = Full7>8#di_subprogram = #llvm.di_subprogram<9  compileUnit = #di_compile_unit, scope = #di_file, name = "test_const_printf_with_loc",10  file = #di_file, subprogramFlags = "Definition"11>12 13// CHECK-DAG: [[LOC:#[a-zA-Z0-9_]+]] = loc("foo.mlir":0:0)14#loc = loc("foo.mlir":0:0)15 16// Check that debug info metadata from the function is removed from the global location.17gpu.module @test_module_1 {18  // CHECK-DAG: llvm.mlir.global internal constant @[[$PRINT_GLOBAL0:[A-Za-z0-9_]+]]("Hello, world with location\0A\00") {addr_space = 0 : i32} loc([[LOC]])19  // CHECK-DAG: llvm.func @vprintf(!llvm.ptr, !llvm.ptr) -> i32 loc([[LOC]])20 21  gpu.func @test_const_printf_with_loc() {22    gpu.printf "Hello, world with location\n" loc(fused<#di_subprogram>[#loc])23    gpu.return24  }25}26 27// Check that debug info metadata from the function is removed from the global location.28gpu.module @test_module_2 {29  // CHECK-DAG: llvm.func @__nv_abs(i32) -> i32 loc([[LOC]])30  func.func @gpu_abs_with_loc(%arg_i32 : i32) -> (i32) {31    %result32 = math.absi %arg_i32 : i32 loc(fused<#di_subprogram>[#loc])32    func.return %result32 : i3233  }34}35