blob: 0e65bf2c58d6a22ab8826d33960ee428d3d81257 [file] [log] [blame]
Tim Northover00ed9962014-03-29 10:18:08 +00001; A by-value struct is a register-indirect value (breg).
2; RUN: llc %s -filetype=asm -o - | FileCheck %s
3
Alexey Samsonov8000e272014-06-09 21:53:47 +00004; CHECK: DW_AT_location
5; CHECK-NEXT: .byte 112
6; 112 = 0x70 = DW_OP_breg0
Tim Northover00ed9962014-03-29 10:18:08 +00007
8; rdar://problem/13658587
9;
10; Generated from
11;
12; struct five
13; {
14; int a;
15; int b;
16; int c;
17; int d;
18; int e;
19; };
20;
21; int
22; return_five_int (struct five f)
23; {
24; return f.a;
25; }
26
27target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-n32:64-S128"
28target triple = "arm64-apple-ios3.0.0"
29
30%struct.five = type { i32, i32, i32, i32, i32 }
31
32; Function Attrs: nounwind ssp
33define i32 @return_five_int(%struct.five* %f) #0 {
34entry:
Adrian Prantl5883af32015-01-19 17:57:29 +000035 call void @llvm.dbg.declare(metadata %struct.five* %f, metadata !17, metadata !{!"0x102\006"}), !dbg !18
David Blaikie79e6c742015-02-27 19:29:02 +000036 %a = getelementptr inbounds %struct.five, %struct.five* %f, i32 0, i32 0, !dbg !19
Tim Northover00ed9962014-03-29 10:18:08 +000037 %0 = load i32* %a, align 4, !dbg !19
38 ret i32 %0, !dbg !19
39}
40
41; Function Attrs: nounwind readnone
Adrian Prantl87b7eb92014-10-01 18:55:02 +000042declare void @llvm.dbg.declare(metadata, metadata, metadata) #1
Tim Northover00ed9962014-03-29 10:18:08 +000043
44attributes #0 = { nounwind ssp }
45attributes #1 = { nounwind readnone }
46
47!llvm.dbg.cu = !{!0}
48!llvm.module.flags = !{!16, !20}
49
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000050!0 = !{!"0x11\0012\00LLVM version 3.4 \000\00\000\00\000", !1, !2, !2, !3, !2, !2} ; [ DW_TAG_compile_unit ] [struct_by_value.c] [DW_LANG_C99]
51!1 = !{!"struct_by_value.c", !""}
52!2 = !{}
53!3 = !{!4}
54!4 = !{!"0x2e\00return_five_int\00return_five_int\00\0013\000\001\000\006\00256\000\0014", !1, !5, !6, null, i32 (%struct.five*)* @return_five_int, null, null, !2} ; [ DW_TAG_subprogram ] [line 13] [def] [scope 14] [return_five_int]
55!5 = !{!"0x29", !1} ; [ DW_TAG_file_type ] [struct_by_value.c]
56!6 = !{!"0x15\00\000\000\000\000\000\000", i32 0, null, null, !7, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
57!7 = !{!8, !9}
58!8 = !{!"0x24\00int\000\0032\0032\000\000\005", null, null} ; [ DW_TAG_base_type ] [int] [line 0, size 32, align 32, offset 0, enc DW_ATE_signed]
59!9 = !{!"0x13\00five\001\00160\0032\000\000\000", !1, null, null, !10, null, null, null} ; [ DW_TAG_structure_type ] [five] [line 1, size 160, align 32, offset 0] [def] [from ]
60!10 = !{!11, !12, !13, !14, !15}
61!11 = !{!"0xd\00a\003\0032\0032\000\000", !1, !9, !8} ; [ DW_TAG_member ] [a] [line 3, size 32, align 32, offset 0] [from int]
62!12 = !{!"0xd\00b\004\0032\0032\0032\000", !1, !9, !8} ; [ DW_TAG_member ] [b] [line 4, size 32, align 32, offset 32] [from int]
63!13 = !{!"0xd\00c\005\0032\0032\0064\000", !1, !9, !8} ; [ DW_TAG_member ] [c] [line 5, size 32, align 32, offset 64] [from int]
64!14 = !{!"0xd\00d\006\0032\0032\0096\000", !1, !9, !8} ; [ DW_TAG_member ] [d] [line 6, size 32, align 32, offset 96] [from int]
65!15 = !{!"0xd\00e\007\0032\0032\00128\000", !1, !9, !8} ; [ DW_TAG_member ] [e] [line 7, size 32, align 32, offset 128] [from int]
66!16 = !{i32 2, !"Dwarf Version", i32 2}
Adrian Prantl5883af32015-01-19 17:57:29 +000067!17 = !{!"0x101\00f\0016777229\000", !4, !5, !9} ; [ DW_TAG_arg_variable ] [f] [line 13]
Duncan P. N. Exon Smith98854692015-01-14 22:27:36 +000068!18 = !MDLocation(line: 13, scope: !4)
69!19 = !MDLocation(line: 16, scope: !4)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000070!20 = !{i32 1, !"Debug Info Version", i32 2}