3d255a8bd5b39c1851e7fd465e7815fedb27736c
[oota-llvm.git] / test / DebugInfo / X86 / aligned_stack_var.ll
1 ; RUN: llc %s -mtriple=x86_64-pc-linux-gnu -O0 -filetype=obj -o %t
2 ; RUN: llvm-dwarfdump -debug-dump=info %t | FileCheck %s
3
4 ; If stack is realigned, we shouldn't describe locations of local
5 ; variables by giving offset from the frame pointer (%rbp):
6 ; push %rpb
7 ; mov  %rsp,%rbp
8 ; and  ALIGNMENT,%rsp ; (%rsp and %rbp are different now)
9 ; It's better to use offset from %rsp instead.
10
11 ; DW_AT_location of variable "x" shouldn't be equal to
12 ; (DW_OP_fbreg: .*): DW_OP_fbreg has code 0x91
13
14 ; CHECK: {{0x.* DW_TAG_variable}}
15 ; CHECK-NOT: {{DW_AT_location.*DW_FORM_block1.*0x.*91}}
16 ; CHECK: NULL
17
18 define void @_Z3runv() nounwind uwtable {
19 entry:
20   %x = alloca i32, align 32
21   call void @llvm.dbg.declare(metadata i32* %x, metadata !9, metadata !{!"0x102"}), !dbg !12
22   ret void, !dbg !13
23 }
24
25 declare void @llvm.dbg.declare(metadata, metadata, metadata) nounwind readnone
26
27 !llvm.dbg.cu = !{!0}
28 !llvm.module.flags = !{!15}
29
30 !0 = !{!"0x11\004\00clang version 3.2 (trunk 155696:155697) (llvm/trunk 155696)\000\00\000\00\000", !14, !1, !1, !3, !1,  !1} ; [ DW_TAG_compile_unit ]
31 !1 = !{}
32 !3 = !{!5}
33 !5 = !{!"0x2e\00run\00run\00_Z3runv\001\000\001\000\006\00256\000\001", !14, !6, !7, null, void ()* @_Z3runv, null, null, !1} ; [ DW_TAG_subprogram ]
34 !6 = !{!"0x29", !14} ; [ DW_TAG_file_type ]
35 !7 = !{!"0x15\00\000\000\000\000\000\000", i32 0, null, null, !8, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
36 !8 = !{null}
37 !9 = !{!"0x100\00x\002\000", !10, !6, !11} ; [ DW_TAG_auto_variable ]
38 !10 = !{!"0xb\001\0012\000", !14, !5} ; [ DW_TAG_lexical_block ]
39 !11 = !{!"0x24\00int\000\0032\0032\000\000\005", null, null} ; [ DW_TAG_base_type ]
40 !12 = !{i32 2, i32 7, !10, null}
41 !13 = !{i32 3, i32 1, !10, null}
42 !14 = !{!"test.cc", !"/home/samsonov/debuginfo"}
43 !15 = !{i32 1, !"Debug Info Version", i32 2}