HomeSort by relevance Sort by last modified time
    Searched refs:BBWeight (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Analysis/
ProfileEstimatorPass.cpp 129 double BBWeight = 0;
137 BBWeight += ignoreMissing(w);
154 BBWeight = getExecutionCount(BB);
181 double incoming = BBWeight;
206 EdgeInformation[BB->getParent()][edge] = BBWeight;
209 EdgeInformation[BB->getParent()][edge] = BBWeight * ExecCount;
252 BBWeight *= (ExecCount+1);
255 BlockInformation[BB->getParent()][BB] = BBWeight;
268 EdgeInformation[BB->getParent()][edge] = BBWeight;
276 BBWeight -= getEdgeWeight(edge)
    [all...]
ProfileVerifierPass.cpp 40 double BBWeight;
97 double BBWeight = PI->getExecutionCount(BB);
98 if (BBWeight == ProfileInfoT<FType, BType>::MissingValue) { BBWeight = 0; }
131 << "BBWeight=" << format("%20.20g",BBWeight) << ","
149 << "BBWeight=" << format("%20.20g",DI->BBWeight) << ","
280 DI.BBWeight = PI->getExecutionCount(BB);
281 CheckValue(DI.BBWeight == ProfileInfoT<FType, BType>::MissingValue
    [all...]

Completed in 2551 milliseconds