Lines Matching refs:cl

107 static cl::opt<std::string> SampleProfileFile(
108 "sample-profile-file", cl::init(""), cl::value_desc("filename"),
109 cl::desc("Profile file loaded by -sample-profile"), cl::Hidden);
114 static cl::opt<std::string> SampleProfileRemappingFile(
115 "sample-profile-remapping-file", cl::init(""), cl::value_desc("filename"),
116 cl::desc("Profile remapping file loaded by -sample-profile"), cl::Hidden);
118 static cl::opt<unsigned> SampleProfileMaxPropagateIterations(
119 "sample-profile-max-propagate-iterations", cl::init(100),
120 cl::desc("Maximum number of iterations to go through when propagating "
123 static cl::opt<unsigned> SampleProfileRecordCoverage(
124 "sample-profile-check-record-coverage", cl::init(0), cl::value_desc("N"),
125 cl::desc("Emit a warning if less than N% of records in the input profile "
128 static cl::opt<unsigned> SampleProfileSampleCoverage(
129 "sample-profile-check-sample-coverage", cl::init(0), cl::value_desc("N"),
130 cl::desc("Emit a warning if less than N% of samples in the input profile "
133 static cl::opt<bool> NoWarnSampleUnused(
134 "no-warn-sample-unused", cl::init(false), cl::Hidden,
135 cl::desc("Use this option to turn off/on warnings about function with "
138 static cl::opt<bool> ProfileSampleAccurate(
139 "profile-sample-accurate", cl::Hidden, cl::init(false),
140 cl::desc("If the sample profile is accurate, we will mark all un-sampled "
144 static cl::opt<bool> ProfileAccurateForSymsInList(
145 "profile-accurate-for-symsinlist", cl::Hidden, cl::ZeroOrMore,
146 cl::init(true),
147 cl::desc("For symbols in profile symbol list, regard their profiles to "
150 static cl::opt<bool> ProfileMergeInlinee(
151 "sample-profile-merge-inlinee", cl::Hidden, cl::init(false),
152 cl::desc("Merge past inlinee's profile to outline version if sample "
155 static cl::opt<bool> ProfileTopDownLoad(
156 "sample-profile-top-down-load", cl::Hidden, cl::init(false),
157 cl::desc("Do profile annotation and inlining for functions in top-down "
160 static cl::opt<bool> ProfileSizeInline(
161 "sample-profile-inline-size", cl::Hidden, cl::init(false),
162 cl::desc("Inline cold call sites in profile loader if it's beneficial "
165 static cl::opt<int> SampleColdCallSiteThreshold(
166 "sample-profile-cold-inline-threshold", cl::Hidden, cl::init(45),
167 cl::desc("Threshold for inlining cold callsites"));