2014-03-11 06:41:28 +08:00
; RUN: opt < %s -sample-profile -sample-profile-file=%S/Inputs/discriminator.prof | opt -analyze -branch-prob | FileCheck %s
2016-05-28 07:20:16 +08:00
; RUN: opt < %s -passes=sample-profile -sample-profile-file=%S/Inputs/discriminator.prof | opt -analyze -branch-prob | FileCheck %s
2014-03-11 06:41:28 +08:00
; Original code
;
; 1 int foo(int i) {
; 2 int x = 0;
; 3 while (i < 100) {
; 4 if (i < 5) x--;
; 5 i++;
; 6 }
; 7 return x;
; 8 }
;
; In this test, if the loop is executed 100 times, the decrement operation
; at line 4 should only execute 5 times. This is reflected in the profile
; data for line offset 3. In Inputs/discriminator.prof, we have:
;
; 3: 100
; 3.1: 5
;
; This means that the predicate 'i < 5' (line 3) is executed 100 times,
; but the then branch (line 3.1) is only executed 5 times.
2015-11-06 06:03:56 +08:00
define i32 @foo ( i32 %i ) #0 !dbg !4 {
2014-03-11 06:41:28 +08:00
; CHECK: Printing analysis 'Branch Probability Analysis' for function 'foo':
entry:
%i.addr = alloca i32 , align 4
%x = alloca i32 , align 4
store i32 %i , i32 * %i.addr , align 4
store i32 0 , i32 * %x , align 4 , !dbg !10
br label %while.cond , !dbg !11
while.cond: ; preds = %if.end, %entry
2015-02-28 05:17:42 +08:00
%0 = load i32 , i32 * %i.addr , align 4 , !dbg !12
2014-03-11 06:41:28 +08:00
%cmp = icmp slt i32 %0 , 100 , !dbg !12
br i1 %cmp , label %while.body , label %while.end , !dbg !12
2015-09-26 07:09:59 +08:00
; CHECK: edge while.cond -> while.body probability is 0x7ebb907a / 0x80000000 = 99.01% [HOT edge]
; CHECK: edge while.cond -> while.end probability is 0x01446f86 / 0x80000000 = 0.99%
2014-03-11 06:41:28 +08:00
while.body: ; preds = %while.cond
2015-02-28 05:17:42 +08:00
%1 = load i32 , i32 * %i.addr , align 4 , !dbg !14
2014-03-11 06:41:28 +08:00
%cmp1 = icmp slt i32 %1 , 50 , !dbg !14
br i1 %cmp1 , label %if.then , label %if.end , !dbg !14
2015-09-26 07:09:59 +08:00
; CHECK: edge while.body -> if.then probability is 0x06666666 / 0x80000000 = 5.00%
; CHECK: edge while.body -> if.end probability is 0x7999999a / 0x80000000 = 95.00% [HOT edge]
2014-03-11 06:41:28 +08:00
if.then: ; preds = %while.body
2015-02-28 05:17:42 +08:00
%2 = load i32 , i32 * %x , align 4 , !dbg !17
2014-03-11 06:41:28 +08:00
%dec = add nsw i32 %2 , -1 , !dbg !17
store i32 %dec , i32 * %x , align 4 , !dbg !17
br label %if.end , !dbg !17
if.end: ; preds = %if.then, %while.body
2015-02-28 05:17:42 +08:00
%3 = load i32 , i32 * %i.addr , align 4 , !dbg !19
2014-03-11 06:41:28 +08:00
%inc = add nsw i32 %3 , 1 , !dbg !19
store i32 %inc , i32 * %i.addr , align 4 , !dbg !19
br label %while.cond , !dbg !20
while.end: ; preds = %while.cond
2015-02-28 05:17:42 +08:00
%4 = load i32 , i32 * %x , align 4 , !dbg !21
2014-03-11 06:41:28 +08:00
ret i32 %4 , !dbg !21
}
!llvm.dbg.cu = ! { !0 }
!llvm.module.flags = ! { !7 , !8 }
!llvm.ident = ! { !9 }
2016-04-15 23:57:41 +08:00
!0 = distinct !DICompileUnit ( language: D W _ L A N G _ C 99 , producer: "clang version 3.5 " , isOptimized: false , emissionKind: N o D e b u g , file: !1 , enums: !2 , retainedTypes: !2 , globals: !2 , imports: !2 )
2015-04-30 00:38:44 +08:00
!1 = !DIFile ( filename: "discriminator.c" , directory: "." )
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
!2 = ! { }
2016-04-15 23:57:41 +08:00
!4 = distinct !DISubprogram ( name: "foo" , line: 1 , isLocal: false , isDefinition: true , virtualIndex: 6 , flags: D I F l a g P r o t o t y p e d , isOptimized: false , unit: !0 , scopeLine: 1 , file: !1 , scope: !5 , type: !6 , variables: !2 )
2015-04-30 00:38:44 +08:00
!5 = !DIFile ( filename: "discriminator.c" , directory: "." )
!6 = !DISubroutineType ( types: !2 )
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
!7 = ! { i32 2 , !"Dwarf Version" , i32 4 }
2015-03-04 01:24:31 +08:00
!8 = ! { i32 1 , !"Debug Info Version" , i32 3 }
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 = ! { !"clang version 3.5 " }
2015-04-30 00:38:44 +08:00
!10 = !DILocation ( line: 2 , scope: !4 )
!11 = !DILocation ( line: 3 , scope: !4 )
!12 = !DILocation ( line: 3 , scope: !13 )
!13 = !DILexicalBlockFile ( discriminator: 1 , file: !1 , scope: !4 )
!14 = !DILocation ( line: 4 , scope: !15 )
!15 = distinct !DILexicalBlock ( line: 4 , column: 0 , file: !1 , scope: !16 )
!16 = distinct !DILexicalBlock ( line: 3 , column: 0 , file: !1 , scope: !4 )
!17 = !DILocation ( line: 4 , scope: !18 )
!18 = !DILexicalBlockFile ( discriminator: 1 , file: !1 , scope: !15 )
!19 = !DILocation ( line: 5 , scope: !16 )
!20 = !DILocation ( line: 6 , scope: !16 )
!21 = !DILocation ( line: 7 , scope: !4 )