Home | History | Annotate | Download | only in IPO

Lines Matching refs:Threshold

48 InlineLimit("inline-threshold", cl::Hidden, cl::init(225), cl::ZeroOrMore,
52 HintThreshold("inlinehint-threshold", cl::Hidden, cl::init(325),
53 cl::desc("Threshold for inlining functions with inline hint"));
55 // We instroduce this threshold to help performance of instrumentation based
59 ColdThreshold("inlinecold-threshold", cl::Hidden, cl::init(225),
60 cl::desc("Threshold for inlining functions with cold attribute"));
62 // Threshold to use when optsize is specified (and there is no -inline-limit).
68 Inliner::Inliner(char &ID, int Threshold, bool InsertLifetime)
70 InlineLimit : Threshold),
265 int thres = InlineThreshold; // -inline-threshold or else selected by
268 // If -inline-threshold is not given, listen to the optsize attribute when it
269 // would decrease the threshold.
278 // Listen to the inlinehint attribute when it would increase the threshold
289 // Listen to the cold attribute when it would decrease the threshold.
294 // ColdThreshold. If we have -inline-threshold but no -inlinecold-threshold,
295 // do not use the default cold threshold even if it is smaller.
339 Twine(IC.getCost()) + ", threshold=" +
423 " (threshold=" + Twine(IC.getCostDelta() + IC.getCost()) + ")");