mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
02f43f4316
In an effort to fix inlined debug info in situations where the out of line definition of a function preceeds any inlined usage, the order in which some attributes are added to subprogram DIEs may change. (in essence, definition-necessary attributes like DW_AT_low_pc/high_pc will be added immediately, but the names, types, and other features will be delayed to module end where they may either be added to the subprogram DIE or instead reference an abstract definition for those values) These tests can be generalized to be resilient to this change. 5 or so tests actually have to be incompatibly changed to cope with this reordering and will go along with the change that affects the order. llvm-svn: 209554
50 lines
2.5 KiB
LLVM
50 lines
2.5 KiB
LLVM
; RUN: llc -mtriple thumbv7--windows-itanium -filetype obj -o - %s \
|
|
; RUN: | llvm-readobj -r - | FileCheck %s -check-prefix CHECK-ITANIUM
|
|
|
|
; RUN: llc -mtriple thumbv7--windows-msvc -filetype obj -o - %s \
|
|
; RUN: | llvm-readobj -r - | FileCheck %s -check-prefix CHECK-MSVC
|
|
|
|
; ModuleID = '/Users/compnerd/work/llvm/test/MC/ARM/reduced.c'
|
|
target datalayout = "e-m:e-p:32:32-i1:8:32-i8:8:32-i16:16:32-i64:64-v128:64:128-a:0:32-n32-S64"
|
|
target triple = "thumbv7--windows-itanium"
|
|
|
|
define arm_aapcs_vfpcc void @function() {
|
|
entry:
|
|
ret void, !dbg !0
|
|
}
|
|
|
|
!llvm.dbg.cu = !{!7}
|
|
!llvm.module.flags = !{!9, !10}
|
|
|
|
!0 = metadata !{i32 1, i32 0, metadata !1, null}
|
|
!1 = metadata !{i32 786478, metadata !2, metadata !3, metadata !"function", metadata !"function", metadata !"", i32 1, metadata !4, i1 false, i1 true, i32 0, i32 0, null, i32 0, i1 false, void ()* @function, null, null, metadata !6, i32 1} ; [ DW_TAG_subprogram ], [line 1], [def], [function]
|
|
!2 = metadata !{metadata !"/Users/compnerd/work/llvm/test/MC/ARM/reduced.c", metadata !"/Users/compnerd/work/llvm"}
|
|
!3 = metadata !{i32 786473, metadata !2} ; [ DW_TAG_file_type] [/Users/compnerd/work/llvm/test/MC/ARM/reduced.c]
|
|
!4 = metadata !{i32 786453, i32 0, null, metadata !"", i32 0, i64 0, i64 0, i64 0, i32 0, null, metadata !5, i32 0, null, null, null} ; [ DW_TAG_subroutine_type ], [line 0, size 0, align 0, offset 0] [from ]
|
|
!5 = metadata !{null}
|
|
!6 = metadata !{}
|
|
!7 = metadata !{i32 786449, metadata !2, i32 12, metadata !"clang version 3.5.0", i1 false, metadata !"", i32 0, metadata !6, metadata !6, metadata !8, metadata !6, metadata !6, metadata !"", i32 1} ; [ DW_TAG_compile_unit ] [/Users/compnerd/work/llvm/test/MC/ARM/reduced.c] [DW_LANG_C99]
|
|
!8 = metadata !{metadata !1}
|
|
!9 = metadata !{i32 2, metadata !"Dwarf Version", i32 4}
|
|
!10 = metadata !{i32 1, metadata !"Debug Info Version", i32 1}
|
|
|
|
; CHECK-ITANIUM: Relocations [
|
|
; CHECK-ITANIUM: Section {{.*}} .debug_info {
|
|
; CHECK-ITANIUM: 0x6 IMAGE_REL_ARM_SECREL .debug_abbrev
|
|
; CHECK-ITANIUM: 0xC IMAGE_REL_ARM_SECREL .debug_str
|
|
; CHECK-ITANIUM: 0x12 IMAGE_REL_ARM_SECREL .debug_str
|
|
; CHECK-ITANIUM: 0x16 IMAGE_REL_ARM_SECREL .debug_line
|
|
; CHECK-ITANIUM: }
|
|
; CHECK-ITANIUM: Section {{.*}}.debug_pubnames {
|
|
; CHECK-ITANIUM: 0x6 IMAGE_REL_ARM_SECREL .debug_info
|
|
; CHECK-ITANIUM: }
|
|
; CHECK-ITANIUM: ]
|
|
|
|
; CHECK-MSVC: Relocations [
|
|
; CHECK-MSVC: Section {{.*}} .debug$S {
|
|
; CHECK-MSVC: 0xC IMAGE_REL_ARM_SECREL function
|
|
; CHECK-MSVC: 0x10 IMAGE_REL_ARM_SECTION function
|
|
; CHECK-MSVC: }
|
|
; CHECK-MSVC: ]
|
|
|