2010-12-03 07:29:58 +08:00
|
|
|
; RUN: llc < %s -asm-verbose=false -mtriple=x86_64-apple-darwin10 -use-unknown-locations | FileCheck %s
|
2010-05-07 01:49:17 +08:00
|
|
|
|
|
|
|
; The divide instruction does not have a debug location. CodeGen should
|
2010-11-18 10:04:25 +08:00
|
|
|
; represent this in the debug information. This is done by setting line
|
|
|
|
; and column to 0
|
2010-05-07 01:49:17 +08:00
|
|
|
|
2011-03-26 01:20:59 +08:00
|
|
|
; CHECK: leal
|
2010-11-18 10:04:25 +08:00
|
|
|
; CHECK-NEXT: .loc 1 0 0
|
2011-03-26 01:20:59 +08:00
|
|
|
; CHECK: cltd
|
|
|
|
; CHECK-NEXT: idivl
|
2015-03-01 07:52:24 +08:00
|
|
|
; CHECK-NEXT: .loc 1 4 3
|
2010-05-07 01:49:17 +08:00
|
|
|
|
2015-11-06 06:03:56 +08:00
|
|
|
define i32 @foo(i32 %w, i32 %x, i32 %y, i32 %z) nounwind !dbg !1 {
|
2010-05-07 01:49:17 +08:00
|
|
|
entry:
|
|
|
|
%a = add i32 %w, %x, !dbg !8
|
|
|
|
%b = sdiv i32 %a, %y
|
|
|
|
%c = add i32 %b, %z, !dbg !8
|
|
|
|
ret i32 %c, !dbg !8
|
|
|
|
}
|
|
|
|
|
2013-03-08 08:23:31 +08:00
|
|
|
!llvm.dbg.cu = !{!3}
|
2013-11-23 05:49:45 +08:00
|
|
|
!llvm.module.flags = !{!12}
|
2013-03-08 08:23:31 +08:00
|
|
|
|
2015-08-01 02:58:39 +08:00
|
|
|
!0 = !DILocalVariable(name: "x", line: 1, arg: 2, scope: !1, file: !2, type: !6)
|
2015-11-06 06:03:56 +08:00
|
|
|
!1 = distinct !DISubprogram(name: "foo", linkageName: "foo", line: 1, isLocal: false, isDefinition: true, virtualIndex: 6, isOptimized: false, scopeLine: 1, file: !10, scope: !2, type: !4)
|
2015-04-30 00:38:44 +08:00
|
|
|
!2 = !DIFile(filename: "test.c", directory: "/dir")
|
2015-08-04 01:26:41 +08:00
|
|
|
!3 = distinct !DICompileUnit(language: DW_LANG_C99, producer: "producer", isOptimized: false, emissionKind: 0, file: !10, enums: !11, retainedTypes: !11, subprograms: !9)
|
2015-04-30 00:38:44 +08:00
|
|
|
!4 = !DISubroutineType(types: !5)
|
IR: Make metadata typeless in assembly
Now that `Metadata` is typeless, reflect that in the assembly. These
are the matching assembly changes for the metadata/value split in
r223802.
- Only use the `metadata` type when referencing metadata from a call
intrinsic -- i.e., only when it's used as a `Value`.
- Stop pretending that `ValueAsMetadata` is wrapped in an `MDNode`
when referencing it from call intrinsics.
So, assembly like this:
define @foo(i32 %v) {
call void @llvm.foo(metadata !{i32 %v}, metadata !0)
call void @llvm.foo(metadata !{i32 7}, metadata !0)
call void @llvm.foo(metadata !1, metadata !0)
call void @llvm.foo(metadata !3, metadata !0)
call void @llvm.foo(metadata !{metadata !3}, metadata !0)
ret void, !bar !2
}
!0 = metadata !{metadata !2}
!1 = metadata !{i32* @global}
!2 = metadata !{metadata !3}
!3 = metadata !{}
turns into this:
define @foo(i32 %v) {
call void @llvm.foo(metadata i32 %v, metadata !0)
call void @llvm.foo(metadata i32 7, metadata !0)
call void @llvm.foo(metadata i32* @global, metadata !0)
call void @llvm.foo(metadata !3, metadata !0)
call void @llvm.foo(metadata !{!3}, metadata !0)
ret void, !bar !2
}
!0 = !{!2}
!1 = !{i32* @global}
!2 = !{!3}
!3 = !{}
I wrote an upgrade script that handled almost all of the tests in llvm
and many of the tests in cfe (even handling many `CHECK` lines). I've
attached it (or will attach it in a moment if you're speedy) to PR21532
to help everyone update their out-of-tree testcases.
This is part of PR21532.
llvm-svn: 224257
2014-12-16 03:07:53 +08:00
|
|
|
!5 = !{!6}
|
2015-04-30 00:38:44 +08:00
|
|
|
!6 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
|
|
|
|
!7 = distinct !DILexicalBlock(line: 1, column: 30, file: !10, scope: !1)
|
|
|
|
!8 = !DILocation(line: 4, column: 3, scope: !7)
|
IR: Make metadata typeless in assembly
Now that `Metadata` is typeless, reflect that in the assembly. These
are the matching assembly changes for the metadata/value split in
r223802.
- Only use the `metadata` type when referencing metadata from a call
intrinsic -- i.e., only when it's used as a `Value`.
- Stop pretending that `ValueAsMetadata` is wrapped in an `MDNode`
when referencing it from call intrinsics.
So, assembly like this:
define @foo(i32 %v) {
call void @llvm.foo(metadata !{i32 %v}, metadata !0)
call void @llvm.foo(metadata !{i32 7}, metadata !0)
call void @llvm.foo(metadata !1, metadata !0)
call void @llvm.foo(metadata !3, metadata !0)
call void @llvm.foo(metadata !{metadata !3}, metadata !0)
ret void, !bar !2
}
!0 = metadata !{metadata !2}
!1 = metadata !{i32* @global}
!2 = metadata !{metadata !3}
!3 = metadata !{}
turns into this:
define @foo(i32 %v) {
call void @llvm.foo(metadata i32 %v, metadata !0)
call void @llvm.foo(metadata i32 7, metadata !0)
call void @llvm.foo(metadata i32* @global, metadata !0)
call void @llvm.foo(metadata !3, metadata !0)
call void @llvm.foo(metadata !{!3}, metadata !0)
ret void, !bar !2
}
!0 = !{!2}
!1 = !{i32* @global}
!2 = !{!3}
!3 = !{}
I wrote an upgrade script that handled almost all of the tests in llvm
and many of the tests in cfe (even handling many `CHECK` lines). I've
attached it (or will attach it in a moment if you're speedy) to PR21532
to help everyone update their out-of-tree testcases.
This is part of PR21532.
llvm-svn: 224257
2014-12-16 03:07:53 +08:00
|
|
|
!9 = !{!1}
|
2015-04-30 00:38:44 +08:00
|
|
|
!10 = !DIFile(filename: "test.c", directory: "/dir")
|
2015-03-28 04:46:33 +08:00
|
|
|
!11 = !{}
|
2015-03-04 01:24:31 +08:00
|
|
|
!12 = !{i32 1, !"Debug Info Version", i32 3}
|