Lines Matching refs:Stats
915 PerFunctionStats &Stats = Entry.getValue(); in collectStatsForObjectFile() local
916 uint64_t TotalVars = Stats.VarsInFunction.size() * in collectStatsForObjectFile()
917 (Stats.NumFnInlined + Stats.NumFnOutOfLine); in collectStatsForObjectFile()
919 if (!Stats.IsFunction) in collectStatsForObjectFile()
921 Stats.NumLocalVars + Stats.ConstantMembers + Stats.NumArtificial; in collectStatsForObjectFile()
922 uint64_t Constants = Stats.ConstantMembers; in collectStatsForObjectFile()
923 VarParamWithLoc += Stats.TotalVarWithLoc + Constants; in collectStatsForObjectFile()
925 VarParamUnique += Stats.VarsInFunction.size(); in collectStatsForObjectFile()
927 : Stats.VarsInFunction) llvm::dbgs() in collectStatsForObjectFile()
929 NumFunctions += Stats.IsFunction; in collectStatsForObjectFile()
930 NumFuncsWithSrcLoc += Stats.HasSourceLocation; in collectStatsForObjectFile()
931 NumInlinedFunctions += Stats.IsFunction * Stats.NumFnInlined; in collectStatsForObjectFile()
932 NumAbstractOrigins += Stats.IsFunction * Stats.NumAbstractOrigins; in collectStatsForObjectFile()
933 ParamTotal += Stats.NumParams; in collectStatsForObjectFile()
934 ParamWithType += Stats.NumParamTypes; in collectStatsForObjectFile()
935 ParamWithLoc += Stats.NumParamLocations; in collectStatsForObjectFile()
936 ParamWithSrcLoc += Stats.NumParamSourceLocations; in collectStatsForObjectFile()
937 LocalVarTotal += Stats.NumLocalVars; in collectStatsForObjectFile()
938 LocalVarWithType += Stats.NumLocalVarTypes; in collectStatsForObjectFile()
939 LocalVarWithLoc += Stats.NumLocalVarLocations; in collectStatsForObjectFile()
940 LocalVarWithSrcLoc += Stats.NumLocalVarSourceLocations; in collectStatsForObjectFile()