[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / DebugInfo / X86 / spill-indirect-nrvo.ll
blobaa2490ecb46abebacf4d9b7295d6c098eaa2bc4d
1 ; RUN: llc < %s | FileCheck -check-prefixes=CHECK,OPT %s
2 ; RUN: llc -O0 < %s | FileCheck -check-prefixes=CHECK,OPTNONE %s
4 ; Make sure we insert DW_OP_deref when spilling indirect DBG_VALUE instructions.
6 ; C++ source:
7 ; #define FORCE_SPILL() \
8 ;   __asm volatile("" : : : \
9 ;                    "rax", "rbx", "rcx", "rdx", "rsi", "rdi", "rbp", "r8", \
10 ;                    "r9", "r10", "r11", "r12", "r13", "r14", "r15")
11 ; struct string {
12 ;   string();
13 ;   string(int i);
14 ;   ~string();
15 ;   int i = 0;
16 ; };
17 ; string get_string() {
18 ;   string result = 3;
19 ;   FORCE_SPILL();
20 ;   return result;
21 ; }
23 ; CHECK-LABEL: _Z10get_stringv:
25 ; OPT: #DEBUG_VALUE: get_string:result <- [$rdi+0]
26 ; OPT: movq   %rdi, [[OFFS:[0-9]+]](%rsp)          # 8-byte Spill
27 ; OPT: #DEBUG_VALUE: get_string:result <- [DW_OP_plus_uconst [[OFFS]], DW_OP_deref] [$rsp+0]
28 ; OPT: callq  _ZN6stringC1Ei
30 ; OPTNONE: #DEBUG_VALUE: get_string:result <- [DW_OP_deref] [$rsp+0]
31 ; OPTNONE: movq   %rdi, %rax
32 ; OPTNONE: movq   %rax, [[OFFS:[0-9]+]](%rsp)          # 8-byte Spill
33 ; OPTNONE: #DEBUG_VALUE: get_string:result <- [$rdi+0]
34 ; OPTNONE: callq  _ZN6stringC1Ei
36 ; CHECK: #APP
37 ; CHECK: #NO_APP
39 ; ModuleID = 't.cpp'
40 source_filename = "t.cpp"
41 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
42 target triple = "x86_64--linux"
44 %struct.string = type { i32 }
46 ; Function Attrs: uwtable
47 define void @_Z10get_stringv(%struct.string* noalias sret(%struct.string) %agg.result) #0 !dbg !7 {
48 entry:
49   %nrvo = alloca i1, align 1
50   store i1 false, i1* %nrvo, align 1, !dbg !24
51   call void @llvm.dbg.declare(metadata %struct.string* %agg.result, metadata !23, metadata !DIExpression()), !dbg !25
52   call void @_ZN6stringC1Ei(%struct.string* %agg.result, i32 3), !dbg !26
53   call void asm sideeffect "", "~{rax},~{rbx},~{rcx},~{rdx},~{rsi},~{rdi},~{rbp},~{r8},~{r9},~{r10},~{r11},~{r12},~{r13},~{r14},~{r15},~{dirflag},~{fpsr},~{flags}"() #3, !dbg !27, !srcloc !28
54   store i1 true, i1* %nrvo, align 1, !dbg !29
55   %nrvo.val = load i1, i1* %nrvo, align 1, !dbg !30
56   br i1 %nrvo.val, label %nrvo.skipdtor, label %nrvo.unused, !dbg !30
58 nrvo.unused:                                      ; preds = %entry
59   call void @_ZN6stringD1Ev(%struct.string* %agg.result), !dbg !30
60   br label %nrvo.skipdtor, !dbg !30
62 nrvo.skipdtor:                                    ; preds = %nrvo.unused, %entry
63   ret void, !dbg !30
66 ; Function Attrs: nounwind readnone speculatable
67 declare void @llvm.dbg.declare(metadata, metadata, metadata) #1
69 declare void @_ZN6stringC1Ei(%struct.string*, i32) unnamed_addr
71 declare void @_ZN6stringD1Ev(%struct.string*) unnamed_addr
73 attributes #0 = { uwtable }
74 attributes #1 = { nounwind readnone speculatable }
75 attributes #3 = { nounwind }
77 !llvm.dbg.cu = !{!0}
78 !llvm.module.flags = !{!3, !4, !5}
79 !llvm.ident = !{!6}
81 !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "clang version 6.0.0 ", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
82 !1 = !DIFile(filename: "t.cpp", directory: "C:\5Csrc\5Cllvm-project\5Cbuild")
83 !2 = !{}
84 !3 = !{i32 2, !"Dwarf Version", i32 4}
85 !4 = !{i32 2, !"Debug Info Version", i32 3}
86 !5 = !{i32 1, !"wchar_size", i32 4}
87 !6 = !{!"clang version 6.0.0 "}
88 !7 = distinct !DISubprogram(name: "get_string", linkageName: "_Z10get_stringv", scope: !1, file: !1, line: 13, type: !8, isLocal: false, isDefinition: true, scopeLine: 13, flags: DIFlagPrototyped, isOptimized: true, unit: !0, retainedNodes: !22)
89 !8 = !DISubroutineType(types: !9)
90 !9 = !{!10}
91 !10 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "string", file: !1, line: 7, size: 32, elements: !11, identifier: "_ZTS6string")
92 !11 = !{!12, !14, !18, !21}
93 !12 = !DIDerivedType(tag: DW_TAG_member, name: "i", scope: !10, file: !1, line: 11, baseType: !13, size: 32)
94 !13 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
95 !14 = !DISubprogram(name: "string", scope: !10, file: !1, line: 8, type: !15, isLocal: false, isDefinition: false, scopeLine: 8, flags: DIFlagPrototyped, isOptimized: true)
96 !15 = !DISubroutineType(types: !16)
97 !16 = !{null, !17}
98 !17 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !10, size: 64, flags: DIFlagArtificial | DIFlagObjectPointer)
99 !18 = !DISubprogram(name: "string", scope: !10, file: !1, line: 9, type: !19, isLocal: false, isDefinition: false, scopeLine: 9, flags: DIFlagPrototyped, isOptimized: true)
100 !19 = !DISubroutineType(types: !20)
101 !20 = !{null, !17, !13}
102 !21 = !DISubprogram(name: "~string", scope: !10, file: !1, line: 10, type: !15, isLocal: false, isDefinition: false, scopeLine: 10, flags: DIFlagPrototyped, isOptimized: true)
103 !22 = !{!23}
104 !23 = !DILocalVariable(name: "result", scope: !7, file: !1, line: 14, type: !10)
105 !24 = !DILocation(line: 14, column: 3, scope: !7)
106 !25 = !DILocation(line: 14, column: 10, scope: !7)
107 !26 = !DILocation(line: 14, column: 19, scope: !7)
108 !27 = !DILocation(line: 15, column: 3, scope: !7)
109 !28 = !{i32 -2147471175}
110 !29 = !DILocation(line: 16, column: 3, scope: !7)
111 !30 = !DILocation(line: 17, column: 1, scope: !7)