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.
65 lines
1.7 KiB
LLVM
65 lines
1.7 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) {
|
|
; if (cond1) {
|
|
; if (cond2) {
|
|
; sideeffect(0);
|
|
; } else {
|
|
; sideeffect(1);
|
|
; }
|
|
; sink();
|
|
; } else {
|
|
; sideeffect(2);
|
|
; }
|
|
; sink();
|
|
; }
|
|
|
|
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-apple-macosx10.14.0"
|
|
|
|
; CHECK: define {{.*}}@_Z3fooii{{.*}}#[[outlined_func_attr:[0-9]+]]
|
|
; CHECK-NOT: _Z3fooii.cold
|
|
; CHECK: attributes #[[outlined_func_attr]] = { {{.*}}minsize
|
|
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
|
|
%5 = load i32, i32* %3, align 4
|
|
%6 = icmp ne i32 %5, 0
|
|
br i1 %6, label %7, label %13
|
|
|
|
; <label>:7: ; preds = %2
|
|
%8 = load i32, i32* %4, align 4
|
|
%9 = icmp ne i32 %8, 0
|
|
br i1 %9, label %10, label %11
|
|
|
|
; <label>:10: ; preds = %7
|
|
call void @_Z10sideeffecti(i32 0)
|
|
br label %12
|
|
|
|
; <label>:11: ; preds = %7
|
|
call void @_Z10sideeffecti(i32 1)
|
|
br label %12
|
|
|
|
; <label>:12: ; preds = %11, %10
|
|
call void @_Z4sinkv() #3
|
|
br label %14
|
|
|
|
; <label>:13: ; preds = %2
|
|
call void @_Z10sideeffecti(i32 2)
|
|
br label %14
|
|
|
|
; <label>:14: ; preds = %13, %12
|
|
call void @_Z4sinkv() #3
|
|
ret void
|
|
}
|
|
|
|
declare void @_Z10sideeffecti(i32)
|
|
|
|
declare void @_Z4sinkv() cold
|