1;; This test checks for emission of DW_OP_implicit_value operation 2;; for float type. 3 4; RUN: llc -debugger-tune=gdb -filetype=obj %s -o - | llvm-dwarfdump - | FileCheck %s 5; RUN: llc -debugger-tune=lldb -filetype=obj %s -o - | llvm-dwarfdump - | FileCheck %s 6 7; CHECK: .debug_info contents: 8; CHECK: DW_TAG_variable 9; CHECK-NEXT: DW_AT_location ({{.*}} 10; CHECK-NEXT: [{{.*}}): DW_OP_implicit_value 0x4 0xc3 0xf5 0x48 0x40) 11; CHECK-NEXT: DW_AT_name ("f") 12 13; RUN: llc -debugger-tune=sce -filetype=obj %s -o - | llvm-dwarfdump - | FileCheck %s -check-prefix=SCE-CHECK 14 15; SCE-CHECK: .debug_info contents: 16; SCE-CHECK: DW_TAG_variable 17; SCE-CHECK-NEXT: DW_AT_location ({{.*}} 18; SCE-CHECK-NEXT: [{{.*}}): DW_OP_constu 0x4048f5c3, DW_OP_stack_value) 19; SCE-CHECK-NEXT: DW_AT_name ("f") 20 21;; Generated from: clang -ggdb -O1 22;;int main() { 23;; float f = 3.14f; 24;; printf("dummy\n"); 25;; f *= f; 26;; return 0; 27;;} 28; ModuleID = 'implicit_value-float.c' 29source_filename = "implicit_value-float.c" 30target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" 31target triple = "x86_64-unknown-linux-gnu" 32 33@str = private unnamed_addr constant [6 x i8] c"dummy\00", align 1 34 35; Function Attrs: nofree nounwind uwtable 36define dso_local i32 @main() local_unnamed_addr #0 !dbg !7 { 37entry: 38 call void @llvm.dbg.value(metadata float 0x40091EB860000000, metadata !12, metadata !DIExpression()), !dbg !14 39 %puts = call i32 @puts(i8* nonnull dereferenceable(1) getelementptr inbounds ([6 x i8], [6 x i8]* @str, i64 0, i64 0)), !dbg !15 40 call void @llvm.dbg.value(metadata float undef, metadata !12, metadata !DIExpression()), !dbg !14 41 ret i32 0, !dbg !16 42} 43 44; Function Attrs: nounwind readnone speculatable willreturn 45declare void @llvm.dbg.value(metadata, metadata, metadata) #1 46 47; Function Attrs: nofree nounwind 48declare i32 @puts(i8* nocapture readonly) local_unnamed_addr #2 49 50attributes #0 = { nofree nounwind uwtable } 51attributes #1 = { nounwind readnone speculatable willreturn } 52attributes #2 = { nofree nounwind } 53 54!llvm.dbg.cu = !{!0} 55!llvm.module.flags = !{!3, !4, !5} 56!llvm.ident = !{!6} 57 58!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 11.0.0", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, splitDebugInlining: false, nameTableKind: None) 59!1 = !DIFile(filename: "implicit_value-float.c", directory: "/home/") 60!2 = !{} 61!3 = !{i32 7, !"Dwarf Version", i32 4} 62!4 = !{i32 2, !"Debug Info Version", i32 3} 63!5 = !{i32 1, !"wchar_size", i32 4} 64!6 = !{!"clang version 11.0.0"} 65!7 = distinct !DISubprogram(name: "main", scope: !1, file: !1, line: 1, type: !8, scopeLine: 1, flags: DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !11) 66!8 = !DISubroutineType(types: !9) 67!9 = !{!10} 68!10 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed) 69!11 = !{!12} 70!12 = !DILocalVariable(name: "f", scope: !7, file: !1, line: 2, type: !13) 71!13 = !DIBasicType(name: "float", size: 32, encoding: DW_ATE_float) 72!14 = !DILocation(line: 0, scope: !7) 73!15 = !DILocation(line: 3, column: 2, scope: !7) 74!16 = !DILocation(line: 5, column: 2, scope: !7) 75