Lines Matching refs:ProfileInfoT
46 ProfileInfoT<FType, BType> *PI;
73 AU.addRequired<ProfileInfoT<FType, BType> >();
85 double ReadOrAssert(typename ProfileInfoT<FType, BType>::Edge);
97 if (BBWeight == ProfileInfoT<FType, BType>::MissingValue) { BBWeight = 0; }
104 typename ProfileInfoT<FType, BType>::Edge E = PI->getEdge(*bbi,BB);
106 if (EdgeWeight == ProfileInfoT<FType, BType>::MissingValue) { EdgeWeight = 0; }
119 typename ProfileInfoT<FType, BType>::Edge E = PI->getEdge(BB,*bbi);
121 if (EdgeWeight == ProfileInfoT<FType, BType>::MissingValue) { EdgeWeight = 0; }
200 double ProfileVerifierPassT<FType, BType>::ReadOrAssert(typename ProfileInfoT<FType, BType>::Edge E) {
202 if (EdgeWeight == ProfileInfoT<FType, BType>::MissingValue) {
204 << ProfileInfoT<FType, BType>::getFunction(E)->getNameStr() << ": ";
210 << ProfileInfoT<FType, BType>::getFunction(E)->getNameStr() << ": ";
267 if (w != ProfileInfoT<FType, BType>::MissingValue) {
280 CheckValue(DI.BBWeight == ProfileInfoT<FType, BType>::MissingValue,
349 PI = getAnalysisIfAvailable<ProfileInfoT<FType, BType> >();