Lines Matching refs:FF
159 FunctionFeatures FF; in getFunctionFeatures() local
161 FF.InstructionHistogram.resize(InstrCount); in getFunctionFeatures()
163 FF.InstructionPairHistogram.resize(ImportantInstructionSuccessions.size()); in getFunctionFeatures()
180 ++FF.InstructionHistogram[ID]; in getFunctionFeatures()
183 ++FF.InstructionPairHistogram[PairIndex]; in getFunctionFeatures()
186 ++FF[NamedFeatureIndex::Calls]; in getFunctionFeatures()
190 FF[NamedFeatureIndex::InitialSize] = getSize(F, FAM); in getFunctionFeatures()
191 FF[NamedFeatureIndex::IsLocal] = F.hasLocalLinkage(); in getFunctionFeatures()
192 FF[NamedFeatureIndex::IsLinkOnceODR] = F.hasLinkOnceODRLinkage(); in getFunctionFeatures()
193 FF[NamedFeatureIndex::IsLinkOnce] = F.hasLinkOnceLinkage(); in getFunctionFeatures()
194 FF[NamedFeatureIndex::Blocks] = F.size(); in getFunctionFeatures()
196 FF[NamedFeatureIndex::Loops] = std::distance(LI.begin(), LI.end()); in getFunctionFeatures()
198 FF[NamedFeatureIndex::MaxLoopDepth] = in getFunctionFeatures()
199 std::max(FF[NamedFeatureIndex::MaxLoopDepth], in getFunctionFeatures()
201 FF[NamedFeatureIndex::MaxDomTreeLevel] = getMaxDominatorTreeDepth(F, DomTree); in getFunctionFeatures()
202 return FF; in getFunctionFeatures()