Lines Matching defs:FF
158 FunctionFeatures FF;
160 FF.InstructionHistogram.resize(InstrCount);
162 FF.InstructionPairHistogram.resize(ImportantInstructionSuccessions.size());
179 ++FF.InstructionHistogram[ID];
182 ++FF.InstructionPairHistogram[PairIndex];
185 ++FF[NamedFeatureIndex::Calls];
189 FF[NamedFeatureIndex::InitialSize] = getSize(F, FAM);
190 FF[NamedFeatureIndex::IsLocal] = F.hasLocalLinkage();
191 FF[NamedFeatureIndex::IsLinkOnceODR] = F.hasLinkOnceODRLinkage();
192 FF[NamedFeatureIndex::IsLinkOnce] = F.hasLinkOnceLinkage();
193 FF[NamedFeatureIndex::Blocks] = F.size();
195 FF[NamedFeatureIndex::Loops] = std::distance(LI.begin(), LI.end());
197 FF[NamedFeatureIndex::MaxLoopDepth] =
198 std::max(FF[NamedFeatureIndex::MaxLoopDepth],
200 FF[NamedFeatureIndex::MaxDomTreeLevel] = getMaxDominatorTreeDepth(F, DomTree);
201 return FF;