2017-03-02 02:32:37 +08:00
; RUN: llc -mtriple=x86_64-apple-darwin -O0 -filetype=obj -dwarf-version 4 \
2017-09-12 07:05:20 +08:00
; RUN: -o - < %s | llvm-dwarfdump -v - --debug-info \
2017-03-02 02:32:37 +08:00
; RUN: | FileCheck %s -check-prefixes=CHECK,DWARF4
; RUN: llc -mtriple=x86_64-apple-darwin -O0 -filetype=obj -dwarf-version 5 \
2017-09-12 07:05:20 +08:00
; RUN: -o - < %s | llvm-dwarfdump -v - --debug-info \
2017-03-02 02:32:37 +08:00
; RUN: | FileCheck %s -check-prefixes=CHECK,DWARF5
; Check that we can omit default array lower-bounds.
; DW_LANG_C_plus_plus_11 is new in DWARF v5, so if we use that with
; DWARF v4, we should get the DW_AT_lower_bound attribute.
source_filename = "test/DebugInfo/X86/default-subrange-array.ll"
%class.A = type { [ 42 x i32 ] }
@a = global %class.A zeroinitializer , align 4 , !dbg !0
; CHECK: DW_TAG_class_type
; CHECK: DW_TAG_member
; CHECK-NEXT: DW_AT_name {{.*}} "x"
2017-10-10 22:15:25 +08:00
; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] {{.*}} => {[[ARRAY:0x[0-9a-f]+]]}
2017-03-02 02:32:37 +08:00
; CHECK: [[ARRAY]]: DW_TAG_array_type
; CHECK-NEXT: DW_AT_type
; CHECK: DW_TAG_subrange_type
; CHECK-NEXT: DW_AT_type
; DWARF4-NEXT: DW_AT_lower_bound [DW_FORM_data1] (0x00)
; CHECK-NEXT: DW_AT_count [DW_FORM_data1] (0x2a)
; DWARF5-NOT: DW_AT_lower_bound
!llvm.dbg.cu = ! { !14 }
!llvm.module.flags = ! { !17 }
2017-08-31 02:06:51 +08:00
!0 = !DIGlobalVariableExpression ( var: !1 , expr: !DIExpression ( ) )
2017-03-02 02:32:37 +08:00
!1 = !DIGlobalVariable ( name: "a" , scope: null , file: !2 , line: 1 , type: !3 , isLocal: false , isDefinition: true )
!2 = !DIFile ( filename: "t.cpp" , directory: "/Volumes/Sandbox/llvm" )
!3 = !DICompositeType ( tag: D W _ T A G _ c l a s s _ type , name: "A" , file: !2 , line: 1 , align: 32 , elements: !4 )
!4 = ! { !5 , !10 }
!5 = !DIDerivedType ( tag: D W _ T A G _ m e m b e r , name: "x" , scope: !3 , file: !2 , line: 1 , baseType: !6 , flags: D I F l a g P r i v a t e )
!6 = !DICompositeType ( tag: D W _ T A G _ a r r a y _ type , baseType: !7 , align: 32 , elements: !8 )
!7 = !DIBasicType ( name: "int" , size: 32 , align: 32 , encoding: D W _ A T E _ s i g n e d )
!8 = ! { !9 }
!9 = !DISubrange ( count: 42 , lowerBound: 0 )
!10 = !DISubprogram ( name: "A" , scope: !3 , file: !2 , line: 1 , type: !11 , isLocal: false , isDefinition: false , scopeLine: 1 , virtualIndex: 6 , flags: D I F l a g A r t i f i c i a l | D I F l a g P r o t o t y p e d , isOptimized: false )
!11 = !DISubroutineType ( types: !12 )
!12 = ! { null , !13 }
!13 = !DIDerivedType ( tag: D W _ T A G _ p o i n t e r _ type , baseType: !3 , size: 64 , align: 64 , flags: D I F l a g A r t i f i c i a l | D I F l a g O b j e c t P o i n t e r )
!14 = distinct !DICompileUnit ( language: D W _ L A N G _ C _ p l u s _ p l u s _ 11 , file: !2 , producer: "clang version 3.3 (trunk 169136)" , isOptimized: false , runtimeVersion: 0 , emissionKind: F u l l D e b u g , enums: !15 , retainedTypes: !15 , globals: !16 , imports: !15 )
!15 = ! { }
!16 = ! { !0 }
!17 = ! { i32 1 , !"Debug Info Version" , i32 3 }