Lines Matching refs:Stats

770     PerFunctionStats &Stats = Entry.getValue();  in collectStatsForObjectFile()  local
771 unsigned TotalVars = Stats.VarsInFunction.size() * in collectStatsForObjectFile()
772 (Stats.NumFnInlined + Stats.NumFnOutOfLine); in collectStatsForObjectFile()
774 if (!Stats.IsFunction) in collectStatsForObjectFile()
776 Stats.NumLocalVars + Stats.ConstantMembers + Stats.NumArtificial; in collectStatsForObjectFile()
777 unsigned Constants = Stats.ConstantMembers; in collectStatsForObjectFile()
778 VarParamWithLoc += Stats.TotalVarWithLoc + Constants; in collectStatsForObjectFile()
780 VarParamUnique += Stats.VarsInFunction.size(); in collectStatsForObjectFile()
782 : Stats.VarsInFunction) llvm::dbgs() in collectStatsForObjectFile()
784 NumFunctions += Stats.IsFunction; in collectStatsForObjectFile()
785 NumFuncsWithSrcLoc += Stats.HasSourceLocation; in collectStatsForObjectFile()
786 NumInlinedFunctions += Stats.IsFunction * Stats.NumFnInlined; in collectStatsForObjectFile()
787 NumAbstractOrigins += Stats.IsFunction * Stats.NumAbstractOrigins; in collectStatsForObjectFile()
788 ParamTotal += Stats.NumParams; in collectStatsForObjectFile()
789 ParamWithType += Stats.NumParamTypes; in collectStatsForObjectFile()
790 ParamWithLoc += Stats.NumParamLocations; in collectStatsForObjectFile()
791 ParamWithSrcLoc += Stats.NumParamSourceLocations; in collectStatsForObjectFile()
792 LocalVarTotal += Stats.NumLocalVars; in collectStatsForObjectFile()
793 LocalVarWithType += Stats.NumLocalVarTypes; in collectStatsForObjectFile()
794 LocalVarWithLoc += Stats.NumLocalVarLocations; in collectStatsForObjectFile()
795 LocalVarWithSrcLoc += Stats.NumLocalVarSourceLocations; in collectStatsForObjectFile()