Searched refs:BBWeight (Results 1 - 4 of 4) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DProfileEstimatorPass.cpp129 double BBWeight = 0; local
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
[all...]
H A DProfileVerifierPass.cpp39 double BBWeight; member in struct:llvm::ProfileVerifierPassT::DetailedBlockInfo
96 double BBWeight = PI->getExecutionCount(BB); local
97 if (BBWeight == ProfileInfoT<FType, BType>::MissingValue) { BBWeight = 0; }
130 << "BBWeight=" << format("%20.20g",BBWeight) << ","
148 << "BBWeight=" << format("%20.20g",DI->BBWeight) << ","
279 DI.BBWeight = PI->getExecutionCount(BB);
280 CheckValue(DI.BBWeight
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DCFGMST.h102 uint64_t BBWeight = local
109 uint64_t scaleFactor = BBWeight;
123 addEdge(&*BB, nullptr, BBWeight);
125 << " w = " << BBWeight << "\n");
/external/llvm/lib/Transforms/IPO/
H A DSampleProfile.cpp866 uint64_t &BBWeight = BlockWeights[EC]; local
872 if (TotalWeight > BBWeight) {
873 BBWeight = TotalWeight;
889 if (BBWeight >= TotalWeight)
890 EdgeWeights[UnknownEdge] = BBWeight - TotalWeight;
899 uint64_t &BBWeight = BlockWeights[BB]; local
901 if (BBWeight >= TotalWeight)
902 EdgeWeights[SelfReferentialEdge] = BBWeight - TotalWeight;

Completed in 323 milliseconds