2019-04-16 00:49:00 +08:00
|
|
|
//===-- SizeOpts.cpp - code size optimization related code ----------------===//
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains some shared code size optimization related code.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Transforms/Utils/SizeOpts.h"
|
2019-10-29 03:35:34 +08:00
|
|
|
|
2019-04-16 00:49:00 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2019-10-29 03:35:34 +08:00
|
|
|
cl::opt<bool> EnablePGSO(
|
2019-04-16 00:49:00 +08:00
|
|
|
"pgso", cl::Hidden, cl::init(true),
|
2019-10-29 03:35:34 +08:00
|
|
|
cl::desc("Enable the profile guided size optimizations. "));
|
|
|
|
|
|
|
|
cl::opt<bool> PGSOLargeWorkingSetSizeOnly(
|
|
|
|
"pgso-lwss-only", cl::Hidden, cl::init(true),
|
|
|
|
cl::desc("Apply the profile guided size optimizations only "
|
|
|
|
"if the working set size is large (except for cold code.)"));
|
|
|
|
|
2019-11-14 05:49:33 +08:00
|
|
|
cl::opt<bool> PGSOColdCodeOnly(
|
2020-02-06 02:02:12 +08:00
|
|
|
"pgso-cold-code-only", cl::Hidden, cl::init(false),
|
2019-11-14 05:49:33 +08:00
|
|
|
cl::desc("Apply the profile guided size optimizations only "
|
|
|
|
"to cold code."));
|
|
|
|
|
2020-01-18 02:02:50 +08:00
|
|
|
cl::opt<bool> PGSOColdCodeOnlyForInstrPGO(
|
2020-02-06 02:02:12 +08:00
|
|
|
"pgso-cold-code-only-for-instr-pgo", cl::Hidden, cl::init(false),
|
2020-01-18 02:02:50 +08:00
|
|
|
cl::desc("Apply the profile guided size optimizations only "
|
|
|
|
"to cold code under instrumentation PGO."));
|
|
|
|
|
|
|
|
cl::opt<bool> PGSOColdCodeOnlyForSamplePGO(
|
|
|
|
"pgso-cold-code-only-for-sample-pgo", cl::Hidden, cl::init(true),
|
|
|
|
cl::desc("Apply the profile guided size optimizations only "
|
|
|
|
"to cold code under sample PGO."));
|
|
|
|
|
2019-12-04 07:02:37 +08:00
|
|
|
cl::opt<bool> PGSOIRPassOrTestOnly(
|
[PGO][PGSO] Enable size optimizations in code gen / target passes for cold code.
Summary: Split off of D67120.
Reviewers: davidxl
Subscribers: hiraditya, asb, rbar, johnrusso, simoncook, sabuasal, niosHD, jrtc27, MaskRay, zzheng, edward-jones, rogfer01, MartinMosbeck, brucehoult, the_o, PkmX, jocewei, lenary, s.egerton, pzheng, sameer.abuasal, apazos, luismarques, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D71288
2019-11-08 00:52:05 +08:00
|
|
|
"pgso-ir-pass-or-test-only", cl::Hidden, cl::init(false),
|
2019-12-04 07:02:37 +08:00
|
|
|
cl::desc("Apply the profile guided size optimizations only"
|
|
|
|
"to the IR passes or tests."));
|
|
|
|
|
2019-10-29 03:35:34 +08:00
|
|
|
cl::opt<bool> ForcePGSO(
|
|
|
|
"force-pgso", cl::Hidden, cl::init(false),
|
|
|
|
cl::desc("Force the (profiled-guided) size optimizations. "));
|
|
|
|
|
|
|
|
cl::opt<int> PgsoCutoffInstrProf(
|
2020-01-18 02:02:50 +08:00
|
|
|
"pgso-cutoff-instr-prof", cl::Hidden, cl::init(950000), cl::ZeroOrMore,
|
2019-10-29 03:35:34 +08:00
|
|
|
cl::desc("The profile guided size optimization profile summary cutoff "
|
|
|
|
"for instrumentation profile."));
|
|
|
|
|
|
|
|
cl::opt<int> PgsoCutoffSampleProf(
|
|
|
|
"pgso-cutoff-sample-prof", cl::Hidden, cl::init(800000), cl::ZeroOrMore,
|
|
|
|
cl::desc("The profile guided size optimization profile summary cutoff "
|
|
|
|
"for sample profile."));
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
struct BasicBlockBFIAdapter {
|
|
|
|
static bool isFunctionColdInCallGraph(const Function *F,
|
|
|
|
ProfileSummaryInfo *PSI,
|
|
|
|
BlockFrequencyInfo &BFI) {
|
|
|
|
return PSI->isFunctionColdInCallGraph(F, BFI);
|
|
|
|
}
|
|
|
|
static bool isFunctionHotInCallGraphNthPercentile(int CutOff,
|
|
|
|
const Function *F,
|
|
|
|
ProfileSummaryInfo *PSI,
|
|
|
|
BlockFrequencyInfo &BFI) {
|
|
|
|
return PSI->isFunctionHotInCallGraphNthPercentile(CutOff, F, BFI);
|
|
|
|
}
|
2020-03-04 01:53:07 +08:00
|
|
|
static bool isFunctionColdInCallGraphNthPercentile(int CutOff,
|
|
|
|
const Function *F,
|
|
|
|
ProfileSummaryInfo *PSI,
|
|
|
|
BlockFrequencyInfo &BFI) {
|
|
|
|
return PSI->isFunctionColdInCallGraphNthPercentile(CutOff, F, BFI);
|
|
|
|
}
|
2019-10-29 03:35:34 +08:00
|
|
|
static bool isColdBlock(const BasicBlock *BB,
|
|
|
|
ProfileSummaryInfo *PSI,
|
|
|
|
BlockFrequencyInfo *BFI) {
|
|
|
|
return PSI->isColdBlock(BB, BFI);
|
|
|
|
}
|
|
|
|
static bool isHotBlockNthPercentile(int CutOff,
|
|
|
|
const BasicBlock *BB,
|
|
|
|
ProfileSummaryInfo *PSI,
|
|
|
|
BlockFrequencyInfo *BFI) {
|
|
|
|
return PSI->isHotBlockNthPercentile(CutOff, BB, BFI);
|
|
|
|
}
|
2020-03-04 01:53:07 +08:00
|
|
|
static bool isColdBlockNthPercentile(int CutOff, const BasicBlock *BB,
|
|
|
|
ProfileSummaryInfo *PSI,
|
|
|
|
BlockFrequencyInfo *BFI) {
|
|
|
|
return PSI->isColdBlockNthPercentile(CutOff, BB, BFI);
|
|
|
|
}
|
2019-10-29 03:35:34 +08:00
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
2019-04-16 00:49:00 +08:00
|
|
|
|
2019-10-29 03:35:34 +08:00
|
|
|
bool llvm::shouldOptimizeForSize(const Function *F, ProfileSummaryInfo *PSI,
|
2019-11-21 05:08:07 +08:00
|
|
|
BlockFrequencyInfo *BFI,
|
|
|
|
PGSOQueryType QueryType) {
|
|
|
|
return shouldFuncOptimizeForSizeImpl<BasicBlockBFIAdapter>(F, PSI, BFI,
|
|
|
|
QueryType);
|
2019-04-16 00:49:00 +08:00
|
|
|
}
|
|
|
|
|
2019-10-29 03:35:34 +08:00
|
|
|
bool llvm::shouldOptimizeForSize(const BasicBlock *BB, ProfileSummaryInfo *PSI,
|
2019-11-21 05:08:07 +08:00
|
|
|
BlockFrequencyInfo *BFI,
|
|
|
|
PGSOQueryType QueryType) {
|
2020-01-30 01:36:31 +08:00
|
|
|
assert(BB);
|
2019-11-21 05:08:07 +08:00
|
|
|
return shouldOptimizeForSizeImpl<BasicBlockBFIAdapter>(BB, PSI, BFI,
|
|
|
|
QueryType);
|
2019-04-16 00:49:00 +08:00
|
|
|
}
|