Lines Matching full:execcount
34 double ExecCount;
41 explicit ProfileEstimatorPass(const double execcount = 0)
42 : FunctionPass(ID), ExecCount(execcount) {
44 if (execcount == 0) ExecCount = LoopWeight;
91 Pass *createProfileEstimatorPass(const unsigned execcount) {
92 return new ProfileEstimatorPass(execcount);
209 EdgeInformation[BB->getParent()][edge] = BBWeight * ExecCount;
252 BBWeight *= (ExecCount+1);