Lines Matching refs:Stats

986     PerFunctionStats &Stats = Entry.getValue();  in collectStatsForObjectFile()  local
987 uint64_t TotalVars = Stats.VarsInFunction.size() * in collectStatsForObjectFile()
988 (Stats.NumFnInlined + Stats.NumFnOutOfLine); in collectStatsForObjectFile()
990 if (!Stats.IsFunction) in collectStatsForObjectFile()
992 Stats.NumLocalVars + Stats.ConstantMembers + Stats.NumArtificial; in collectStatsForObjectFile()
993 uint64_t Constants = Stats.ConstantMembers; in collectStatsForObjectFile()
994 VarParamWithLoc += Stats.TotalVarWithLoc + Constants; in collectStatsForObjectFile()
996 VarParamUnique += Stats.VarsInFunction.size(); in collectStatsForObjectFile()
998 : Stats.VarsInFunction) llvm::dbgs() in collectStatsForObjectFile()
1000 NumFunctions += Stats.IsFunction; in collectStatsForObjectFile()
1001 NumFuncsWithSrcLoc += Stats.HasSourceLocation; in collectStatsForObjectFile()
1002 NumInlinedFunctions += Stats.IsFunction * Stats.NumFnInlined; in collectStatsForObjectFile()
1003 NumAbstractOrigins += Stats.IsFunction * Stats.NumAbstractOrigins; in collectStatsForObjectFile()
1004 ParamTotal += Stats.NumParams; in collectStatsForObjectFile()
1005 ParamWithType += Stats.NumParamTypes; in collectStatsForObjectFile()
1006 ParamWithLoc += Stats.NumParamLocations; in collectStatsForObjectFile()
1007 ParamWithSrcLoc += Stats.NumParamSourceLocations; in collectStatsForObjectFile()
1008 LocalVarTotal += Stats.NumLocalVars; in collectStatsForObjectFile()
1009 LocalVarWithType += Stats.NumLocalVarTypes; in collectStatsForObjectFile()
1010 LocalVarWithLoc += Stats.NumLocalVarLocations; in collectStatsForObjectFile()
1011 LocalVarWithSrcLoc += Stats.NumLocalVarSourceLocations; in collectStatsForObjectFile()