[llvm] [DebugInfo][RemoveDIs] Eliminate another debug-info variation flag (PR #133917)
Orlando Cazalet-Hyams via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 03:15:39 PDT 2025
================
@@ -1365,72 +1303,3 @@ TEST(Local, ExpressionForConstant) {
EXPECT_EQ(Expr, nullptr);
}
-TEST(Local, ReplaceDbgVariableRecord) {
- LLVMContext C;
- // FIXME: PreserveInputDbgFormat is set to true because this test has
- // been written to expect debug intrinsics rather than debug records; use the
- // intrinsic format until we update the test checks.
- auto SettingGuard = SaveDbgInfoFormat();
- PreserveInputDbgFormat = cl::boolOrDefault::BOU_TRUE;
-
- // Test that RAUW also replaces the operands of DbgVariableRecord objects,
- // i.e. non-instruction stored debugging information.
- std::unique_ptr<Module> M = parseIR(C,
- R"(
- declare void @llvm.dbg.value(metadata, metadata, metadata)
- define void @f(i32 %a) !dbg !8 {
- entry:
- %foo = add i32 %a, 1, !dbg !13
- %bar = add i32 %foo, 0, !dbg !13
- call void @llvm.dbg.value(metadata i32 %bar, metadata !11, metadata !DIExpression()), !dbg !13
- ret void, !dbg !14
- }
- !llvm.dbg.cu = !{!0}
- !llvm.module.flags = !{!3, !4}
- !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 6.0.0", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
- !1 = !DIFile(filename: "t2.c", directory: "foo")
- !2 = !{}
- !3 = !{i32 2, !"Dwarf Version", i32 4}
- !4 = !{i32 2, !"Debug Info Version", i32 3}
- !8 = distinct !DISubprogram(name: "f", scope: !1, file: !1, line: 1, type: !9, isLocal: false, isDefinition: true, scopeLine: 1, isOptimized: false, unit: !0, retainedNodes: !2)
- !9 = !DISubroutineType(types: !10)
- !10 = !{null}
- !11 = !DILocalVariable(name: "x", scope: !8, file: !1, line: 2, type: !12)
- !12 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
- !13 = !DILocation(line: 2, column: 7, scope: !8)
- !14 = !DILocation(line: 3, column: 1, scope: !8)
- )");
- auto *GV = M->getNamedValue("f");
- ASSERT_TRUE(GV);
- auto *F = dyn_cast<Function>(GV);
- ASSERT_TRUE(F);
- BasicBlock::iterator It = F->front().begin();
- Instruction *FooInst = &*It;
- It = std::next(It);
- Instruction *BarInst = &*It;
- It = std::next(It);
- DbgValueInst *DVI = dyn_cast<DbgValueInst>(It);
- ASSERT_TRUE(DVI);
- It = std::next(It);
- Instruction *RetInst = &*It;
-
----------------
OCHyams wrote:
Isn't this second half of the test still useful? Should we just delete the intrinsic part of the test, and change the intrisic to a DbgRecord in the IR?
https://github.com/llvm/llvm-project/pull/133917
More information about the llvm-commits
mailing list