1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
; RUN: llc < %s -mtriple=x86_64 -mattr=+branch-hint -enable-branch-hint | FileCheck %s
; RUN: llc < %s -mtriple=x86_64 -mattr=+branch-hint -enable-branch-hint -branch-hint-probability-threshold=50 | FileCheck %s
; RUN: llc < %s -mtriple=x86_64 -mattr=+branch-hint -enable-branch-hint -branch-hint-probability-threshold=60 -tail-dup-placement=false | FileCheck --check-prefix=TH60 %s
; Design: Add DS segment override prefix for condition branch who has high
; probability to take (which is greater than the probability threshold of
; enabling branch hint).
define void @p51(i32 %x, ptr %p) {
; CHECK-LABEL: p51:
; CHECK: # %bb.0: # %entry
; CHECK-NEXT: testl %edi, %edi
; CHECK-NEXT: ds
; CHECK-NEXT: je .LBB0_2
; CHECK-NEXT: # %bb.1: # %if.then
; CHECK-NEXT: movl %edi, (%rsi)
; CHECK-NEXT: .LBB0_2: # %if.end
; CHECK-NEXT: retq
;
; TH60-LABEL: p51:
; TH60: # %bb.0: # %entry
; TH60-NEXT: testl %edi, %edi
; TH60-NEXT: je .LBB0_2
; TH60-NEXT: # %bb.1: # %if.then
; TH60-NEXT: movl %edi, (%rsi)
; TH60-NEXT: .LBB0_2: # %if.end
; TH60-NEXT: retq
entry:
%tobool.not = icmp eq i32 %x, 0
br i1 %tobool.not, label %if.end, label %if.then, !prof !0
if.then:
store i32 %x, ptr %p, align 4
br label %if.end
if.end:
ret void
}
define void @p61(i32 %x, ptr %p) {
; CHECK-LABEL: p61:
; CHECK: # %bb.0: # %entry
; CHECK-NEXT: testl %edi, %edi
; CHECK-NEXT: jne .LBB1_1
; CHECK-NEXT: # %bb.2: # %if.end
; CHECK-NEXT: retq
; CHECK-NEXT: .LBB1_1: # %if.then
; CHECK-NEXT: movl %edi, (%rsi)
; CHECK-NEXT: retq
;
; TH60-LABEL: p61:
; TH60: # %bb.0: # %entry
; TH60-NEXT: testl %edi, %edi
; TH60-NEXT: ds
; TH60-NEXT: je .LBB1_2
; TH60-NEXT: # %bb.1: # %if.then
; TH60-NEXT: movl %edi, (%rsi)
; TH60-NEXT: .LBB1_2: # %if.end
; TH60-NEXT: retq
entry:
%tobool.not = icmp eq i32 %x, 0
br i1 %tobool.not, label %if.end, label %if.then, !prof !1
if.then:
store i32 %x, ptr %p, align 4
br label %if.end
if.end:
ret void
}
!0 = !{!"branch_weights", i32 51, i32 49}
!1 = !{!"branch_weights", i32 61, i32 39}
|