mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
e56023a059
Finish off PR23080 by renaming the debug info IR constructs from `MD*` to `DI*`. The last of the `DIDescriptor` classes were deleted in r235356, and the last of the related typedefs removed in r235413, so this has all baked for about a week. Note: If you have out-of-tree code (like a frontend), I recommend that you get everything compiling and tests passing with the *previous* commit before updating to this one. It'll be easier to keep track of what code is using the `DIDescriptor` hierarchy and what you've already updated, and I think you're extremely unlikely to insert bugs. YMMV of course. Back to *this* commit: I did this using the rename-md-di-nodes.sh upgrade script I've attached to PR23080 (both code and testcases) and filtered through clang-format-diff.py. I edited the tests for test/Assembler/invalid-generic-debug-node-*.ll by hand since the columns were off-by-three. It should work on your out-of-tree testcases (and code, if you've followed the advice in the previous paragraph). Some of the tests are in badly named files now (e.g., test/Assembler/invalid-mdcompositetype-missing-tag.ll should be 'dicompositetype'); I'll come back and move the files in a follow-up commit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236120 91177308-0d34-0410-b5e6-96231b3b80d8
52 lines
2.2 KiB
LLVM
52 lines
2.2 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 = !DILocation(line: 1, scope: !1)
|
|
!1 = !DISubprogram(name: "function", line: 1, isLocal: false, isDefinition: true, virtualIndex: 6, isOptimized: false, scopeLine: 1, file: !2, scope: !3, type: !4, function: void ()* @function, variables: !6)
|
|
!2 = !DIFile(filename: "/Users/compnerd/work/llvm/test/MC/ARM/reduced.c", directory: "/Users/compnerd/work/llvm")
|
|
!3 = !DIFile(filename: "/Users/compnerd/work/llvm/test/MC/ARM/reduced.c", directory: "/Users/compnerd/work/llvm")
|
|
!4 = !DISubroutineType(types: !5)
|
|
!5 = !{null}
|
|
!6 = !{}
|
|
!7 = !DICompileUnit(language: DW_LANG_C99, producer: "clang version 3.5.0", isOptimized: false, emissionKind: 1, file: !2, enums: !6, retainedTypes: !6, subprograms: !8, globals: !6, imports: !6)
|
|
!8 = !{!1}
|
|
!9 = !{i32 2, !"Dwarf Version", i32 4}
|
|
!10 = !{i32 1, !"Debug Info Version", i32 3}
|
|
|
|
; 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: 0x2C IMAGE_REL_ARM_SECREL function
|
|
; CHECK-MSVC: 0x30 IMAGE_REL_ARM_SECTION function
|
|
; CHECK-MSVC: 0x48 IMAGE_REL_ARM_SECREL function
|
|
; CHECK-MSVC: 0x4C IMAGE_REL_ARM_SECTION function
|
|
; CHECK-MSVC: }
|
|
; CHECK-MSVC: ]
|
|
|