1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00
llvm-mirror/test/Transforms/HotColdSplit/outline-multiple-entry-region.ll
Hans Wennborg f6eeeaf04e Revert "[PM/CC1] Add -f[no-]split-cold-code CC1 option to toggle splitting"
This broke Chromium's PGO build, it seems because hot-cold-splitting got turned
on unintentionally. See comment on the code review for repro etc.

> This patch adds -f[no-]split-cold-code CC1 options to clang. This allows
> the splitting pass to be toggled on/off. The current method of passing
> `-mllvm -hot-cold-split=true` to clang isn't ideal as it may not compose
> correctly (say, with `-O0` or `-Oz`).
>
> To implement the -fsplit-cold-code option, an attribute is applied to
> functions to indicate that they may be considered for splitting. This
> removes some complexity from the old/new PM pipeline builders, and
> behaves as expected when LTO is enabled.
>
> Co-authored by: Saleem Abdulrasool <compnerd@compnerd.org>
> Differential Revision: https://reviews.llvm.org/D57265
> Reviewed By: Aditya Kumar, Vedant Kumar
> Reviewers: Teresa Johnson, Aditya Kumar, Fedor Sergeev, Philip Pfaffe, Vedant Kumar

This reverts commit 273c299d5d649a0222fbde03c9a41e41913751b4.
2020-10-19 12:31:14 +02:00

78 lines
2.0 KiB
LLVM

; RUN: opt -S -hotcoldsplit -hotcoldsplit-threshold=0 < %s | FileCheck %s
; Source:
;
; extern __attribute__((cold)) void sink();
; extern void sideeffect(int);
; void foo(int cond1, int cond2) {
; while (true) {
; if (cond1) {
; sideeffect(0); // This is cold (it reaches sink()).
; break;
; }
; if (cond2) {
; sideeffect(1); // This is cold (it reaches sink()).
; break;
; }
; sideeffect(2);
; return;
; }
; sink();
; sideeffect(3);
; }
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-apple-macosx10.14.0"
; CHECK-LABEL: define {{.*}}@_Z3fooii.cold.1
; CHECK: call void @_Z10sideeffecti(i32 1)
; CHECK-LABEL: define {{.*}}@_Z3fooii.cold.2
; CHECK: call void @_Z10sideeffecti(i32 0)
; CHECK-LABEL: define {{.*}}@_Z3fooii.cold.3
; CHECK: call void @_Z4sinkv
; CHECK: call void @_Z10sideeffecti(i32 3)
define void @_Z3fooii(i32, i32) {
%3 = alloca i32, align 4
%4 = alloca i32, align 4
store i32 %0, i32* %3, align 4
store i32 %1, i32* %4, align 4
br label %5
; <label>:5: ; preds = %2
%6 = load i32, i32* %3, align 4
%7 = icmp ne i32 %6, 0
br i1 %7, label %8, label %9
; <label>:8: ; preds = %5
call void @_Z10sideeffecti(i32 0)
br label %14
; <label>:9: ; preds = %5
%10 = load i32, i32* %4, align 4
%11 = icmp ne i32 %10, 0
br i1 %11, label %12, label %13
; <label>:12: ; preds = %9
call void @_Z10sideeffecti(i32 1)
br label %14
; <label>:13: ; preds = %9
call void @_Z10sideeffecti(i32 2)
br label %15
; <label>:14: ; preds = %12, %8
call void @_Z4sinkv() #3
call void @_Z10sideeffecti(i32 3)
br label %15
; <label>:15: ; preds = %14, %13
ret void
}
declare void @_Z10sideeffecti(i32)
declare void @_Z4sinkv() cold