mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
cc12b285b6
This will currently accept the old number of bytes syntax, and convert it to a scalar. This should be removed in the near future (I think I converted all of the tests already, but likely missed a few). Not sure what the exact syntax and policy should be. We can continue printing the number of bytes for non-generic instructions to avoid test churn and only allow non-scalar types for generic instructions. This will currently print the LLT in parentheses, but accept parsing the existing integers and implicitly converting to scalar. The parentheses are a bit ugly, but the parser logic seems unable to deal without either parentheses or some keyword to indicate the start of a type.
38 lines
1.8 KiB
LLVM
38 lines
1.8 KiB
LLVM
; RUN: llc -debugify-and-strip-all-safe=0 -mtriple armv7 %s -stop-before=livedebugvalues -o - | FileCheck %s
|
|
|
|
define <4 x i8> @i(<4 x i8>*, <4 x i8>) !dbg !8 {
|
|
%3 = load <4 x i8>, <4 x i8>* %0, align 4, !dbg !14
|
|
; CHECK: $[[reg:.*]] = VLD1LNd32 {{.*}} debug-location !14 :: (load (s32) from %ir.0)
|
|
; CHECK-NEXT: VMOVLuv8i16 {{.*}} $[[reg]], {{.*}} debug-location !14
|
|
; CHECK-NEXT: VMOVLuv4i32 {{.*}} $[[reg]], {{.*}} debug-location !14
|
|
%4 = udiv <4 x i8> %1, %3, !dbg !15
|
|
call void @llvm.dbg.value(metadata <4 x i8> %3, metadata !11, metadata !DIExpression()), !dbg !14
|
|
call void @llvm.dbg.value(metadata <4 x i8> %4, metadata !13, metadata !DIExpression()), !dbg !15
|
|
ret <4 x i8> %4, !dbg !16
|
|
}
|
|
|
|
declare void @llvm.dbg.value(metadata, metadata, metadata)
|
|
|
|
!llvm.debugify = !{!0, !1, !2, !3}
|
|
!llvm.module.flags = !{!4}
|
|
!llvm.dbg.cu = !{!5}
|
|
|
|
!0 = !{i32 24}
|
|
!1 = !{i32 19}
|
|
!2 = !{i32 3}
|
|
!3 = !{i32 2}
|
|
!4 = !{i32 2, !"Debug Info Version", i32 3}
|
|
!5 = distinct !DICompileUnit(language: DW_LANG_C, file: !6, producer: "debugify", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !7)
|
|
!6 = !DIFile(filename: "/Users/vsk/Desktop/test.ll", directory: "/")
|
|
!7 = !{}
|
|
!8 = distinct !DISubprogram(name: "i", linkageName: "i", scope: null, file: !6, line: 1, type: !9, isLocal: false, isDefinition: true, scopeLine: 1, isOptimized: true, unit: !5, retainedNodes: !10)
|
|
!9 = !DISubroutineType(types: !7)
|
|
!10 = !{!11, !13}
|
|
!11 = !DILocalVariable(name: "1", scope: !8, file: !6, line: 1, type: !12)
|
|
!12 = !DIBasicType(name: "ty32", size: 32, encoding: DW_ATE_unsigned)
|
|
!13 = !DILocalVariable(name: "2", scope: !8, file: !6, line: 2, type: !12)
|
|
!14 = !DILocation(line: 1, column: 1, scope: !8)
|
|
!15 = !DILocation(line: 2, column: 1, scope: !8)
|
|
!16 = !DILocation(line: 3, column: 1, scope: !8)
|
|
!17 = !{i32 2, !"Debug Info Version", i32 3}
|