The `AddDebugInfo` pass currently has a dependency on the `DLTI` MLIR dialect caused by a call to the `fir::support::getOrSetMLIRDataLayout()` utility function. This dependency is not captured in the pass definition. This patch adds the dependency and simplifies several unit tests that had to explicitly use the `DLTI` dialect to prevent the missing dependency from causing compiler failures.
24 lines
1.1 KiB
Plaintext
24 lines
1.1 KiB
Plaintext
// RUN: fir-opt --add-debug-info --mlir-print-debuginfo %s -o - | FileCheck %s
|
|
|
|
module {
|
|
func.func @test(%arg0: !fir.ref<!fir.char<1,?>> {fir.bindc_name = "str"}, %arg1: i64) {
|
|
%0 = fir.emboxchar %arg0, %arg1 : (!fir.ref<!fir.char<1,?>>, i64) -> !fir.boxchar<1>
|
|
%1 = fir.undefined !fir.dscope
|
|
%2:2 = fir.unboxchar %0 : (!fir.boxchar<1>) -> (!fir.ref<!fir.char<1,?>>, index) loc(#loc1)
|
|
%3 = fircg.ext_declare %2#0 typeparams %2#1 dummy_scope %1 {uniq_name = "_QFtestEstr"} : (!fir.ref<!fir.char<1,?>>, index, !fir.dscope) -> !fir.ref<!fir.char<1,?>> loc(#loc1)
|
|
return
|
|
} loc(#loc2)
|
|
}
|
|
|
|
#loc1 = loc("test.f90":5:1)
|
|
#loc2 = loc("test.f90":15:1)
|
|
|
|
// CHECK: #[[VAR:.*]] = #llvm.di_local_variable<{{.*}}name = "._QFtestEstr{{.*}}flags = Artificial>
|
|
// CHECK: func.func @test
|
|
// CHECK: %[[V1:.*]]:2 = fir.unboxchar{{.*}}
|
|
// CHECK: %[[V2:.*]] = fir.convert %[[V1]]#1 : (index) -> i64
|
|
// CHECK: llvm.intr.dbg.value #[[VAR]] = %[[V2]] : i64
|
|
// CHECK: #[[STR_TY:.*]] = #llvm.di_string_type<tag = DW_TAG_string_type, name = "", stringLength = #[[VAR]], encoding = DW_ATE_ASCII>
|
|
// CHECK: #llvm.di_local_variable<{{.*}}name = "str"{{.*}}type = #[[STR_TY]]>
|
|
|