mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	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
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; RUN: llc < %s -mtriple=xcore-unknown-unknown -O0 | FileCheck %s
 | |
| 
 | |
| ; target datalayout = "e-m:e-p:32:32-i1:8:32-i8:8:32-i16:16:32-i64:32-f64:32-a:0:32-n32"
 | |
| ; target triple = "xcore"
 | |
| 
 | |
| ; CHECK-LABEL: f
 | |
| ; CHECK: entsp 2
 | |
| ; ...the prologue...
 | |
| ; CHECK: .loc 1 2 0 prologue_end      # test.c:2:0
 | |
| ; CHECK: add r0, r0, 1
 | |
| ; CHECK: retsp 2
 | |
| define i32 @f(i32 %a) {
 | |
| entry:
 | |
|   %a.addr = alloca i32, align 4
 | |
|   store i32 %a, i32* %a.addr, align 4
 | |
|   call void @llvm.dbg.declare(metadata i32* %a.addr, metadata !11, metadata !DIExpression()), !dbg !12
 | |
|   %0 = load i32, i32* %a.addr, align 4, !dbg !12
 | |
|   %add = add nsw i32 %0, 1, !dbg !12
 | |
|   ret i32 %add, !dbg !12
 | |
| }
 | |
| 
 | |
| declare void @llvm.dbg.declare(metadata, metadata, metadata)
 | |
| 
 | |
| !llvm.dbg.cu = !{!0}
 | |
| !llvm.module.flags = !{!9, !10}
 | |
| !0 = !DICompileUnit(language: DW_LANG_C99, isOptimized: false, emissionKind: 1, file: !1, enums: !2, retainedTypes: !2, subprograms: !3, globals: !2, imports: !2)
 | |
| !1 = !DIFile(filename: "test.c", directory: "")
 | |
| !2 = !{}
 | |
| !3 = !{!4}
 | |
| !4 = !DISubprogram(name: "f", line: 2, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, scopeLine: 2, file: !1, scope: !1, type: !6, function: i32 (i32)* @f, variables: !2)
 | |
| !6 = !DISubroutineType(types: !7)
 | |
| !7 = !{!8, !8}
 | |
| !8 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
 | |
| !9 = !{i32 2, !"Dwarf Version", i32 4}
 | |
| !10 = !{i32 2, !"Debug Info Version", i32 3}
 | |
| !11 = !DILocalVariable(tag: DW_TAG_arg_variable, name: "a", line: 2, arg: 1, scope: !4, file: !1, type: !8)
 | |
| !12 = !DILocation(line: 2, scope: !4)
 | |
| 
 |